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
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"