Posted by Bloke Smith on 10/20/05 11:18
On Wed, 19 Oct 2005 18:23:36 -0500, Jerry Stuckle
<jstucklex@attglobal.net> wrote:
>Bloke Smith wrote:
>> 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
>
> $this->do_this();
Dang! I coulda sworn I tried that yesterday and it didn't work. I must
have had two errors.
Thanks a lot.
Navigation:
[Reply to this message]
|