mirror of
https://github.com/php/php-src.git
synced 2024-12-04 15:23:44 +08:00
13 lines
332 B
Plaintext
13 lines
332 B
Plaintext
|
--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
|