php-general | 2001122
Date: 12/22/01
- Next message: Sam: "[PHP] Help with select boxes"
- Previous message: Papp Gyozo: "Re: [PHP] PostgreSQL query taking a long time"
- In reply to: Papp Gyozo: "Re: [PHP] array_walk() + class methods"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Much obliged, that did the trick.
On Fri, 21 Dec 2001 05:48:31 -0500, Papp Gyozo wrote:
> array_walk($ar, array(&$object, 'methodname'));
>
> ----- Original Message -----
> From: "Jeff Levy" <php4 <email protected>> To: <php-general <email protected>>
> Sent: Thursday, December 13, 2001 1:17 PM Subject: [PHP] array_walk() +
> class methods
>
>
> | I'd like to call a class method with array_walk(). Is this possible? |
> | class widget {
> | function sicballs($arg){
> | print $arg;
> | }
> | }
> |
> | $x = new widget();
> |
> | $ar = array('my','values');
> |
> | array_walk($ar, ???)
> |
> | ...
> |
> | the only way I've been able to get this (simplified) code to work the
> way | I want it is:
> |
> | function snafu($arg) {
> | global $x;
> | call_user_method("sicballs", $x, $arg); | } |
> | obviously, I want to call the method direcly, without writing this |
> function, snafu()...
> |
> | anyone know?
> |
> | --
> | PHP General Mailing List (http://www.php.net/) | To unsubscribe,
> e-mail: php-general-unsubscribe <email protected> | For additional commands,
> e-mail: php-general-help <email protected> | To contact the list
> administrators, e-mail: php-list-admin <email protected> |
>
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Sam: "[PHP] Help with select boxes"
- Previous message: Papp Gyozo: "Re: [PHP] PostgreSQL query taking a long time"
- In reply to: Papp Gyozo: "Re: [PHP] array_walk() + class methods"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

