Home
last modified time | relevance | path

Searched refs:data (Results 151 – 175 of 2290) sorted by relevance

12345678910>>...92

/PHP-7.1/ext/standard/tests/array/
H A Darray_walk_recursive1.phpt19 var_dump(array_walk_recursive($var, "foo", "data"));
26 var_dump(array_walk_recursive($var,"foo2", "data"));
44 string(4) "data"
47 string(4) "data"
50 string(4) "data"
53 string(4) "data"
55 string(4) "data"
H A D003.phpt7 require(dirname(__FILE__) . '/data.inc');
18 uasort ($data, 'cmp');
19 var_dump ($data);
23 uksort ($data, 'cmp');
24 var_dump ($data);
27 usort ($data, 'cmp');
28 var_dump ($data);
H A Darray_slice_variation3.phpt2 Test array_slice() function : usage variations - Pass different data types as $length arg
13 * Pass different data types as $length argument to array_slice to test behaviour
34 // int data
40 // float data
47 // null data
51 // boolean data
57 // empty data
62 // string data
67 // undefined data
70 // unset data
/PHP-7.1/ext/standard/tests/file/
H A Dbug39538.phpt5 …an test\", \"next data\", \"p\narsed\"","\"\r\nthis is an test\", \"next data\", \"p\r\narsed\"","…
20 [1] => next data
28 [1] => next data
37 [1] => next data
H A Dbug44034.phpt9 $urls[] = "data://text/plain,foo\r\nbar\r\n";
10 $urls[] = "data://text/plain,\r\nfoo\r\nbar\r\n";
11 $urls[] = "data://text/plain,foo\r\nbar";
19 data://text/plain,foo\r\nbar\r\n
26 data://text/plain,\r\nfoo\r\nbar\r\n
35 data://text/plain,foo\r\nbar
H A Dbug44607.phpt7 $data = str_repeat('.', 14000);
8 $data .= $eol;
9 $data .= $data;
10 file_put_contents($tempnam, $data);
H A Dfgets_socket_variation2.phpt2 fgets() over a socket with more than a buffer's worth of data
12 // populate the file with lines of data
38 echo "Write data from the file:\n";
39 $data = file_get_contents($filename);
42 var_dump(fwrite($socket, $data));
53 echo "\nClose the server side socket and read the remaining data from the client\n";
63 Write data from the file:
68 Close the server side socket and read the remaining data from the client
/PHP-7.1/ext/openssl/tests/
H A Dopenssl_verify_basic.phpt7 $data = "Testing openssl_verify()";
12 openssl_sign($data, $sign, $privkey);
13 var_dump(openssl_verify($data, $sign, $pubkey));
14 var_dump(openssl_verify($data, $sign, $privkey));
15 var_dump(openssl_verify($data, $sign, $wrong));
16 var_dump(openssl_verify($data, $wrong, $pubkey));
/PHP-7.1/ext/zlib/tests/
H A Dgzencode_variation1-win32.phpt16 /* Prototype : string gzencode ( string $data [, int $level [, int $encoding_mode ]] )
23 function gzdecode($data)
25 return gzinflate(substr($data,10,-8));
30 include(dirname(__FILE__) . '/data.inc');
35 $output = gzencode(gzencode($data));
38 var_dump($data === $back);
/PHP-7.1/Zend/tests/
H A DArrayAccess_indirect_append.phpt7 private $data = [];
10 return $this->data[];
12 return $this->data[$name];
16 $this->data[$name] = $value;
30 ["data":"AA":private]=>
/PHP-7.1/ext/xml/tests/
H A Dbug32001.phpt36 $data = '';
43 $data .= <<<HERE
53 $data = iconv("UTF-8", $this->encoding, $data);
59 $data = "\xef\xbb\xbf".$data;
70 $data = "\xfe\xff".$data;
77 $data = "\xff\xfe".$data;
88 $data = "\x00\x00\xfe\xff".$data;
95 $data = "\xff\xfe\x00\x00".$data;
171 Chunk size: all data at once
183 Chunk size: all data at once
[all …]
/PHP-7.1/ext/mbstring/tests/
H A Dmb_strtoupper_variation1.phpt2 Test mb_strtoupper() function : usage varitations - pass different data types as $sourcestring arg
17 * Pass different data types as $sourcestring argument to mb_strtoupper to test behaviour
47 // int data
53 // float data
60 // null data
64 // boolean data
70 // empty data
74 // string data
79 // object data
82 // undefined data
[all …]
/PHP-7.1/ext/iconv/tests/
H A Diconv_mime_decode_variation1.phpt2 Test iconv_mime_decode() function : usage variations - Pass different data types to header arg
16 * Pass different data types to $str argument to see how iconv_mime_decode() behaves
50 // int data
56 // float data
63 // null data
67 // boolean data
73 // empty data
77 // string data
82 // object data
85 // undefined data
[all …]
/PHP-7.1/ext/standard/tests/math/
H A Ddechex_variation1.phpt2 Test dechex() function : usage variations - different data types as $number arg
36 // int data
44 // float data
51 // null data
55 // boolean data
61 // empty data
66 // string data
71 // object data
74 // undefined data
77 // unset data
H A Ddechex_variation1_64bit.phpt2 Test dechex() function : usage variations - different data types as $number arg
36 // int data
44 // float data
51 // null data
55 // boolean data
61 // empty data
66 // string data
71 // object data
74 // undefined data
77 // unset data
H A Ddecoct_variation1.phpt2 Test decoct() function : usage variations - different data types as $number arg
37 // int data
45 // float data
52 // null data
56 // boolean data
62 // empty data
67 // string data
72 // object data
75 // undefined data
78 // unset data
H A Ddecoct_variation1_64bit.phpt2 Test decoct() function : usage variations - different data types as $number arg
37 // int data
45 // float data
52 // null data
56 // boolean data
62 // empty data
67 // string data
72 // object data
75 // undefined data
78 // unset data
H A Dabs_variation.phpt2 Test abs() function : usage variations - different data types as $number arg
11 * Pass different data types as $number argument to abs() to test behaviour
39 // null data
43 // boolean data
49 // empty data
54 // string data
59 // object data
62 // undefined data
65 // unset data
H A Dbindec_variation1.phpt2 Test bindec() function : usage variations - different data types as $binary_string arg
29 // int data
35 // float data
42 // null data
46 // boolean data
52 // empty data
57 // string data
62 // undefined data
65 // unset data
H A Dbindec_variation1_64bit.phpt2 Test bindec() function : usage variations - different data types as $binary_string arg
29 // int data
35 // float data
42 // null data
46 // boolean data
52 // empty data
57 // string data
62 // undefined data
65 // unset data
H A Doctdec_variation1.phpt2 Test octdec() function : usage variations - different data types as $octal_string arg
27 // int data
35 // float data
42 // null data
46 // boolean data
52 // empty data
57 // string data
62 // undefined data
65 // unset data
/PHP-7.1/ext/standard/tests/general_functions/
H A Dphp_uname_variation1.phpt24 // int data
30 // float data
37 // null data
41 // boolean data
47 // empty data
51 // object data
54 // undefined data
57 // unset data
61 // loop through each element of the array for data
H A Descapeshellarg_variation1-win32.phpt2 Test escapeshellarg() function : usage variations - different data types as $arg arg
33 // int data
40 // float data
47 // null data
51 // boolean data
57 // empty data
61 // undefined data
64 // unset data
/PHP-7.1/ext/session/tests/
H A Dsession_cache_expire_error.phpt38 // Integer data
44 // Float data
51 // Null data
55 // Boolean data
65 // Invalid string data
70 // Object data
73 // Undefined data
76 // Unset data
/PHP-7.1/ext/simplexml/tests/
H A Dsxe_003.phpt20 Here we have some text data.
40 foreach($sxe->getChildren() as $name => $data) {
42 var_dump(get_class($data));
43 var_dump(trim($data));
52 foreach($sxe->getChildren() as $name => $data) {
54 var_dump(get_class($data));
55 var_dump(trim($data));
69 string(28) "Here we have some text data."

Completed in 39 milliseconds

12345678910>>...92