Re: [PHP-DEV] Object method as handler functions in PHP4/Zend From: Chuck Hagenbuch (chagenbu <email protected>)
Date: 06/30/99

Quoting Zeev Suraski <zeev <email protected>>:

> If you know you're expecting an object context, make your function accept
> $obj and $method, and inside the function, call $method() if $obj is empty,
> or $obj->$method() if it isn't.

Would it be possible to add an optional argument specifying an object
reference to all of the functions that take a function name as a parameter
(array_walk, usort, etc).

This would allow you to write:

mysort($a, $b, $obj) {}

and call:

$foo = usort($bar, 'mysort', $foo_object);

This at least lets you avoid setting global variables for mysort() to access
before calling usort.

-chuck

--
Charles Hagenbuch, <chagenbu <email protected>>
--
must... find... acorns... *thud*

-- PHP Development Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>