Home
last modified time | relevance | path

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

12345678910>>...35

/PHP-8.3/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-8.3/Zend/tests/
H A Dunset_non_array.phpt6 unset($x[0]);
9 unset($x[0]);
12 unset($x[0]);
16 unset($x[0]);
23 unset($x[0]);
30 unset($x[0]);
37 unset($x[0]);
50 unset($x);
52 unset($x[0][0]);
55 unset($x[0][0]);
[all …]
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.phpt18 unset($GLOBALS["array"]);
19 unset($GLOBALS["a"]);
32 unset($c);
37 unset($t);
41 unset($t);
42 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 Dgh11244-005.phpt12 echo "unset $value\n";
13 unset($cow_copy[0][$key]);
14 unset($data[$key]);
15 unset($cow_copy[2][$key]);
25 unset 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 Dgc_038.phpt12 } catch (TypeError $e) { unset($x); }
23 } catch (TypeError $e) { unset($x); }
34 } catch (TypeError $e) { unset($x); }
45 } catch (TypeError $e) { unset($x); }
56 } catch (TypeError $e) { unset($x); }
67 } catch (TypeError $e) { unset($x); }
78 } catch (TypeError $e) { unset($x); }
89 } catch (TypeError $e) { unset($x); }
100 } catch (TypeError $e) { unset($x); }
111 } catch (TypeError $e) { unset($x); }
[all …]
H A Dbug68370.phpt2 Bug #68370 "unset($this)" can make the program crash
7 unset($this);
14 unset($c, $x);
17 Fatal error: Cannot unset $this in %sbug68370.php on line 4
H A Dgh11244-003.phpt7 unset($data[1]);
13 echo "unset $value\n";
14 unset($data[$key]);
22 unset 1
H A Dgc_028.phpt11 unset($this->bar);
19 unset($this->foo);
28 unset($foo);
29 unset($bar);
/PHP-8.3/ext/standard/tests/general_functions/
H A Darray_is_list.phpt36 unset($arr[0]);
40 unset($arr[1]);
44 unset($arr[2]);
48 unset($arr["a"]);
52 unset($arr[1]);
56 unset($arr["a"]);
90 unset first: false
91 unset middle: false
92 unset end: true
93 unset string key: true
[all …]
/PHP-8.3/Zend/tests/enum/
H A Dno-unset-propertes.phpt2 Enum properties cannot be unset
16 unset($foo->name);
23 unset($intFoo->name);
28 unset($intFoo->value);
35 Cannot unset readonly property Foo::$name
36 Cannot unset readonly property IntFoo::$name
37 Cannot unset readonly property IntFoo::$value
/PHP-8.3/Zend/tests/readonly_props/
H A Dunset.phpt16 unset($test->prop);
25 unset($this->prop); // Unset uninitialized.
26 unset($this->prop); // Unset unset.
41 unset($test->prop); // Unset initialized, illegal.
52 unset($test->prop);
59 Cannot unset readonly property Test::$prop
63 Cannot unset readonly property Test2::$prop
64 Cannot unset readonly property Test3::$prop from global scope
/PHP-8.3/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-8.3/Zend/tests/weakrefs/
H A Dweakmap_weakness.phpt16 unset($obj);
27 echo "Before unset:\n";
28 unset($obj);
29 echo "After unset:\n";
35 unset($map);
43 unset($obj);
52 unset($obj);
54 unset($map);
60 unset($map);
80 Before unset:
[all …]
/PHP-8.3/ext/standard/tests/array/
H A Darray_intersect_key_variation7.phpt2 Test array_intersect_key() function : usage variation - Passing null,unset and undefeined variable …
9 //get an unset variable
11 unset ($unset_var);
16 'unset indexed' => array(@$unset_var => 'unset'),
48 --unset indexed--
55 string(5) "unset"
H A Darray_diff_ukey_variation9.phpt2 Test array_diff_ukey() function : usage variation - Passing null,unset and undefined variable index…
10 //get an unset variable
12 unset ($unset_var);
17 'unset indexed' => array(@$unset_var => 'unset'),
46 --unset indexed--
H A Darray_diff_key_variation7.phpt2 Test array_diff_key() function : usage variation - Passing null,unset and undefined variable indexe…
10 //get an unset variable
12 unset ($unset_var);
17 'unset indexed' => array(@$unset_var => 'unset'),
46 --unset indexed--
/PHP-8.3/Zend/tests/in-de-crement/
H A Dunset_globals_in_error_handler.phpt13 unset($x);
17 unset($x);
22 unset($x);
26 unset($x);
30 unset($x);
34 unset($x);
39 unset($x);
43 unset($x);
48 unset($x);
52 unset($x);
[all …]
H A Dunset_object_property_in_error_handler.phpt24 unset($c->a);
28 unset($c->a);
33 unset($c->a);
37 unset($c->a);
41 unset($c->a);
45 unset($c->a);
50 unset($c->a);
54 unset($c->a);
59 unset($c->a);
63 unset($c->a);
[all …]
/PHP-8.3/ext/ffi/tests/
H A Dweak_reference_004.phpt26 unset($ffi);
27 unset($cdata_value);
28 unset($cdata_array);
29 unset($cdata_free);
30 unset($ctype);
/PHP-8.3/ext/sockets/tests/
H A Dsocket_send.phpt40 unset($port);
41 unset($host);
42 unset($stringSocket);
43 unset($stringSocketLength);
44 unset($socket);
45 unset($socketConn);
/PHP-8.3/ext/spl/tests/
H A Dbug61418.phpt10 unset($regexpIterator);
11 unset($fileIterator);
18 unset($regexpIterator2);
19 unset($dirIterator);

Completed in 23 milliseconds

12345678910>>...35