On Mon, July 11, 2005 4:05 pm, Matt Babineau said:
> Ok so I set a variable at the top of my class definition
>
> var $tmp;
> < bunch of functions>
>
> Function $func1() {
You don't really have a $ before the function name, right?...
>
> $n = $this->result_from_another_function($var1
Ok so I set a variable at the top of my class definition
var $tmp;
< bunch of functions>
Function $func1() {
$n = $this->result_from_another_function($var1, $var2, $var3); //
this function returns an ARRAY
//print_r($n);
$this->tmp = $n;
}
When I try to set $thi
2 matches
Mail list logo