Re: result of a function inner one other
- From: Jerry Stuckle <jstucklex@xxxxxxxxxxxxx>
- Date: Fri, 14 Nov 2008 13:25:42 -0500
nawfer wrote:
if have a dir with:
Folder_a/subfolder_a/a.php
Folder_b/b.php
and one file a.php with one function that return some arguments
function A() {
$arr1 = array();
....
return $arr1;
}
how can inner file b.php to write a B function that recall function A
and return always the same arguments?
function B() {
recall here function A
}
Do you always have the same number of arguments? If so, it's pretty easy -
function B($arg1, $arg2) {
A($arg1, $arg2);
}
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@xxxxxxxxxxxxx
==================
.
- References:
- result of a function inner one other
- From: nawfer
- result of a function inner one other
- Prev by Date: Re: result of a function inner one other
- Next by Date: Re: How to manage date fields in template
- Previous by thread: Re: result of a function inner one other
- Index(es):