Classes/Object Funzioni
PHP Manual

call_user_method

(PHP 4, PHP 5)

call_user_methodChiama un metodo dell'oggetto indicato [deprecata]

Descrizione

mixed call_user_method ( string $method_name , object &$obj [, mixed $parameter [, mixed $... ]] )
Avviso

La funzione call_user_method() รจ deprecata da PHP 4.1.0.

Elenco dei parametri

method_name

Il nome del metodo da chiamare.

obj

L'object sul quale chiamare method_name.

parameter ...

I parametri opzionali.

Esempi

Example #1 Alternativa a call_user_method()

<?php
call_user_func
(array($obj$method_name), $parameter /* , ... */);
call_user_func(array(&$obj$method_name), $parameter /* , ... */); // PHP 4
?>

Vedere anche:


Classes/Object Funzioni
PHP Manual