Just to add that if i call a method of an external class method it works
fine

sqlite_create_function(
$this->db ,
 'link_keywords' ,
 array($external_class,
 'linkers') ,
 1 );

just methods of $this ?


"Simon Wheeler" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi , trying to call a class method like so
>    sqlite_create_function( $this->db ,  'link_keywords' ,  array($this ,
> 'linkers') ,  1 ) ;   /*(tried &$this as well)*/
>
> kills apache (MS kills it b4 apache gets to write an error)
>
> the same call to a normal function is fine
>    sqlite_create_function( $this->db ,  'link_keywords' ,   'linkers' ,
 1 )
> ;
>
> is this a bug or am I just calling it incorrectly ?
>
> Regards,
> Simon Wheeler

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to