/php-src/ext/json/tests/ |
H A D | bug46944.phpt | 17 "aa\ud83f\udffdzz" 18 "aa\ud87f\udffdzz" 19 "aa\ud8bf\udffdzz" 20 "aa\ud8ff\udffdzz" 21 "aa\ud93f\udffdzz" 22 "aa\ud97f\udffdzz" 23 "aa\ud9bf\udffdzz" 24 "aa\ud9ff\udffdzz" 25 "aa\uda3f\udffdzz" 26 "aa\uda7f\udffdzz" [all …]
|
/php-src/ext/standard/tests/strings/ |
H A D | html_entity_decode1.phpt | 23 "&aa&", 24 "&aa$", 25 "&aa;&", 26 "&aa;$", 62 &aa& 63 &aa$ 64 &aa;& 65 &aa;$
|
H A D | bug36148.phpt | 5 $values = array("a", "aa", "aaa", "aaaa"); 18 aa: array(1) { 20 string(2) "aa"
|
/php-src/ext/pcre/tests/ |
H A D | ungreedy.phpt | 6 var_dump(preg_match('/<.*>/', '<aa> <bb> <cc>', $m)); 9 var_dump(preg_match('/<.*>/U', '<aa> <bb> <cc>', $m)); 12 var_dump(preg_match('/(?U)<.*>/', '<aa> <bb> <cc>', $m)); 20 string(14) "<aa> <bb> <cc>" 25 string(4) "<aa>" 30 string(4) "<aa>"
|
H A D | bug69864.phpt | 18 }, 'aa')); 24 }, 'aa')); 30 }, 'aa')); 36 }, 'aa'));
|
/php-src/Zend/tests/ |
H A D | bug71731.phpt | 29 $aa = new AA; 30 var_dump(isset($aa[0][1][2])); 31 var_dump(isset($aa[0]->foo)); 32 var_dump($aa[0] ?? 42); 33 var_dump($aa[0][1][2] ?? 42); 35 $aa[0] = new AA; 36 $aa[0][1] = new AA; 37 var_dump(isset($aa[0][1][2])); 38 var_dump($aa[0][1][2] ?? 42);
|
H A D | bug71359.phpt | 28 $aa = new AA; 29 var_dump(isset($aa->zero->one->two)); 30 var_dump(isset($aa->zero->foo)); 31 var_dump($aa->zero ?? 42); 32 var_dump($aa->zero->one->two ?? 42); 33 $aa->zero = new AA; 34 $aa->zero->one = new AA; 35 var_dump(isset($aa->zero->one->two)); 36 var_dump($aa->zero->one->two ?? 42);
|
H A D | ArrayAccess_indirect_append.phpt | 22 $aa = new AA; 23 $aa[3] = 1; 24 $aa[][][0] = 2; 25 var_dump($aa);
|
H A D | bug48228.phpt | 10 class aa 21 $l_aa=new aa(); 29 #1 %s(%d): aa->dosome()
|
H A D | get_class_vars_007.phpt | 7 static public $a, $aa; 24 ["aa"]=> 30 ["aa"]=>
|
H A D | get_class_methods_003.phpt | 7 function aa(); 23 public function aa() { } 43 string(2) "aa" 51 string(2) "aa"
|
/php-src/ext/filter/tests/ |
H A D | 033.phpt | 17 …om http://a.b.c 1.2.3.4 123 123abc<>() O'Henry 하퍼 aa:bb:cc:dd:ee:ff 21 … aa:bb:cc:dd:ee:ff 22 …om http://a.b.c 1.2.3.4 123 123abc() O'Henry 하퍼 aa:bb:cc:dd:ee:ff 23 …om http://a.b.c 1.2.3.4 123 123abc() O'Henry 하퍼 aa:bb:cc:dd:ee:ff 25 …om http://a.b.c 1.2.3.4 123 123abc<>() O'Henry 하퍼 aa:bb:cc:dd:ee:ff 26 …om http://a.b.c 1.2.3.4 123 123abc<>() O'Henry 하퍼 aa:bb:cc:dd:ee:ff 27 …om http://a.b.c 1.2.3.4 123 123abc<>() O'Henry 하퍼 aa:bb:cc:dd:ee:ff 29 … http://a.b.c 1.2.3.4 123 123abc<>() O'Henry aa:bb:cc:dd:ee:ff 32 …om http://a.b.c 1.2.3.4 123 123abc<>() O\'Henry 하퍼 aa:bb:cc:dd:ee:ff
|
/php-src/ext/standard/tests/array/sort/ |
H A D | array_multisort_variation5.phpt | 7 $ar = array( 2, "aa" , "1"); 28 string(2) "aa" 36 string(2) "aa" 40 string(2) "aa"
|
H A D | array_multisort_variation6.phpt | 7 $ar = array( 2, "aa" , "1"); 24 string(2) "aa" 32 string(2) "aa" 44 string(2) "aa"
|
H A D | bug36975.phpt | 5 $a = array('aa', 'aa', 'bb', 'bb', 'cc', 'cc'); 31 string(2) "aa" 33 string(2) "aa"
|
/php-src/ext/hash/ |
H A D | hash_ripemd.c | 232 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD128Transform() 239 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD128Transform() 246 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD128Transform() 253 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD128Transform() 257 state[1] = state[2] + d + aa; in RIPEMD128Transform() 324 aa = dd; dd = cc; cc = bb; bb = tmp; in RIPEMD256Transform() 326 tmp = a; a = aa; aa = tmp; in RIPEMD256Transform() 356 state[4] += aa; in RIPEMD256Transform() 456 state[2] = state[3] + e + aa; in RIPEMD160Transform() 541 tmp = a; a = aa; aa = tmp; in RIPEMD320Transform() [all …]
|
/php-src/ext/standard/tests/array/ |
H A D | bug24198.phpt | 5 $c = array('a' => 'aa','b' => 'bb'); 14 string(2) "aa" 16 string(2) "aa"
|
/php-src/Zend/tests/traits/ |
H A D | bug76700.phpt | 7 protected function aa() { echo 123; } 13 aa as public; 28 $b->aa();
|
/php-src/ext/intl/tests/ |
H A D | grapheme.phpt | 1002 substring of "aa%CC%8Abco%CC%88Opq" from "0" - grapheme_substr = aa%CC%8Abco%CC%88Opq == aa%CC%8Abc… 1006 substring of "aa%CC%8Abco%CC%88Opq" from "0" - grapheme_substr with length -4 = aa%CC%8Abc == aa%CC… 1007 substring of "aa%CC%8Abco%CC%88Opq" from "0" - grapheme_substr with length -5 = aa%CC%8Ab == aa%CC%… 1008 substring of "aa%CC%8Abco%CC%88Opq" from "0" - grapheme_substr with length -6 = aa%CC%8A == aa%CC%8A 1012 substring of "aa%CC%8Abco%CC%88Opq" from "-8" - grapheme_substr = aa%CC%8Abco%CC%88Opq == aa%CC%8Ab… 1025 substring of "aa%CC%8Abco%CC%88Opq" from "-8" - grapheme_substr with length 4 = aa%CC%8Abc == aa%CC… 1026 substring of "aa%CC%8Abco%CC%88Opq" from "-8" - grapheme_substr with length 3 = aa%CC%8Ab == aa%CC%… 1027 substring of "aa%CC%8Abco%CC%88Opq" from "-8" - grapheme_substr with length 2 = aa%CC%8A == aa%CC%8A 1034 substring of "aa%CC%8Abco%CC%88Opq" from "-8" - grapheme_substr with length -4 = aa%CC%8Abc == aa%C… 1035 substring of "aa%CC%8Abco%CC%88Opq" from "-8" - grapheme_substr with length -5 = aa%CC%8Ab == aa%CC… [all …]
|
H A D | grapheme2.phpt | 990 substring of "aa%CC%8Abco%CC%88Opq" from "0" - grapheme_substr = aa%CC%8Abco%CC%88Opq == aa%CC%8Abc… 994 substring of "aa%CC%8Abco%CC%88Opq" from "0" - grapheme_substr with length -4 = aa%CC%8Abc == aa%CC… 995 substring of "aa%CC%8Abco%CC%88Opq" from "0" - grapheme_substr with length -5 = aa%CC%8Ab == aa%CC%… 996 substring of "aa%CC%8Abco%CC%88Opq" from "0" - grapheme_substr with length -6 = aa%CC%8A == aa%CC%8A 1000 substring of "aa%CC%8Abco%CC%88Opq" from "-8" - grapheme_substr = aa%CC%8Abco%CC%88Opq == aa%CC%8Ab… 1013 substring of "aa%CC%8Abco%CC%88Opq" from "-8" - grapheme_substr with length 4 = aa%CC%8Abc == aa%CC… 1014 substring of "aa%CC%8Abco%CC%88Opq" from "-8" - grapheme_substr with length 3 = aa%CC%8Ab == aa%CC%… 1015 substring of "aa%CC%8Abco%CC%88Opq" from "-8" - grapheme_substr with length 2 = aa%CC%8A == aa%CC%8A 1022 substring of "aa%CC%8Abco%CC%88Opq" from "-8" - grapheme_substr with length -4 = aa%CC%8Abc == aa%C… 1023 substring of "aa%CC%8Abco%CC%88Opq" from "-8" - grapheme_substr with length -5 = aa%CC%8Ab == aa%CC… [all …]
|
/php-src/ext/mbstring/tests/ |
H A D | mb_convert_variables.phpt | 55 $aa = $a; 56 $encoding = mb_convert_variables('EUC-JP', 'auto', $aa); 58 echo bin2hex("{$aa[0]}{$aa[1]}{$aa[2]}"), "\n"; // Converted to EUC-JP 61 $aa = $a; 62 $encoding = mb_convert_variables('EUC-JP', 'auto', $aa); 64 echo bin2hex("{$aa[0]}{$aa[1]}{$aa[2]}"), "\n"; // Converted to EUC-JP 119 $aa = $a; 122 $encoding = mb_convert_variables('EUC-JP', 'auto', $s1, $s2, $s3, $aa, $oo); 125 echo bin2hex("{$aa[0]}{$aa[1]}{$aa[2]}"), "\n"; // Converted to EUC-JP
|
H A D | mb_ereg_replace_named_subpatterns.phpt | 17 …echo mb_ereg_replace('(1)(2)(3)(4)(5)(6)(7)(8)(9)(a)(\10)', '\k<0>-\k<10>-', '123456789aa'), PHP_E… 19 …echo mb_ereg_replace('(1)(2)(3)(4)(5)(6)(7)(8)(9)(a)(\10)', "\k'0'-\k'10'-", '123456789aa'), PHP_E… 32 123456789aa-a- 33 123456789aa-a-
|
/php-src/ext/standard/tests/serialize/ |
H A D | bug70513.phpt | 19 $obj->aa = 1; 22 $inner = 's:1:"1";a:3:{s:2:"aa";s:2:"hi";s:2:"bb";s:2:"hi";i:0;O:3:"obj":1:{s:4:"ryat";R:2;}}'; 35 ["aa"]=>
|
/php-src/ext/standard/tests/general_functions/ |
H A D | bug60723.phpt | 11 echo $aa; 17 Warning: Undefined variable $aa in %s on line %d 18 [%s ASIA/Chongqing] PHP Warning: Undefined variable $aa in %s on line %d
|
/php-src/ext/standard/tests/streams/ |
H A D | bug72534.phpt | 5 $fname = __DIR__ . '/aa.tmp'; 13 $fname = __DIR__ . '/aa.tmp';
|