Home
last modified time | relevance | path

Searched refs:data (Results 326 – 350 of 1673) sorted by relevance

1...<<11121314151617181920>>...67

/PHP-8.0/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_filter_output.h34 MBFLAPI extern int mbfl_filter_output_pipe(int c, void* data);
35 MBFLAPI extern int mbfl_filter_output_null(int c, void* data);
/PHP-8.0/ext/openssl/tests/
H A Dopenssl_sign_basic.phpt7 $data = "Testing openssl_sign()";
11 var_dump(openssl_sign($data, $sign, $privkey)); // no output
12 var_dump(openssl_sign($data, $sign, $wrong));
H A Dbug70438.phpt12 $data = "openssl_seal() test";
18 openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key), $cipher);
23 openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key), 'sparkles', $iv);
24 openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key), $cipher, $iv);
/PHP-8.0/ext/spl/tests/
H A Darray_018.phpt21 $data = explode("=", "=Foo");
22 $foo->offsetSet($data[0], $data[1]);
/PHP-8.0/ext/standard/tests/array/
H A Dbug77395.phpt12 $data = [['aa'=> 'bb',], ['aa'=> 'bb',],];
15 array_multisort(array_column($data, 'bb'),SORT_DESC, $data); // PHP Warning error
H A Darray_slice_variation7.phpt2 Test array_slice() function : usage variations - different data types as keys in an array
6 * Pass different data types as keys in an array to array_slice()
25 // arrays of different data types to be passed as $input
28 // int data
36 // float data
48 // null data
57 // boolean data
68 // empty data
77 // string data
84 // undefined data
[all …]
/PHP-8.0/tests/basic/
H A Drfc1867_max_file_uploads_empty_files.phpt7 Content-Type: multipart/form-data; boundary=---------------------------20896060251896012921717172737
9 Content-Disposition: form-data; name="file2"; filename=""
14 Content-Disposition: form-data; name="file3"; filename=""
19 Content-Disposition: form-data; name="file4"; filename="file4.txt"
24 Content-Disposition: form-data; name="file1"; filename="file1.txt"
/PHP-8.0/ext/session/tests/
H A Drfc1867_cleanup.phpt25 Content-Type: multipart/form-data; boundary=---------------------------20896060251896012921717172737
27 Content-Disposition: form-data; name="PHPSESSID"
31 Content-Disposition: form-data; name="PHP_SESSION_UPLOAD_PROGRESS"
35 Content-Disposition: form-data; name="file1"; filename="file1.txt"
39 Content-Disposition: form-data; name="file2"; filename="file2.txt"
H A Drfc1867_sid_only_cookie_2.phpt21 Content-Type: multipart/form-data; boundary=---------------------------20896060251896012921717172737
23 Content-Disposition: form-data; name="PHPSESSID"
27 Content-Disposition: form-data; name="PHP_SESSION_UPLOAD_PROGRESS"
31 Content-Disposition: form-data; name="file1"; filename="file1.txt"
35 Content-Disposition: form-data; name="file2"; filename="file2.txt"
/PHP-8.0/ext/simplexml/tests/
H A Dsxe_002.phpt20 Here we have some text data.
40 foreach(new RecursiveIteratorIterator($sxe, 1) as $name => $data) {
42 var_dump(get_class($data));
43 var_dump(trim($data));
58 string(28) "Here we have some text data."
/PHP-8.0/ext/hash/
H A Dhash.stub.php5 function hash(string $algo, string $data, bool $binary = false): string {} argument
9 function hash_hmac(string $algo, string $data, string $key, bool $binary = false): string {} argument
15 function hash_update(HashContext $context, string $data): bool {} argument
46 function mhash(int $algo, string $data, ?string $key = null): string|false {} argument
55 public function __unserialize(array $data): void {} argument
/PHP-8.0/ext/pdo/tests/
H A Dpdo_013.phpt27 foreach ($stmt as $data)
29 var_dump($data);
42 foreach ($db->query($SELECT, PDO::FETCH_CLASS, 'Test') as $data)
44 var_dump($data);
51 foreach($stmt as $data)
53 var_dump($data);
/PHP-8.0/ext/pdo_oci/tests/
H A Dpdo_oci_attr_autocommit_1.phpt39 echo "Insert data\n";
41 $dbh->exec("insert into pdo_ac_tab (col1) values ('some data')");
45 echo "Second connection should be able to see committed data\n";
61 Insert data
62 Second connection should be able to see committed data
63 Data is: some data
/PHP-8.0/ext/standard/tests/file/
H A Dfopencookie.phpt21 public $data = "If you can read this, it worked";
30 $ret = substr($this->data, $this->position, $count);
42 return $this->position >= strlen($this->data);
49 if ($offset < strlen($this->data) && $offset >= 0) {
65 if (strlen($this->data) + $offset >= 0) {
66 $this->position = strlen($this->data) + $offset;
77 return array('size' => strlen($this->data));
H A Dfilesize_variation4.phpt10 /* Testing filesize() with data written using different file modes and by creating holes in file */
15 echo "\n*** Testing filesize() with data written using different file modes and by creating holes i…
18 $string = "Test 2 test the filesize() fn, with data containing all the types like !@@##$%^&*():<>?|…
36 echo "-- opening the file in 'a' mode, adding data and checking the file --\n";
43 echo "-- opening the file in 'at' mode, adding data and checking the file --\n";
57 echo "-- writing data after hole and checking the size --\n";
59 fwrite($file_handle, "Hello\0"); //writing 6 bytes of data
85 *** Testing filesize() with data written using different file modes and by creating holes in file *…
92 -- opening the file in 'a' mode, adding data and checking the file --
94 -- opening the file in 'at' mode, adding data and checking the file --
[all …]
/PHP-8.0/ext/oci8/tests/
H A Dxmltype_01.phpt45 $data = $row[0]->load();
46 var_dump($data);
47 return($data);
52 $data = do_query($c);
54 // Manipulate the data using SimpleXML
55 $sx = simplexml_load_string($data);
71 $data = do_query($c);
/PHP-8.0/ext/standard/tests/serialize/
H A Dbug80411.phpt18 $data = serialize($arr);
19 echo $data . PHP_EOL;
20 $recovered = unserialize($data);
/PHP-8.0/ext/mysqlnd/
H A Dmysqlnd_reverse_api.c74 if (retval->data) { in zval_to_mysqlnd()
75 …*save_client_api_capabilities = retval->data->m->negotiate_client_api_capabilities(retval->data, c… in zval_to_mysqlnd()
/PHP-8.0/Zend/tests/assert/
H A Dexpect_007.phpt9 $data = array(
16 …(preg_match("~^([a-zA-Z0-9-]+)$~", $data["key"]), new HeaderMalfunctionError("malformed key found …
/PHP-8.0/ext/bz2/
H A Dbz2.stub.php18 function bzwrite($bz, string $data, ?int $length = null): int|false {} argument
41 function bzcompress(string $data, int $block_size = 4, int $work_factor = 0): string|int {} argument
43 function bzdecompress(string $data, bool $use_less_memory = false): string|int|false {} argument
/PHP-8.0/ext/standard/tests/math/
H A Dbindec_variation1_64bit.phpt2 Test bindec() function : usage variations - different data types as $binary_string arg
24 // int data
30 // float data
37 // null data
41 // boolean data
47 // empty data
52 // string data
57 // undefined data
60 // unset data
H A Dbindec_variation1.phpt2 Test bindec() function : usage variations - different data types as $binary_string arg
24 // int data
30 // float data
37 // null data
41 // boolean data
47 // empty data
52 // string data
57 // undefined data
60 // unset data
H A Doctdec_variation1.phpt2 Test octdec() function : usage variations - different data types as $octal_string arg
22 // int data
30 // float data
37 // null data
41 // boolean data
47 // empty data
52 // string data
57 // undefined data
60 // unset data
/PHP-8.0/ext/soap/tests/
H A Dbug73037.phpt38 $data = $begin;
39 $data .= $piece;
40 while (strlen($data) + strlen($end) < $max) {
58 $data .= $tmp;
60 $data .= $end;
62 return $data;
81 $data = get_data($i);
83 $data = gzencode($data);
85 $len = strlen($data);
106 if(fwrite($fp, "$hdrs\n\n$data")) {
/PHP-8.0/ext/xml/tests/
H A Dxml004.phpt13 while ($data = fread($fp, 4096)) {
14 xml_parse($xp, $data, feof($fp));
21 while ($data = fread($fp, 4096)) {
22 xml_parse($xp, $data, feof($fp));

Completed in 31 milliseconds

1...<<11121314151617181920>>...67