Home
last modified time | relevance | path

Searched refs:unset (Results 1 – 25 of 1281) sorted by relevance

12345678910>>...52

/PHP-7.1/ext/mbstring/tests/
H A Dbug26639.phpt12 unset($a);
13 unset($b);
20 unset($a);
21 unset($b);
29 unset($a);
30 unset($b);
31 unset($c);
39 unset($a);
40 unset($b);
41 unset($c);
[all …]
/PHP-7.1/Zend/tests/
H A Dgc_017.phpt2 GC 017: GC and destructors with unset
21 unset($this->name);
22 unset($this->children);
23 unset($this->parent);
31 unset($a);
32 unset($b);
33 unset($c);
H A Disset_001.phpt2 Testing isset and unset with variable variables
20 print "- unset ---\n";
22 unset($$var_name);
24 unset($$$test);
31 - unset ---
H A Dbug70805_1.phpt16 unset($GLOBALS["array"]);
17 unset($GLOBALS["a"]);
30 unset($c);
35 unset($t);
39 unset($t);
40 unset($a);
H A Dbug55135.phpt2 Bug #55135 (Array keys are no longer type casted in unset())
8 unset($array[$a]);
14 unset($array[$a]);
18 unset($array[1]);
23 unset($array["1"]);
H A Dbug33512.phpt2 Bug #33512 (unset() overloaded properties doesn't work)
17 unset($this->Var[$var]);
45 unset($SomeObj->RealVar1);
46 unset($SomeObj->{'RealVar'.(3)});
52 // now we will try to unset these variables
53 unset($SomeObj->Virtual1);
54 unset($SomeObj->{'Virtual'.(3)});
56 //but, these variables are still available??? even though they're "unset"-ed
H A Dbug68370.phpt2 Bug #68370 "unset($this)" can make the program crash
7 unset($this);
14 unset($c, $x);
16 Fatal error: Cannot unset $this in %sbug68370.php on line 4
H A Dbug74084.phpt8 unset($$A);
10 unset($$A);
12 unset($$A);
14 unset($$A);
H A Dgc_028.phpt11 unset($this->bar);
19 unset($this->foo);
28 unset($foo);
29 unset($bar);
H A Dthis_in_unset.phpt2 $this in unset
5 unset($this);
8 Fatal error: Cannot unset $this in %sthis_in_unset.php on line 2
H A Dbug62653.phpt2 Bug #62653: unset($array[$float]) causes a crash
8 unset($array[$foo]);
13 unset($array[(float)$foo]);
20 unset($array[$$name]);
H A Dbug70805_2.phpt16 unset($GLOBALS["a"]);
30 unset($t);
34 unset($t);
36 unset($a);
H A Dbug70805.phpt14 unset($GLOBALS["array"]);
15 unset($GLOBALS["a"]); // this will be called in gc_colloct_roots and put $a into gc roots buf
28 unset($c);
33 unset($t);
37 unset($t); // This is used to trigger C::__destruct while doing gc_colloct_roots
40 unset($a); // This one can not be putted into roots buf because it's full, thus gc_colloct_roots wi…
H A Dunset_cv12.phpt2 unset() CV 12 (unset() in indirect called function)
6 function foo() {unset($GLOBALS["x"]);}
H A D019.phpt62 unset( $scalar_var );
77 unset($set_var);
141 unset($array_var);
176 unset($resource);
183 unset($temp_var);
192 unset($resources);
237 unset($point1->x);
244 unset($point1->y);
252 unset($point1);
318 unset($ref_val);
[all …]
/PHP-7.1/ext/standard/tests/streams/
H A Dstream_socket_recvfrom.phpt24 unset($serverUri);
25 unset($clientFlags);
26 unset($sock);
27 unset($sockLen);
28 unset($errno);
29 unset($errstr);
/PHP-7.1/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result_references.phpt22 unset($id); unset($label);
35 unset($id); unset($id_ref); unset($label); unset($label_ref);
53unset($id); unset($id_ref); unset($id_ref_ref); unset($label); unset($label_ref); unset($label_ref…
74 unset($id); unset($id_ref); unset($label); unset($label_ref);
104 unset($obj);
120 unset($id); unset($label); unset($obj);
137 unset($id); unset($label); unset($obj);
159 unset($id); unset($label); unset($id_ref); unset($label_ref);
179 unset($id); unset($label_a); unset($label_b);
194 unset($bar); unset($id); unset($label_ref);
[all …]
/PHP-7.1/ext/sockets/tests/
H A Dsocket_send_win32.phpt34 unset($port);
35 unset($host);
36 unset($stringSocket);
37 unset($stringSocketLenght);
38 unset($socket);
39 unset($socketConn);
H A Dsocket_send.phpt43 unset($port);
44 unset($host);
45 unset($stringSocket);
46 unset($stringSocketLenght);
47 unset($socket);
48 unset($socketConn);
/PHP-7.1/ext/standard/tests/array/
H A Darray_intersect_key_variation7.phpt2 Test array_intersect_key() function : usage variation - Passing null,unset and undefeined variable …
14 //get an unset variable
16 unset ($unset_var);
21 'unset indexed' => array(@$unset_var => 'unset'),
54 --unset indexed--
61 string(5) "unset"
H A Darray_diff_ukey_variation9.phpt2 Test array_diff_ukey() function : usage variation - Passing null,unset and undefined variable index…
15 //get an unset variable
17 unset ($unset_var);
22 'unset indexed' => array(@$unset_var => 'unset'),
52 --unset indexed--
H A Darray_diff_key_variation7.phpt2 Test array_diff_key() function : usage variation - Passing null,unset and undefined variable indexe…
15 //get an unset variable
17 unset ($unset_var);
22 'unset indexed' => array(@$unset_var => 'unset'),
52 --unset indexed--
/PHP-7.1/ext/spl/tests/
H A Dbug61418.phpt10 unset($regexpIterator);
11 unset($fileIterator);
18 unset($regexpIterator2);
19 unset($dirIterator);
H A Diterator_027.phpt35 unset($it[0]);
36 unset($it[2]);
37 unset($it['baz']);
39 var_dump(isset($it[0])); // unset
41 var_dump(isset($it[2])); // unset
50 var_dump(isset($it[2])); // unset
/PHP-7.1/tests/lang/
H A DforeachLoop.016.phpt13 unset($a, $b);
21 unset($a, $b);
31 unset($a, $b);
39 unset($a, $b);
47 unset($a, $b);
55 unset($a, $b);
63 unset($a, $b);
71 unset($a, $b);
79 unset($a, $b);
87 unset($a, $b);
[all …]

Completed in 58 milliseconds

12345678910>>...52