Home
last modified time | relevance | path

Searched refs:null (Results 101 – 125 of 1859) sorted by relevance

12345678910>>...75

/PHP-5.5/ext/ldap/tests/
H A Dldap_connect_error.phpt15 var_dump(ldap_connect(null, null, null));
/PHP-5.5/Zend/tests/
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 Dbug35163_2.phpt11 $a[0] = null;
12 $a = null;
H A Dbug35163_3.phpt11 $a->b = null;
12 $a = null;
/PHP-5.5/ext/standard/tests/array/
H A Darray_unique_variation2.phpt53 /*5*/ array(NULL, null), // with NULL
65 // associative array, containing null/empty/boolean values as key/value
66 /*14*/ array(NULL => "NULL", null => "null", "NULL" => NULL, "null" => null),
69 array(1 => '', 2 => "", 3 => NULL, 4 => null, 5 => false, 6 => true),
70 /*18*/ array('' => 1, "" => 2, NULL => 3, null => 4, false => 5, true => 6),
196 %unicode|string%(4) "null"
H A Darray_reverse_variation3.phpt53 // associative array, containing null/empty/boolean values as key/value
54 /*13*/ array(NULL => "NULL", null => "null", "NULL" => NULL, "null" => null),
57 array(1 => '', 2 => "", 3 => NULL, 4 => null, 5 => false, 6 => true),
58 array('' => 1, "" => 2, NULL => 3, null => 4, false => 5, true => 6),
413 ["null"]=>
418 string(4) "null"
422 ["null"]=>
427 string(4) "null"
431 ["null"]=>
436 string(4) "null"
H A Darray_unshift_variation3.phpt37 // associative array, containing null/empty/boolean values as key/value
38 /*13*/ array(NULL => "NULL", null => "null", "NULL" => NULL, "null" => null),
41 array(1 => '', 2 => "", 3 => NULL, 4 => null, 5 => false, 6 => true),
42 array('' => 1, "" => 2, NULL => 3, null => 4, false => 5, true => 6),
399 string(4) "null"
402 ["null"]=>
414 string(4) "null"
417 ["null"]=>
H A Darray_intersect_assoc_variation3.phpt67 // associative array, containing null/empty/boolean values as key/value
68 /*14*/ array(NULL => "NULL", null => "null", "NULL" => NULL, "null" => null),
71 array(1 => '', 2 => "", 3 => NULL, 4 => null, 5 => false, 6 => true),
72 array('' => 1, "" => 2, NULL => 3, null => 4, false => 5, true => 6),
85 '', null => "null", '' => 'emptys', "emptyd" => "",
H A Darray_intersect_assoc_variation4.phpt55 '', null => "null", '' => 'emptys'
76 // associative array, containing null/empty/boolean values as key/value
77 /*14*/ array(NULL => "NULL", null => "null", "NULL" => NULL, "null" => null),
80 array(1 => '', 2 => "", 3 => NULL, 4 => null, 5 => false, 6 => true),
81 array('' => 1, "" => 2, NULL => 3, null => 4, false => 5, true => 6),
H A Darray_product_variation1.phpt20 "resource" => $fp, "object" => new A(), "null" => null,
52 null
/PHP-5.5/ext/pdo_mysql/tests/
H A Dbug53551.phpt52 …QLSTATE[23000]: Integrity constraint violation: 1048 Column 'count' cannot be null in %s on line %d
59 string(29) "Column 'count' cannot be null"
63 …QLSTATE[23000]: Integrity constraint violation: 1048 Column 'count' cannot be null in %s on line %d
70 string(29) "Column 'count' cannot be null"
/PHP-5.5/ext/standard/tests/strings/
H A Dexplode_variation6.phpt15 echo "\n-- positive limit with null separator --\n";
18 echo "\n-- negative limit (since PHP 5.1) with null separator --\n";
46 -- positive limit with null separator --
50 -- negative limit (since PHP 5.1) with null separator --
H A Dhttp_build_query_error.phpt2 Testing error on null parameter 1 of http_build_query()
9 $result = http_build_query(null);
/PHP-5.5/ext/intl/tests/
H A Dtimezone_createTimeZoneIDEnumeration_variant2.phpt26 IntlTimeZone::TYPE_ANY, null, null);
31 IntlTimeZone::TYPE_ANY, null, -3600000);
H A Dtimezone_hasSameRules_error.phpt21 var_dump(intltz_has_same_rules(null, $tz));
32 string(92) "Argument 1 passed to intltz_has_same_rules() must be an instance of IntlTimeZone, null
34 string(74) "intltz_has_same_rules() expects parameter 1 to be IntlTimeZone, null given"
/PHP-5.5/ext/json/tests/
H A Dbug41034.phpt2 Bug #41034 (json_encode() ignores null byte started keys in arrays)
7 echo json_encode(array(0,"\0ab"=>1,"\0null-prefixed value"));
H A Dpass001.phpt23 null,
44 \"null\": null,
106 null,
127 "null": null,
223 ["null"]=>
361 ["null"]=>
432null,{"integer":1234567890,"real":-9876.54321,"e":1.23456789e-13,"E":1.23456789e+34,"_empty_":0,"z…
434null,{"integer":1234567890,"real":-9876.54321,"e":1.23456789e-13,"E":1.23456789e+34,"":0,"zero":0,…
503 ["null"]=>
641 ["null"]=>
/PHP-5.5/ext/spl/tests/
H A DSplDoublyLinkedList_bottom_pass_null.phpt2 SplDoublyLinkedList::bottom() - pass in an unexpected null parameter
10 $list->bottom(null);
H A DSplDoublyLinkedList_top_pass_null.phpt2 SplDoublyLinkedList::top() - pass in an unexpected null parameter
10 $list->top(null);
/PHP-5.5/ext/soap/tests/bugs/
H A Dbug31755.phpt7 $client=new SOAPClient(null, array('location' => 'http://localhost',
10 $header = new SOAPHeader(null, 'foo', 'bar');
12 $response= $client->__call('function', array(), null, $header);
/PHP-5.5/ext/oci8/tests/
H A Dfetch_assoc.phpt13 "insert into fetch_assoc_tab values (1,1,null)",
14 "insert into fetch_assoc_tab values (1,1,null)",
15 "insert into fetch_assoc_tab values (1,1,null)"
/PHP-5.5/ext/phar/tests/files/
H A Dfrontcontroller7.phar2 Phar::webPhar("whatever", "index.php", null, array("php" => null));
/PHP-5.5/ext/phar/tests/cache_list/files/
H A Dfrontcontroller7.phar2 Phar::webPhar("whatever", "index.php", null, array("php" => null));
/PHP-5.5/tests/lang/
H A Dbug24573.phpt2 Bug #24573 (debug_backtrace() crashes if $this is set to null)
9 $this = null;
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_fetch_array.phpt243 func_mysqli_fetch_array($link, $engine, "BINARY(1)", "a", "a", 630, null, true);
246 func_mysqli_fetch_array($link, $engine, "BINARY(1)", NULL, NULL, 660, null, true);
248 func_mysqli_fetch_array($link, $engine, "VARBINARY(1)", "a", "a", 670, null, true);
253 func_mysqli_fetch_array($link, $engine, "TINYBLOB", "a", "a", 710, null, true);
256 func_mysqli_fetch_array($link, $engine, "TINYBLOB", NULL, NULL, 740, null, true);
262 func_mysqli_fetch_array($link, $engine, "BLOB", "a", "a", 780, null, true);
264 func_mysqli_fetch_array($link, $engine, "BLOB", NULL, NULL, 790, null, true);
270 func_mysqli_fetch_array($link, $engine, "MEDIUMBLOB", "a", "a", 830, null, true);
278 func_mysqli_fetch_array($link, $engine, "LONGBLOB", "a", "a", 890, null, true);
280 func_mysqli_fetch_array($link, $engine, "LONGBLOB", NULL, NULL, 910, null, true);
[all …]

Completed in 53 milliseconds

12345678910>>...75