Home
last modified time | relevance | path

Searched refs:null (Results 251 – 275 of 1803) sorted by relevance

1...<<11121314151617181920>>...73

/PHP-8.0/ext/standard/tests/array/
H A Darray_map_variation2.phpt12 var_dump( array_map(null, $arr));
13 var_dump( array_map(null, $arr, $arr));
16 $arr[0] = null;
17 $arr[1] = null;
H A Darray_product_variation1.phpt14 "resource" => $fp, "object" => new A(), "null" => null,
45 null
H A Darray_unique_variation2.phpt48 /*5*/ array(NULL, null), // with NULL
60 // associative array, containing null/empty/boolean values as key/value
61 /*14*/ array(NULL => "NULL", null => "null", "NULL" => NULL, "null" => null),
64 array(1 => '', 2 => "", 3 => NULL, 4 => null, 5 => false, 6 => true),
65 /*18*/ array('' => 1, "" => 2, NULL => 3, null => 4, false => 5, true => 6),
191 string(4) "null"
H A Darray_walk_variation3.phpt7 * integer, float, string, bool, null, empty & mixed
32 // null values
33 array(null, NULL),
42 /*8*/ array(16, 8.345, "Fruits", true, null, FALSE, -98, 0.005, 'banana')
/PHP-8.0/ext/dba/tests/
H A Dbug72157.phpt10 $var5 = dba_open(null,$var0);
11 $var5 = dba_open(null,$var0);
12 $var5 = dba_open(null,$var0);
/PHP-8.0/ext/odbc/tests/
H A Dbug80592.phpt10 odbc_exec($conn,"CREATE TABLE bug80592 (f1 float not null, f2 float not null, f3 float not null)");
/PHP-8.0/sapi/fpm/tests/
H A Dresponse.inc45 * @param string|array|null $data
53 'err_response' => null,
120 * @param string|null $errorMessage Expected error message.
128 $expectedErrorMessage = $errorMessage !== null
144 return $this->expectError(null);
152 * @return string|null
160 return null;
193 * @return string|null
270 * @return array|null
275 return null;
[all …]
H A Dproc-idle-timeout.phpt33 $tester->multiRequest(2, null, null, null, false, 7000);
/PHP-8.0/ext/soap/tests/interop/Round2/GroupB/
H A Dr2_groupB_001s.phpt10 new SoapVar("arg", XSD_STRING, null, null, "varString"),
11 new SoapVar(34, XSD_INT, null, null, "varInt"),
12 new SoapVar(34.345, XSD_FLOAT, null, null, "varFloat")
/PHP-8.0/Zend/tests/nullsafe_operator/
H A D015.phpt6 (new stdClass)->{null?->x}->y;
12 Warning: Attempt to read property "y" on null in %s on line 3
/PHP-8.0/ext/standard/tests/network/
H A Dfsockopen_error.phpt10 $errno = null;
11 $errstr = null;
19 $errno = null;
20 $errstr = null;
/PHP-8.0/Zend/tests/
H A Dstr_or_obj_of_class_zpp.phpt19 var_dump(zend_string_or_stdclass(null));
37 var_dump(zend_string_or_stdclass_or_null(null));
69 zend_string_or_stdclass_or_null(): Argument #1 ($param) must be of type stdClass|string|null, array…
70 zend_string_or_stdclass_or_null(): Argument #1 ($param) must be of type stdClass|string|null, Foo g…
H A Dbug61767.phpt5 set_error_handler(function($code, $msg, $file = null, $line = null) {
15 //$undefined = null; // defined variable does not cause problems
H A Dbug63206_1.phpt2 Bug #63206 Fully support error_handler stacking, even with null
14 set_error_handler(null);
H A Dcall_user_func_array_invalid_type.phpt12 call_user_func_array(array($drv, 'func'), null);
18 call_user_func_array(): Argument #2 ($args) must be of type array, null given
/PHP-8.0/ext/opcache/tests/jit/
H A Dfetch_obj_009.phpt13 $obj->x[0] = null;
14 $obj->x > $obj->x[0] = null;
/PHP-8.0/ext/standard/tests/misc/
H A Dexec_basic1.phpt28 exec(): Argument #1 ($command) must not contain any null bytes
29 system(): Argument #1 ($command) must not contain any null bytes
30 passthru(): Argument #1 ($command) must not contain any null bytes
/PHP-8.0/ext/intl/tests/
H A Dtimezone_createTimeZoneIDEnumeration_variant2.phpt24 IntlTimeZone::TYPE_ANY, null, null);
29 IntlTimeZone::TYPE_ANY, null, -3600000);
H A Dbug77895.phpt2 Bug #77895: IntlDateFormatter::create fails in strict mode if $locale = null
10 var_dump(IntlDateFormatter::create(null, IntlDateFormatter::NONE, IntlDateFormatter::NONE));
/PHP-8.0/ext/pgsql/tests/
H A D11pg_meta_data.phpt27 ["not null"]=>
44 ["not null"]=>
61 ["not null"]=>
/PHP-8.0/ext/dom/tests/
H A DDOMImplementation_createDocumentType_basic.phpt13 $doc = $imp->createDocument(null, 'html', $doctype);
17 $doc = $imp->createDocument(null, 'html', $doctype);
21 $doc = $imp->createDocument(null, 'html', $doctype);
/PHP-8.0/ext/pdo/
H A Dpdo_stmt.stub.php8 …olumn, mixed &$var, int $type = PDO::PARAM_STR, int $maxLength = 0, mixed $driverOptions = null) {}
11 …param, mixed &$var, int $type = PDO::PARAM_STR, int $maxLength = 0, mixed $driverOptions = null) {}
32 public function execute(?array $params = null) {}
/PHP-8.0/ext/standard/tests/streams/
H A Dstream_context_set_option_error.phpt13 stream_context_set_option($ctx, [], null, "x");
30 stream_context_set_option(): Argument #3 ($option_name) must be null when argument #2 ($wrapper_or_…
32 stream_context_set_option(): Argument #3 ($option_name) cannot be null when argument #2 ($wrapper_o…
/PHP-8.0/ext/opcache/tests/
H A Dassign_obj_exceptions.phpt16 $test->$name = null;
22 $test = null;
47 Attempt to assign property "x" on null
H A Dbug78341.phpt12 $x = $a === null;
17 test(null);

Completed in 24 milliseconds

1...<<11121314151617181920>>...73