mirror of
https://github.com/php/php-src.git
synced 2024-12-24 09:18:17 +08:00
18 lines
273 B
Plaintext
18 lines
273 B
Plaintext
|
--TEST--
|
||
|
errmsg: cannot call __clone() method on objects
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
class test {
|
||
|
function __clone() {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$t = new test;
|
||
|
$t->__clone();
|
||
|
|
||
|
echo "Done\n";
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: Cannot call __clone() method on objects - use 'clone $obj' instead in %s on line %d
|