Home
last modified time | relevance | path

Searched refs:null (Results 151 – 175 of 1803) sorted by relevance

12345678910>>...73

/PHP-8.0/ext/spl/tests/
H A Dobserver_010.phpt2 SPL: SplObjectStorage null coalescing operator memory leak
10 var_dump($map[$b] ?? null);
11 var_dump($map[$a] ?? null);
H A Dbug53515.phpt2 Bug #53515 (property_exists incorrect on ArrayObject null and 0 values)
6 $a = array('a' => 1, 'b'=> true, 'c' => 0, 'd' => null, 'e' => false, 'f' => array());
13 echo $key . ': ' . (is_null($value) ? 'null' : @"$value") .
23 d: null array_key_exists: true property_exists: true
/PHP-8.0/ext/pdo_sqlite/tests/
H A Dbug_64705.phpt2 Bug #64705 errorInfo property of PDOException is null when PDO::__construct() fails
11 $pdo = new \PDO($dsn, null, null);
/PHP-8.0/ext/date/tests/
H A Dbug52063.phpt2 Bug #52063 (DateTime constructor's second argument doesn't have a null default value)
6 $a = new DateTime("2009-01-01", null);
9 $a = date_create("2009-01-01", null);
/PHP-8.0/Zend/tests/match/
H A D042.phpt7 null => 'null',
19 string(4) "null"
/PHP-8.0/Zend/tests/return_types/
H A Drfc003.phpt2 RFC example: cannot return null with a return type declaration
6 return null;
12 Fatal error: Uncaught TypeError: foo(): Return value must be of type DateTime, null returned in %s:…
H A D010.phpt2 Returned null, expected array reference
6 return null;
13 Fatal error: Uncaught TypeError: foo(): Return value must be of type array, null returned in %s:%d
/PHP-8.0/Zend/tests/
H A Dbug71428.1.phpt2 bug #71428.1: inheritance with null default values
6 public function m(array $a = null) {}
13 Fatal error: Declaration of B::m(array $a = []) must be compatible with A::m(?array $a = null) in %…
H A Dbug70681.phpt2 Bug #70681: Segfault when binding $this of internal instance method to null
7 $c = $c->bindTo(null);
10 $c = $c->bindTo(null);
/PHP-8.0/ext/standard/tests/array/
H A Darray_merge_variation4.phpt47 // null data
48 /*4*/ 'null uppercase' => array(
49 NULL => 'null 1',
52 /*5*/ 'null lowercase' => array(
53 null => 'null 2',
186 -- Iteration 4: null uppercase data --
189 string(6) "null 1"
201 string(6) "null 1"
204 -- Iteration 5: null lowercase data --
207 string(6) "null 2"
[all …]
H A Darray_slice_variation7.phpt48 // null data
49 /*4*/ 'null uppercase' => array(
50 NULL => 'null 1',
53 /*5*/ 'null lowercase' => array(
54 null => 'null 2',
171 -- Iteration 4 : key type is null uppercase --
175 string(6) "null 1"
180 string(6) "null 1"
183 -- Iteration 5 : key type is null lowercase --
187 string(6) "null 2"
[all …]
H A Darray_push_variation6.phpt46 // null data
47 /*3*/ 'null uppercase' => array(
48 NULL => 'null 1',
50 'null lowercase' => array(
51 null => 'null 2',
118 -- Iteration 4 : null uppercase data --
122 -- Iteration 5 : null lowercase data --
H A Dnatcasesort_variation11.phpt43 // null data
44 /*4*/ 'null uppercase' => array(
45 NULL => 'null 1',
48 /*5*/ 'null lowercase' => array(
49 null => 'null 2',
149 string(6) "null 1"
156 string(6) "null 2"
/PHP-8.0/ext/dom/
H A Dphp_dom.stub.php48 …$exclusive = false, bool $withComments = false, ?array $xpath = null, ?array $nsPrefixes = null) {}
51 …$exclusive = false, bool $withComments = false, ?array $xpath = null, ?array $nsPrefixes = null) {}
69 public function insertBefore(DOMNode $node, ?DOMNode $child = null) {}
112 …nction createDocument(?string $namespace = null, string $qualifiedName = "", ?DOMDocumentType $doc…
179 …public function __construct(string $qualifiedName, ?string $value = null, string $namespace = "") …
322 public function saveHTML(?DOMNode $node = null) {}
329 public function saveXML(?DOMNode $node = null, int $options = 0) {}
423 …public function evaluate(string $expression, ?DOMNode $contextNode = null, bool $registerNodeNS = …
426 …public function query(string $expression, ?DOMNode $contextNode = null, bool $registerNodeNS = tru…
432 public function registerPhpFunctions(string|array|null $restrict = null) {}
/PHP-8.0/build/
H A Dconfig.guess1201 if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
1220 elif /bin/uname -X 2>/dev/null >/dev/null ; then
1272 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1274 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1277 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1283 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
1285 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \
1287 /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \
1314 if uname -p 2>/dev/null >/dev/null ; then
1405 if command -v xcode-select > /dev/null 2> /dev/null && \
[all …]
/PHP-8.0/ext/pdo/tests/
H A Ddebug_emulated_prepares.phpt28 $stmt = $db->prepare('SELECT :bool, :int, :string, :null');
32 $stmt->bindValue(':null', null, PDO::PARAM_NULL);
43 SQL: [34] SELECT :bool, :int, :string, :null
61 Key: Name: [5] :null
63 name=[5] ":null"
/PHP-8.0/ext/sockets/tests/
H A Dsocket_create_pair-wrongparams-win32.phpt14 var_dump(socket_create_pair(AF_INET, null, null, $sockets));
17 var_dump(socket_create_pair(31337, null, null, $sockets));
/PHP-8.0/ext/standard/tests/general_functions/
H A Dproc_open_sockets1.phpt12 ['null'],
25 $w = null;
26 $e = null;
28 if (!stream_select($r, $w, $e, null, 0)) {
/PHP-8.0/sapi/cli/tests/
H A D006.phpt73 Parameter #2 [ <optional> &$matches = null ]
84 Parameter #2 [ <optional> &$matches = null ]
97 Parameter #4 [ <optional> &$count = null ]
99 - Return [ array|string|null ]
108 Parameter #4 [ <optional> &$count = null ]
110 - Return [ array|string|null ]
119 Parameter #4 [ <optional> &$count = null ]
122 - Return [ array|string|null ]
130 Parameter #3 [ <optional> &$count = null ]
133 - Return [ array|string|null ]
[all …]
/PHP-8.0/ext/standard/tests/file/
H A Dfiletype_variation2.phpt10 if (!file_exists("/dev/null")) {
11 die('skip /dev/null not available');
17 print( filetype("/dev/null") )."\n";
H A Ddisk_free_space_variation.phpt106 disk_free_space(): Argument #1 ($directory) must not contain any null bytes
107 diskfreespace(): Argument #1 ($directory) must not contain any null bytes
110 disk_free_space(): Argument #1 ($directory) must not contain any null bytes
111 diskfreespace(): Argument #1 ($directory) must not contain any null bytes
114 disk_free_space(): Argument #1 ($directory) must not contain any null bytes
115 diskfreespace(): Argument #1 ($directory) must not contain any null bytes
118 disk_free_space(): Argument #1 ($directory) must not contain any null bytes
119 diskfreespace(): Argument #1 ($directory) must not contain any null bytes
/PHP-8.0/ext/pdo_mysql/tests/
H A Dbug_64705.phpt2 Bug #64705 errorInfo property of PDOException is null when PDO::__construct() fails
11 $pdo = new \PDO($dsn, null, null);
/PHP-8.0/ext/pdo_pgsql/tests/
H A Dbug_64705.phpt2 Bug #64705 errorInfo property of PDOException is null when PDO::__construct() fails
11 $pdo = new \PDO($dsn, null, null);
/PHP-8.0/ext/json/tests/
H A Djson_encode_basic.phpt22 $obj->MyNull = null;
47 null,
114 string(4) "null"
116 string(4) "null"
136 string(4) "null"
138 string(4) "null"
142 string(82) "{"MyInt":99,"MyFloat":123.45,"MyBool":true,"MyNull":null,"MyString":"Hello World"}"
/PHP-8.0/ext/standard/tests/strings/
H A Djoin_variation3.phpt27 // associative array, containing null/empty/boolean values as key/value
28 array(NULL => "NULL", null => "null", "NULL" => NULL, "null" => null),
31 array(1 => '', 2 => "", 3 => NULL, 4 => null, 5 => false, 6 => true),
32 array('' => 1, "" => 2, NULL => 3, null => 4, false => 5, true => 6),
82 string(12) "null], [], ["

Completed in 95 milliseconds

12345678910>>...73