Posted by Bloke Smith on 10/19/05 21:46
I have written a class (and it works!).
Now I want to tidy the code a bit by separating some subroutines and I
get a "Fatal error: Call to undefined function:"
e.g.
class Fred{
function Fred(){
//constructor
do_this();
}
function do_this(){ blah blah }
}
Please can someone tell what I'm doing wrong? If I use
function_exists(do_this) it returns false.
I've tried putting the function as the first block in the class.
I've tried calling it as a method e.g. $this->do_this();
PHP 4.3.9 on IIS (localhost)
Thanks in advance
Pete
Navigation:
[Reply to this message]
|