php-src/ext/mysqli/tests/mysqli_driver_unclonable.phpt
Ulf Wendel 613947afc6 Tests which verify that you really cannot clone any of the mysqli
objects. Technically it might be possible to tweak ext/mysqli and make
the objects cloneable - tough, we haven't checked in depth.

So, if one is interested, raise a discussion.
2007-07-23 12:34:09 +00:00

13 lines
332 B
PHP

--TEST--
Trying to clone mysqli_driver object
--SKIPIF--
<?php require_once('skipif.inc'); ?>
<?php require_once('skipifemb.inc'); ?>
--FILE--
<?php
$driver = new mysqli_driver;
$driver_clone = clone $driver;
print "done!";
?>
--EXPECTF--
Fatal error: Trying to clone an uncloneable object of class mysqli_driver in %s on line %d