Posted by Michael Fesser on 02/06/07 13:40
..oO(SirDarckCat)
>I have made a PHP class for making bots and webmessengers with PHP.
>[...]
Just some short notes after having a quick look at the beginning of the
class:
* You don't have to use your own urlencode() function, rawurlencode()
exists.
* The Event() method is really ugly because of the fixed-length argument
list and the use of eval(). It can be written shorter and more elegantly
by using func_get_args() and call_user_func_array().
Micha
[Back to original message]
|