Home
last modified time | relevance | path

Searched refs:null (Results 51 – 75 of 1859) sorted by relevance

12345678910>>...75

/PHP-5.5/ext/sockets/tests/
H A Dsocket_create_pair-wrongparams.phpt13 var_dump(socket_create_pair(AF_INET, null, null));
18 var_dump(socket_create_pair(AF_INET, null, null, $sockets));
20 var_dump(socket_create_pair(31337, null, null, $sockets));
/PHP-5.5/ext/xmlwriter/tests/
H A Dbug41326.phpt14 $xml->writeElement('foo', null);
30 $xw->writeElementNS('test', 'foo', null, '');
31 $xw->writeElementNS(null, 'bar', 'urn:x-test:', '');
32 $xw->writeElementNS(null, 'bar', 'urn:x-test:', NULL);
33 $xw->writeElementNS(null, 'bar', 'urn:x-test:');
34 $xw->writeElementNS(null, 'bar', '', '');
/PHP-5.5/ext/standard/tests/general_functions/
H A Dvar_export_basic4.phpt23 "'null'" => 'null',
100 -- Iteration: 'null' --
101 'null'
102 'null'
103 string(6) "'null'"
/PHP-5.5/ext/standard/tests/array/
H A Dkey_variation2.phpt48 // null data
49 /*4*/ 'null uppercase' => array(
50 NULL => 'null 1',
53 /*5*/ 'null lowercase' => array(
54 null => 'null 2',
125 -- Iteration 4 : null uppercase data --
128 -- Iteration 5 : null lowercase data --
H A Darray_diff_uassoc_variation12.phpt2 Test array_diff_uassoc() function : usage variation - Passing null,unset and undefined variable ind…
21 'null indexed' => array(NULL => NULL, null => null),
37 --null indexed--
H A Darray_merge_variation4.phpt52 // null data
53 /*4*/ 'null uppercase' => array(
54 NULL => 'null 1',
57 /*5*/ 'null lowercase' => array(
58 null => 'null 2',
191 -- Iteration 4: null uppercase data --
194 string(6) "null 1"
206 string(6) "null 1"
209 -- Iteration 5: null lowercase data --
212 string(6) "null 2"
[all …]
H A Darray_slice_variation7.phpt53 // null data
54 /*4*/ 'null uppercase' => array(
55 NULL => 'null 1',
58 /*5*/ 'null lowercase' => array(
59 null => 'null 2',
177 -- Iteration 4 : key type is null uppercase --
181 string(6) "null 1"
186 string(6) "null 1"
189 -- Iteration 5 : key type is null lowercase --
193 string(6) "null 2"
[all …]
H A Darray_map_variation3.phpt38 // associative array, containing null/empty/boolean values as key/value
39 /*13*/ array(NULL => "NULL", null => "null", "NULL" => NULL, "null" => null),
42 array(1 => '', 2 => "", 3 => NULL, 4 => null, 5 => false, 6 => true),
43 array('' => 1, "" => 2, NULL => 3, null => 4, false => 5, true => 6),
168 string(4) "null"
171 ["null"]=>
H A Darray_push_variation6.phpt51 // null data
52 /*3*/ 'null uppercase' => array(
53 NULL => 'null 1',
55 'null lowercase' => array(
56 null => 'null 2',
124 -- Iteration 4 : null uppercase data --
128 -- Iteration 5 : null lowercase data --
H A Dnatcasesort_variation11.phpt48 // null data
49 /*4*/ 'null uppercase' => array(
50 NULL => 'null 1',
53 /*5*/ 'null lowercase' => array(
54 null => 'null 2',
155 string(6) "null 1"
162 string(6) "null 2"
H A Darray_key_exists_variation8.phpt51 // null data
52 /*3*/ 'null uppercase' => array(
53 NULL => 'null 1',
55 'null lowercase' => array(
56 null => 'null 2',
129 -- $key arguments are null uppercase data:
131 -- $key arguments are null lowercase data:
165 -- $key arguments are null uppercase data:
167 -- $key arguments are null lowercase data:
224 -- Iteration 4: null uppercase data --
[all …]
H A Darray_merge_variation7.phpt19 $arr2 = array(0, 1, 2, null => 'null', 1.234E-10 => 'float');
45 string(4) "null"
55 string(4) "null"
/PHP-5.5/Zend/tests/traits/
H A Dbug60717.phpt11 function attributes(array $attributes = null);
12 function textArea(array $attributes = null, $value);
22 function textArea(array $attributes = null, $value) {}
23 abstract function attributes(array $attributes = null);
29 function attributes(array $attributes = null) { }
/PHP-5.5/ext/standard/tests/strings/
H A Djoin_variation3.phpt33 // associative array, containing null/empty/boolean values as key/value
34 array(NULL => "NULL", null => "null", "NULL" => NULL, "null" => null),
37 array(1 => '', 2 => "", 3 => NULL, 4 => null, 5 => false, 6 => true),
38 array('' => 1, "" => 2, NULL => 3, null => 4, false => 5, true => 6),
88 string(12) "null], [], ["
H A Dstrncasecmp_variation7.phpt10 /* Test strncasecmp() function with null terminated strings and binary values passed to 'str1' & 's…
12 echo "*** Test strncasecmp() function: with null terminated strings and binary inputs ***\n";
14 /* A binary function should not expect a null terminated string, and it should treat input as a raw…
24 *** Test strncasecmp() function: with null terminated strings and binary inputs ***
/PHP-5.5/ext/intl/tests/
H A Dbug62082.phpt9 var_dump(locale_get_display_name(str_repeat("a", 300), null));
10 var_dump(locale_get_display_name(str_repeat("a", 512), null));
11 var_dump(locale_get_display_name(str_repeat("a", 600), null));
/PHP-5.5/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);
H A Ddate_timestamp_set_nullparam.phpt2 Test the function date_timestamp_set() with first null parameter.
14 date_timestamp_set(null, 1234567890);
17 Warning: date_timestamp_set() expects parameter 1 to be DateTime, null given in %s on line %d
/PHP-5.5/ext/spl/tests/
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-5.5/ext/json/tests/
H A Dbug43941.phpt18 string(4) "null"
19 string(17) "[null,null,"abc"]"
H A Djson_encode_basic.phpt33 $obj->MyNull = null;
59 null,
127 string(4) "null"
129 string(4) "null"
149 string(4) "null"
151 string(4) "null"
155 string(82) "{"MyInt":99,"MyFloat":123.45,"MyBool":true,"MyNull":null,"MyString":"Hello World"}"
/PHP-5.5/ext/imap/
H A Dconfig.w329 CHECK_HEADER_ADD_INCLUDE("c-client/c-client.h", "CFLAGS_IMAP", null, null, true)) ||
11 CHECK_HEADER_ADD_INCLUDE("c-client/utf8aux.h", "CFLAGS_IMAP", null, null, true))
/PHP-5.5/ext/oci8/tests/
H A Dextauth_03.phpt18 $c = oci_pconnect('/', 'notemtpy', 'anything', null, OCI_CRED_EXT);
27 $c = oci_pconnect('notemtpy', 'notemtpy', 'anything', null, OCI_CRED_EXT);
36 $c = oci_pconnect('notemtpy', '', 'anything', null, OCI_CRED_EXT);
45 $c = oci_pconnect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER);
54 $c = oci_pconnect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER+OCI_CRED_EXT);
63 $c = oci_pconnect('', '', 'anything', null, OCI_CRED_EXT);
72 $c = oci_pconnect('/', '', 'anything', null, OCI_CRED_EXT);
81 $c = oci_pconnect('/', null, 'anything', null, OCI_CRED_EXT);
90 $c = oci_pconnect('/', '', 'c', null, OCI_SYSDBA+OCI_CRED_EXT);
99 $c = oci_pconnect('/', '', 'c', null, OCI_SYSOPER+OCI_CRED_EXT);
H A Dextauth_01.phpt19 $c = oci_connect('/', 'notemtpy', 'anything', null, OCI_CRED_EXT);
28 $c = oci_connect('notemtpy', 'notemtpy', 'anything', null, OCI_CRED_EXT);
37 $c = oci_connect('notemtpy', '', 'anything', null, OCI_CRED_EXT);
46 $c = oci_connect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER);
55 $c = oci_connect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER+OCI_CRED_EXT);
64 $c = oci_connect('', '', 'anything', null, OCI_CRED_EXT);
73 $c = oci_connect('/', '', 'anything', null, OCI_CRED_EXT);
82 $c = oci_connect('/', null, 'anything', null, OCI_CRED_EXT);
91 $c = oci_connect('/', '', 'c', null, OCI_SYSDBA+OCI_CRED_EXT);
100 $c = oci_connect('/', '', 'c', null, OCI_SYSOPER+OCI_CRED_EXT);
H A Dextauth_02.phpt18 $c = oci_new_connect('/', 'notemtpy', 'anything', null, OCI_CRED_EXT);
27 $c = oci_new_connect('notemtpy', 'notemtpy', 'anything', null, OCI_CRED_EXT);
36 $c = oci_new_connect('notemtpy', '', 'anything', null, OCI_CRED_EXT);
45 $c = oci_new_connect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER);
54 $c = oci_new_connect('a', 'b', 'c', null, OCI_SYSDBA+OCI_SYSOPER+OCI_CRED_EXT);
63 $c = oci_new_connect('', '', 'anything', null, OCI_CRED_EXT);
72 $c = oci_new_connect('/', '', 'anything', null, OCI_CRED_EXT);
81 $c = oci_new_connect('/', null, 'anything', null, OCI_CRED_EXT);
90 $c = oci_new_connect('/', '', 'c', null, OCI_SYSDBA+OCI_CRED_EXT);
99 $c = oci_new_connect('/', '', 'c', null, OCI_SYSOPER+OCI_CRED_EXT);

Completed in 46 milliseconds

12345678910>>...75