Home
last modified time | relevance | path

Searched refs:clone (Results 26 – 50 of 96) sorted by relevance

1234

/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_result_unclonable.phpt2 Trying to clone mysqli_result object
20 $res_clone = clone $res;
24 Fatal error: Trying to clone an uncloneable object of class mysqli_result in %s on line %d
H A Dmysqli_stmt_unclonable.phpt2 Trying to clone mysqli_stmt object
21 $stmt_clone = clone $stmt;
25 Fatal error: Trying to clone an uncloneable object of class mysqli_stmt in %s on line %d
H A Dmysqli_warning_unclonable.phpt2 Trying to clone mysqli_warning object
33 $warning_clone = clone $warning;
41 Fatal error: Trying to clone an uncloneable object of class mysqli_warning in %s on line %d
/PHP-5.3/ext/intl/tests/
H A Dmsgfmt_clone.phpt17 $fmt_clone = clone $fmt;
22 $res_str .= "Formatting clone result: " . ut_msgfmt_format( $fmt_clone, array(123, 456) ) . "\n";
30 Formatting clone result: 123 monkeys on 456 trees
H A Ddateformat_clone.phpt20 $fmt_clone = clone $fmt;
26 $res_str .= "\nResult of clone formatting timestamp=0 is : \n$formatted";
36 Result of clone formatting timestamp=0 is :
H A Ddateformat_clone2.phpt20 $fmt_clone = clone $fmt;
26 $res_str .= "\nResult of clone formatting timestamp=0 is : \n$formatted";
36 Result of clone formatting timestamp=0 is :
H A Dformatter_clone_bad_obj.phpt14 $b = clone $a;
20 string(42) "Cannot clone unconstructed NumberFormatter"
H A Ddateformat_clone_bad_obj.phpt14 $b = clone $a;
20 string(%s) "Cannot clone unconstructed IntlDateFormatter"
H A Dmsgfmt_clone_bad_obj.phpt14 $b = clone $a;
20 string(%d) "Cannot clone unconstructed MessageFormatter"
/PHP-5.3/Zend/tests/
H A Dbug42818.phpt2 Bug #42818 ($foo = clone(array()); leaks memory)
5 $foo = clone(array());
H A Dclone_001.phpt2 Using clone statement on non-object
6 $a = clone array();
H A Dbug37707.phpt2 Bug #37707 (clone without assigning leaks memory)
10 clone new testme();
H A Dbug36071.phpt2 Bug #36071 (Engine Crash related with 'clone')
7 $a = clone 0;
H A Dclone_003.phpt2 Using clone statement on undefined variable
6 $a = clone $b;
H A Dbug42817.phpt2 Bug #42817 (clone() on a non-object does not result in a fatal error)
5 $a = clone(null);
H A Dclone_004.phpt2 Testing usage of object as array on clone statement
16 $a = clone $c->b[1];
/PHP-5.3/ext/dom/tests/
H A Dbug46849.phpt2 Bug #46849 (Cloning DOMDocument doesn't clone the properties).
11 $dom2 = clone $dom;
/PHP-5.3/tests/classes/
H A Dclone_003.phpt24 $this->p5 = 'clone:5';
30 $copy = clone $obj;
54 [p5] => clone:5
H A Dfactory_and_singleton_007.phpt14 $clone = clone $obj;
H A Dfactory_and_singleton_008.phpt14 $clone = clone $obj;
/PHP-5.3/ext/date/tests/
H A Dbug48476.phpt14 $x = clone $o;
18 clone $o;
21 var_dump(timezone_location_get(clone new MyDateTimezone));
H A Doo_002.phpt10 $c = clone $d;
18 $c = clone $t;
/PHP-5.3/ext/reflection/tests/
H A DReflectionClass_CannotClone_basic.phpt13 $rc2 = clone($rc);
15 Fatal error: Trying to clone an uncloneable object of class ReflectionClass in %s on line %d
/PHP-5.3/ext/com_dotnet/
H A Dcom_persist.c728 clone = emalloc(sizeof(*object)); in helper_clone()
729 memcpy(clone, object, sizeof(*object)); in helper_clone()
730 *clone_ptr = clone; in helper_clone()
734 if (clone->ipf) { in helper_clone()
735 IPersistFile_AddRef(clone->ipf); in helper_clone()
737 if (clone->ips) { in helper_clone()
738 IPersistStream_AddRef(clone->ips); in helper_clone()
740 if (clone->ipsi) { in helper_clone()
741 IPersistStreamInit_AddRef(clone->ipsi); in helper_clone()
743 if (clone->unk) { in helper_clone()
[all …]
/PHP-5.3/ext/simplexml/tests/
H A Dbug39760.phpt19 $test2 = clone $test;
22 $test3 = clone $test->level1->level2a;

Completed in 32 milliseconds

1234