Voting

: max(three, three)?
(Example: nine)

The Note You're Voting On

dante at lorenso dot com
19 years ago
To register a callback to a 'static' function within the same class, consider a syntax like the following:
<code>
$callback = array (__CLASS__, "my_function_name");
xmlrpc_server_register_method($xmlrpc_server, "my_function", $callback);
</code>
Doing it this way makes it easier to rename your class later.

<< Back to user notes page

To Top