[PHP-DEV] PHP5 MySQL Win32

2004-01-09 Thread Fabrice Le Coz
Hi folks, I 've install the last php Snapshot (php5-win32-200401081930) and have some problem to load the php_mysql.dll extension. when I start Apache, I have the following message : PHP Startup : Unable to load dynamic library 'c://php_mysql.dll' - La procédure spécifiée est introuvable

[PHP-DEV] Pb __clone method crash

2003-03-20 Thread Fabrice Le Coz
Hi, return of the __clone() method crash. name = $name; } function __clone() { echo "cloning ...\n"; $this->name = "test ".$that->name; } } $test = new test("essai"); $test1 = $test; $test2 = $test->__clone(); $test1->name = "arthur"; echo "test : $test->name\n"