/php-src/ext/standard/tests/strings/ |
H A D | wordwrap.phpt | 11 var_dump("123ab123ab123" === wordwrap("123ab123ab123", 3, "ab")); 12 var_dump("123ab123ab123" === wordwrap("123ab123ab123", 5, "ab")); 13 var_dump("123ab 123ab123" === wordwrap("123 123ab123", 3, "ab")); 14 var_dump("123ab123ab123" === wordwrap("123 123ab123", 5, "ab")); 15 var_dump("123 123ab123" === wordwrap("123 123 123", 10, "ab")); 17 var_dump("123ab123ab123" === wordwrap("123ab123ab123", 3, "ab", 1)); 18 var_dump("123ab123ab123" === wordwrap("123ab123ab123", 5, "ab", 1)); 19 var_dump("123ab 12ab3ab123" === wordwrap("123 123ab123", 3, "ab", 1)); 20 var_dump("123 ab123ab123" === wordwrap("123 123ab123", 5, "ab", 1)); 21 var_dump("123 123ab 123" === wordwrap("123 123 123", 8, "ab", 1)); [all …]
|
H A D | sprintf_variation34.phpt | 153 string(4) "12ab" 155 string(4) "12ab" 156 string(5) " 12ab" 157 string(5) "12ab " 158 string(5) " 12ab" 160 12ab" 161 string(4) "12ab" 162 string(30) " 12ab"
|
H A D | sprintf_variation34_64bit.phpt | 149 string(4) "12ab" 151 string(4) "12ab" 152 string(5) " 12ab" 153 string(5) "12ab " 154 string(5) " 12ab" 156 12ab" 157 string(4) "12ab" 158 string(30) " 12ab"
|
H A D | htmlentities18.phpt | 15 "&ab&&", 42 string(17) "&ab&&" 43 string(17) "&ab&&"
|
/php-src/ext/filter/tests/ |
H A D | 055.phpt | 8 array("01-23-45-67-89-ab", 0), 9 array("01-23-45-67-89-ab", array("options" => array("separator" => "-"))), 10 array("01-23-45-67-89-ab", array("options" => array("separator" => "."))), 11 array("01-23-45-67-89-ab", array("options" => array("separator" => ":"))), 14 array("01:23:45:67:89:ab", 0), 19 array("0123.4567.89ab", 0), 21 array("01-23-45-67-89-ab", array("options" => array("separator" => ""))), 34 string(17) "01-23-45-67-89-ab" 35 string(17) "01-23-45-67-89-ab" 40 string(17) "01:23:45:67:89:ab" [all …]
|
/php-src/Zend/tests/generators/ |
H A D | yield_precedence.phpt | 25 0 => ab 27 k => ab 29 k => ab 34 k2 => ab 39 10 => ab 40 k2 => ab 50 string(2) "ab"
|
/php-src/ext/json/tests/ |
H A D | bug43941.phpt | 7 var_dump(json_encode("ab\xE0")); 8 var_dump(json_encode("ab\xE0", JSON_PARTIAL_OUTPUT_ON_ERROR)); 9 var_dump(json_encode(array("ab\xE0", "ab\xE0c", "abc"), JSON_PARTIAL_OUTPUT_ON_ERROR));
|
H A D | bug53946.phpt | 7 var_dump(json_encode("ab\xE0")); 8 var_dump(json_encode("ab\xE0", JSON_UNESCAPED_UNICODE));
|
/php-src/ext/tokenizer/tests/ |
H A D | token_get_all_heredoc_nowdoc.phpt | 51 ab 69 ab 75 ab 93 ab 99 ab 117 ab 118 ab 124 ab 125 ab 285 ab [all …]
|
/php-src/ext/pcre/pcre2lib/ |
H A D | pcre2_valid_utf.c | 136 uint32_t ab, d; in PRIV() local 155 ab = PRIV(utf8_table4)[c & 0x3f]; /* Number of additional bytes (1-5) */ in PRIV() 156 if (length < ab) /* Missing bytes */ in PRIV() 159 switch(ab - length) in PRIV() 168 length -= ab; /* Length remaining */ in PRIV() 182 switch (ab) in PRIV() 310 if (ab > 3) in PRIV() 312 *erroroffset = (PCRE2_SIZE)(p - string) - ab; in PRIV() 313 return (ab == 4)? PCRE2_ERROR_UTF8_ERR11 : PCRE2_ERROR_UTF8_ERR12; in PRIV()
|
/php-src/ext/standard/tests/file/ |
H A D | 007_variation21.phpt | 2 Test fopen and fclose() functions - usage variations - "ab" mode 6 /* Test fopen() and fclose(): Opening the file in "ab" mode, 18 echo "*** Test fopen() & fclose() functions: with 'ab' mode ***\n"; 19 $file_handle = fopen($file, "ab"); //opening the file "ab" mode 31 fclose( fopen($file, "ab") ); //Opening the non-existing file in "ab" mode, which will be created 40 *** Test fopen() & fclose() functions: with 'ab' mode ***
|
/php-src/ext/intl/tests/ |
H A D | collator_compare.phpt | 72 array( 'ab' , 'b' ), 73 array( 'ab' , 'a' ), 94 array( 'а', 'ab' ), 121 'ab' < 'b' 122 'ab' > 'a' 134 'а' > 'ab'
|
H A D | collator_compare_variant2.phpt | 72 array( 'ab' , 'b' ), 73 array( 'ab' , 'a' ), 93 array( 'а', 'ab' ), 120 'ab' < 'b' 121 'ab' > 'a' 132 'а' < 'ab'
|
/php-src/ext/opcache/tests/jit/ |
H A D | identical_001.phpt | 20 var_dump(foo("ab", "ab")); 21 var_dump(foo("ab", "cd"));
|
H A D | fetch_dim_r_002.phpt | 13 $a = array(1,2,3,""=>4,"ab"=>5,"2x"=>6); 24 foo("ab");
|
/php-src/Zend/tests/ |
H A D | gh13142.phpt | 18 compact("\0ab"); 19 compact("ab\0"); 37 Warning: compact(): Undefined variable $%0ab in %s on line %d 39 Warning: compact(): Undefined variable $ab%0 in %s on line %d
|
/php-src/ext/standard/tests/array/ |
H A D | arsort_variation11.phpt | 21 "ab" => "ab", "abcd" => "abcd", 0 => 0.01, -0 => -0, '' => '' , 79 ["ab"]=> 80 string(2) "ab" 136 ["ab"]=> 137 string(2) "ab"
|
H A D | asort_variation11.phpt | 21 "ab" => "ab", "abcd" => "abcd", 0 => 0.01, -0 => -0, '' => '' , 57 ["ab"]=> 58 string(2) "ab" 114 ["ab"]=> 115 string(2) "ab"
|
H A D | krsort_variation8.phpt | 22 "ab" => "ab", "abcd" => "abcd", 0 => 0.01, -0 => -0, '' => '' , 80 ["ab"]=> 81 string(2) "ab" 137 ["ab"]=> 138 string(2) "ab"
|
H A D | ksort_variation8.phpt | 21 "ab" => "ab", "abcd" => "abcd", 0 => 0.01, -0 => -0, '' => '' , 57 ["ab"]=> 58 string(2) "ab" 114 ["ab"]=> 115 string(2) "ab"
|
H A D | bug79930.phpt | 23 string(2) "ab" 31 string(2) "ab"
|
/php-src/tests/basic/ |
H A D | 011.phpt | 6 ab+cd+ef+123+test 18 0: ab
|
H A D | 012.phpt | 7 ab cd ef 123 test 19 0: ab
|
/php-src/ext/standard/tests/general_functions/ |
H A D | bug50690.phpt | 5 putenv("foo=ab"); 12 string(2) "ab"
|
/php-src/ext/pcre/tests/ |
H A D | bug21732.phpt | 17 var_dump(preg_replace_callback("/(ab)(cd)(e)/", array(new foo(), "cb"), 'abcde')); 25 string(2) "ab"
|