Home
last modified time | relevance | path

Searched refs:data (Results 126 – 150 of 2299) sorted by relevance

12345678910>>...92

/PHP-7.3/ext/standard/tests/serialize/
H A Dbug72663_2.phpt7 public $data;
9 return serialize($this->data);
11 function unserialize($data) {
12 $this->data = unserialize($data);
22 Notice: unserialize(): Unexpected end of serialized data in %s on line %d
/PHP-7.3/ext/filter/tests/
H A D028.phpt9 var_dump(filter_var("<data&sons>", FILTER_SANITIZE_SPECIAL_CHARS));
13 var_dump(filter_var("<data&sons>", FILTER_SANITIZE_SPECIAL_CHARS, FILTER_FLAG_ENCODE_LOW));
17 var_dump(filter_var("<data&sons>", FILTER_SANITIZE_SPECIAL_CHARS, FILTER_FLAG_ENCODE_HIGH));
27 string(23) "&#60;data&#38;sons&#62;"
30 string(23) "&#60;data&#38;sons&#62;"
33 string(23) "&#60;data&#38;sons&#62;"
/PHP-7.3/ext/xmlrpc/libxmlrpc/
H A Dqueue.c240 return q->cursor->data; in Q_Head()
307 q->head->data = d; in Q_PushHead()
359 q->tail->data = d; in Q_PushTail()
395 d = q->head->data; in Q_PopHead()
438 d = q->tail->data; in Q_PopTail()
514 return q->cursor->data; in Q_Previous()
657 if(q && data) { in Q_Put()
661 q->cursor->data = data; in Q_Put()
703 if(Comp(d, data) == 0) in Q_Find()
944 Q_PushHead(q, data); in Q_Insert()
[all …]
/PHP-7.3/ext/standard/tests/filters/
H A Dchunked_001.phpt13 "data://text/plain,0\r\n",
14 "data://text/plain,2\r\nte\r\n2\r\nst\r\n0\r\n",
15 "data://text/plain,2\nte\n2\nst\n0\n",
16 "data://text/plain,2;a=1\nte\n2;a=2;b=3\r\nst\n0\n",
17 "data://text/plain,2\nte\n2\nst\n0\na=b\r\nc=d\n\r\n",
18 "data://text/plain,1f\n0123456789abcdef0123456789abcde\n1\nf\n0\n",
19 "data://text/plain,1E\n0123456789abcdef0123456789abcd\n2\nef\n0\n",
/PHP-7.3/ext/hash/sha3/generic64lc/
H A DKeccakP-1600-SnP.h38 void KeccakP1600_AddByte(void *state, unsigned char data, unsigned int offset);
40 void KeccakP1600_AddBytes(void *state, const unsigned char *data, unsigned int offset, unsigned int…
41 void KeccakP1600_OverwriteBytes(void *state, const unsigned char *data, unsigned int offset, unsign…
46 void KeccakP1600_ExtractBytes(const void *state, unsigned char *data, unsigned int offset, unsigned…
48 size_t KeccakF1600_FastLoop_Absorb(void *state, unsigned int laneCount, const unsigned char *data, …
/PHP-7.3/ext/standard/tests/math/
H A Dbase_convert_variation1.phpt2 Test base_convert() function : usage variations - different data types as $number argument
26 // int data
33 // float data
40 // null data
44 // boolean data
50 // empty data
55 // string data
60 // undefined data
63 // unset data
H A Ddecbin_variation1.phpt2 Test decbin() 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 Ddecbin_variation1_64bit.phpt2 Test decbin() 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 Dround_variation1.phpt2 Test round() function : usage variations - different data types as $val argument
34 // int data
41 // float data
48 // null data
52 // boolean data
58 // empty data
63 // string data
68 // object data
71 // undefined data
74 // unset data
/PHP-7.3/ext/standard/tests/dir/
H A Drewinddir_basic-win32-mb.phpt36 $data = array();
39 $data[] = $file1;
41 $first = $data[0];
42 sort($data);
43 var_dump($data);
48 $data = array();
51 $data[] = $file2;
53 $first = $data[0];
54 sort($data);
55 var_dump($data);
/PHP-7.3/ext/mbstring/tests/
H A Dmb_strlen_variation1.phpt2 Test mb_strlen() function : usage variations - Pass different data types as $str arg
16 * Test mb_strlen by passing different data types as $str argument
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 …]
H A Dmb_strtolower_variation1.phpt2 Test mb_strtolower() function : usage variations - pass different data types as $sourcestring arg
16 * Pass different data types to $sourcestring argument to test behaviour of mb_strtolower()
45 // int data
51 // float data
58 // null data
62 // boolean data
68 // empty data
72 // string data
77 // object data
80 // undefined data
[all …]
H A Dmb_substr_count_variation1.phpt2 Test mb_substr_count() function : usage variations - Pass different data types as $haystack arg
16 * Pass different data types as $haystack argument to mb_substr_count() to test behaviour
48 // int data
54 // float data
61 // null data
65 // boolean data
71 // empty data
75 // string data
80 // object data
83 // undefined data
[all …]
/PHP-7.3/ext/xml/tests/
H A Dxml002.phpt28 function characterData($parser, $data)
30 print '{CDATA['.$data.']}';
32 function PIHandler($parser, $target, $data)
34 print '{PI['.$target.','.$data.']}';
36 function defaultHandler($parser, $data)
38 if (substr($data, 0, 1) == "&" && substr($data, -1, 1) == ";") {
39 print '{ENTREF['.$data.']}';
41 print '{?['.$data.']}';
66 while ($data = fread($fp, 4096)) {
67 if (!xml_parse($xml_parser, $data, feof($fp))) {
/PHP-7.3/ext/ctype/tests/
H A Dctype_lower_variation1.phpt2 Test ctype_lower() function : usage variations - different data types as $c arg
13 * Pass different data types as $c argument to ctype_lower() to test behaviour
43 // int data
49 // float data
56 // null data
60 // boolean data
66 // empty data
71 // string data
76 // object data
79 // undefined data
[all …]
H A Dctype_print_variation1.phpt2 Test ctype_print() function : usage variations - different data types as $c arg
13 * Pass different data types as $c argument to ctype_print() to test behaviour
43 // int data
49 // float data
56 // null data
60 // boolean data
66 // empty data
71 // string data
76 // object data
79 // undefined data
[all …]
H A Dctype_punct_variation1.phpt2 Test ctype_punct() function : usage variations - different data types as $c argument
14 * Pass different data types as $c argument to ctype_punt() to test behaviour
44 // int data
50 // float data
57 // null data
61 // boolean data
67 // empty data
72 // string data
77 // object data
80 // undefined data
[all …]
H A Dctype_xdigit_variation1.phpt2 Test ctype_xdigit() function : usage variations - different data typse as $c arg
13 * Pass different data types as $c argument to ctype_xdigit() to test behaviour
43 // int data
49 // float data
56 // null data
60 // boolean data
66 // empty data
71 // string data
76 // object data
79 // undefined data
[all …]
H A Dctype_alnum_variation1.phpt2 Test ctype_alnum() function : usage variations - Different data types as $c arg
13 * Pass different data types as $c argument to ctype_alnum() to test behaviour
43 // int data
49 // float data
56 // null data
60 // boolean data
66 // empty data
71 // string data
76 // object data
79 // undefined data
[all …]
H A Dctype_alpha_variation1.phpt2 Test ctype_alpha() function : usage variations - different data types as $c arg
13 * Pass different data types as $c argument to ctype_alpha() to test behaviour
43 // int data
49 // float data
56 // null data
60 // boolean data
66 // empty data
71 // string data
76 // object data
79 // undefined data
[all …]
H A Dctype_cntrl_variation1.phpt2 Test ctype_cntrl() function : usage variations - Different data types as $c arg
13 * Pass different data types as $c argument to ctype_cntrl() to test behaviour
43 // int data
49 // float data
56 // null data
60 // boolean data
66 // empty data
71 // string data
77 // object data
80 // undefined data
[all …]
H A Dctype_graph_variation1.phpt2 Test ctype_graph() function : usage variations - different data types as $c arg
13 * Pass different data types as $c argument to ctype_graph() to test behaviour
43 // int data
49 // float data
56 // null data
60 // boolean data
66 // empty data
71 // string data
76 // object data
79 // undefined data
[all …]
H A Dctype_space_variation1.phpt2 Test ctype_space() function : usage variations - different data types as $c argument
13 * Pass different data types as $c argument to ctype_space() to test behaviour
43 // int data
49 // float data
56 // null data
60 // boolean data
66 // empty data
71 // string data
76 // object data
79 // undefined data
[all …]
/PHP-7.3/ext/standard/tests/array/
H A Dnatcasesort_variation2.phpt2 Test natcasesort() function : usage variations - Pass arrays of different data types
37 // arrays of different data types to be passed to $array_arg argument
40 // int data
48 // float data
57 // null data
63 // boolean data
71 // empty data
80 // string data
87 // object data
92 // undefined data
[all …]
/PHP-7.3/ext/standard/tests/strings/
H A Dutf8_decode_variation1.phpt5 /* Prototype : proto string utf8_decode(string data)
29 // int data
35 // float data
42 // array data
49 // null data
53 // boolean data
59 // empty data
63 // object data
66 // undefined data
69 // unset data
[all …]

Completed in 69 milliseconds

12345678910>>...92