Home
last modified time | relevance | path

Searched refs:a (Results 501 – 525 of 6311) sorted by relevance

1...<<21222324252627282930>>...253

/PHP-5.5/ext/standard/tests/strings/
H A Dsprintf_variation19.phpt69 string(10) "a-zA-Z0-9]"
84 string(10) "a-zA-Z0-9]"
99 string(10) "a-zA-Z0-9]"
114 string(10) "a-zA-Z0-9]"
129 string(10) "a-zA-Z0-9]"
144 string(10) "a-zA-Z0-9]"
159 string(10) "a-zA-Z0-9]"
174 string(10) "a-zA-Z0-9]"
189 string(10) "a-zA-Z0-9]"
204 string(10) "a-zA-Z0-9]"
[all …]
H A Dsprintf_variation21.phpt69 string(11) "a-bA-B@#$&]"
84 string(11) "a-bA-B@#$&]"
99 string(11) "a-bA-B@#$&]"
114 string(11) "a-bA-B@#$&]"
129 string(11) "a-bA-B@#$&]"
144 string(11) "a-bA-B@#$&]"
159 string(11) "a-bA-B@#$&]"
174 string(11) "a-bA-B@#$&]"
189 string(11) "a-bA-B@#$&]"
204 string(11) "a-bA-B@#$&]"
[all …]
H A Dstrtolower-win32.phpt73 0a => 0a
89 1a => 1a
105 2a => 2a
121 3a => 3a
137 4a => 6a
153 5a => 7a
169 6a => 6a
185 7a => 7a
201 8a => 9a
217 9a => 9a
[all …]
H A Dsprintf_variation27.phpt14 $char_values = array( 'a', "a", 67, -67, 99, ' ', '', 'A', "A" );
21 "%30c", "%[a-bA-B@#$&]", "%*c"
51 string(11) "a-bA-B@#$&]"
66 string(11) "a-bA-B@#$&]"
81 string(11) "a-bA-B@#$&]"
96 string(11) "a-bA-B@#$&]"
111 string(11) "a-bA-B@#$&]"
126 string(11) "a-bA-B@#$&]"
141 string(11) "a-bA-B@#$&]"
156 string(11) "a-bA-B@#$&]"
[all …]
/PHP-5.5/ext/standard/tests/array/
H A Darray_diff_ukey_variation4.phpt97 Warning: array_diff_ukey() expects parameter 3 to be a valid callback, no array or string given in …
100 Warning: array_diff_ukey() expects parameter 4 to be a valid callback, no array or string given in …
105 Warning: array_diff_ukey() expects parameter 3 to be a valid callback, no array or string given in …
108 Warning: array_diff_ukey() expects parameter 4 to be a valid callback, no array or string given in …
113 Warning: array_diff_ukey() expects parameter 3 to be a valid callback, no array or string given in …
116 Warning: array_diff_ukey() expects parameter 4 to be a valid callback, no array or string given in …
121 Warning: array_diff_ukey() expects parameter 3 to be a valid callback, no array or string given in …
124 Warning: array_diff_ukey() expects parameter 4 to be a valid callback, no array or string given in …
129 Warning: array_diff_ukey() expects parameter 3 to be a valid callback, no array or string given in …
132 Warning: array_diff_ukey() expects parameter 4 to be a valid callback, no array or string given in …
[all …]
H A Duasort_variation2.phpt6 …* Description: Sort an array with a user-defined comparison function and maintain index associatio…
102 Warning: uasort() expects parameter 2 to be a valid callback, no array or string given in %s on lin…
106 Warning: uasort() expects parameter 2 to be a valid callback, no array or string given in %s on lin…
110 Warning: uasort() expects parameter 2 to be a valid callback, no array or string given in %s on lin…
114 Warning: uasort() expects parameter 2 to be a valid callback, no array or string given in %s on lin…
118 Warning: uasort() expects parameter 2 to be a valid callback, no array or string given in %s on lin…
122 Warning: uasort() expects parameter 2 to be a valid callback, no array or string given in %s on lin…
126 Warning: uasort() expects parameter 2 to be a valid callback, no array or string given in %s on lin…
130 Warning: uasort() expects parameter 2 to be a valid callback, no array or string given in %s on lin…
150 Warning: uasort() expects parameter 2 to be a valid callback, first array member is not a valid cla…
[all …]
H A Dbug24980.phpt18 $a = array("a", "b", "c");
19 function foo ($a, $b)
21 return $a . $b;
23 var_dump(array_reduce($a, "foo"));
36 $a = array(1, 2, 3, 4, 5);
38 $b = array_reduce($a, "rsum");
39 $c = array_reduce($a, "rmul", 10);
H A Darray_merge_recursive_variation9.phpt20 $arr1 = array("a" => 1, "b" => 2);
26 $arr1 = array("a" => 1.1, "b" => 2.2);
32 $arr1 = array("a" => "hello", "b" => "world");
38 $arr1 = array("a" => true, "b" => false);
44 $arr1 = array( "a" => NULL);
45 $arr2 = array( "a" => NULL);
55 ["a"]=>
69 ["a"]=>
83 ["a"]=>
97 ["a"]=>
[all …]
H A Dbug44182.phpt5 $a = array('foo' => 'original.foo');
7 $nonref = $a['foo'];
8 $ref = &$a;
10 extract($a, EXTR_REFS);
11 $a['foo'] = 'changed.foo';
H A Dextract_variation10.phpt5 $a = array('foo' => 'original.foo');
6 $nonref = $a['foo'];
7 $ref = &$a;
8 extract($a, EXTR_REFS);
9 $a['foo'] = 'changed.foo';
H A Dend_variation2.phpt12 * 1. a two-dimensional array
13 * 2. a sub-array
19 $array_arg = array ('a' => 'z', array(9, 8, 7));
21 echo "\n-- Pass a two-dimensional array as \$array_arg --\n";
24 echo "\n-- Pass a sub-array as \$array_arg --\n";
31 -- Pass a two-dimensional array as $array_arg --
41 -- Pass a sub-array as $array_arg --
/PHP-5.5/tests/lang/operators/
H A DbitwiseXor_variationStr.phpt48 --- testing: '0' ^ '3.4a' ---
76 --- testing: '65' ^ '3.4a' ---
89 string(6) "00031a"
104 --- testing: '-44' ^ '3.4a' ---
132 --- testing: '1.2' ^ '3.4a' ---
141 string(6) "00031a"
160 --- testing: '-7.7' ^ '3.4a' ---
188 --- testing: 'abc' ^ '3.4a' ---
360 --- testing: '3.4a' ^ '0' ---
362 --- testing: '3.4a' ^ '65' ---
[all …]
/PHP-5.5/ext/pcre/tests/
H A Dpreg_replace_error1.phpt15 '/[a-zA-Z]', //Regex without closing delimiter
16 '[a-zA-Z]/', //Regex without opening delimiter
17 '/[a-zA-Z]/F', array('[a-z]', //Array of Regexes
18 '[A-Z]', '[0-9]'), '/[a-zA-Z]/', //Regex string
21 $subject = 'a';
37 Arg value is /[a-zA-Z]
42 Arg value is [a-zA-Z]/
47 Arg value is /[a-zA-Z]/F
53 string(1) "a"
55 Arg value is /[a-zA-Z]/
/PHP-5.5/ext/phar/tests/
H A Daddfuncs.phpt12 $phar->addFromString('a', 'hi');
13 echo file_get_contents($pname . '/a') . "\n";
14 $phar->addFile($pname . '/a', 'b');
17 $phar->addFile($pname . '/a');
22 $phar->addFile($pname . '/a', 'a');
32 $phar->addFile($pname . '/a', '.phar/stub.php');
48 …y phar://%saddfuncs.phar.php/a does not exist and cannot be created: phar error: invalid path "pha…
49 Entry a does not exist and cannot be created: phar error: file "a" in phar "%saddfuncs.phar.php" ca…
H A Dbug47085.phpt12 $phar = new Phar($fname, 0, 'a.phar');
15 rename("phar://a.phar/x", "phar://a.phar/y");
16 var_dump(rename("phar://a.phar/x", "phar://a.phar/y"));
22 Warning: rename(): phar error: cannot rename "phar://a.phar/x" to "phar://a.phar/y" from extracted …
/PHP-5.5/ext/hash/
H A Dhash_tiger.c38 aa = a; \
55 round(a,b,c,x0,mul) \
62 round(b,c,a,x7,mul)
83 a ^= aa; \
89 pass(a,b,c,5) \
91 pass(c,a,b,7) \
93 pass(b,c,a,9) \
96 pass(a,b,c,9) \
97 tmpa=a; a=c; c=b; b=tmpa; \
125 a = state[0]; \
[all …]
/PHP-5.5/ext/standard/tests/time/
H A Didate.phpt7 for($a = 0;$a < strlen($tmp); $a++){
8 echo $tmp[$a], ': ', idate($tmp[$a], 1043324459)."\n";
/PHP-5.5/ext/simplexml/tests/
H A Dbug38354.phpt10 <a href="javascript:alert(\'1\');"><strong>Item Two</strong></a>
23 <a href="javascript:alert('1');"><strong>Item Two</strong></a>
26 string(62) "<a href="javascript:alert('1');"><strong>Item Two</strong></a>"
/PHP-5.5/main/
H A Dwin95nt.h47 #define mkdir(a, b) _mkdir(a) argument
48 #define rmdir(a) _rmdir(a) argument
52 # define getcwd(a, b) _getcwd(a, b) argument
/PHP-5.5/ext/openssl/tests/
H A D008.phpt8 $a = fread($fp,8192);
13 $d = openssl_x509_read($a);
16 var_dump(openssl_x509_export($a, $output)); // read cert as a binary string
17 var_dump(openssl_x509_export($b, $output2)); // read cert from a filename string
19 var_dump(openssl_x509_export($d, $output4)); // read cert from a resource
24 die("failed to get a temporary filename!");
28 var_dump(openssl_x509_export_to_file($a, $outfilename)); // read cert as a binary string
29 var_dump(openssl_x509_export_to_file($b, $outfilename)); // read cert from a filename string
31 var_dump(openssl_x509_export_to_file($d, $outfilename)); // read cert from a resource
41 var_dump(strcmp($output, $a));
/PHP-5.5/ext/spl/tests/
H A Dbug45826.phpt72 string(84) "C:11:"ArrayObject":60:{x:i:0;a:3:{i:0;O:8:"stdClass":0:{}i:1;r:4;i:2;r:1;};m:a:0:{}}"
73 string(125) "x:i:0;a:3:{i:0;O:8:"stdClass":0:{}i:1;r:3;i:2;C:11:"ArrayObject":45:{x:i:0;a:3:{i:0;r:…
82 string(85) "C:12:"ArrayObject2":60:{x:i:0;a:3:{i:0;O:8:"stdClass":0:{}i:1;r:4;i:2;r:1;};m:a:0:{}}"
83 string(126) "x:i:0;a:3:{i:0;O:8:"stdClass":0:{}i:1;r:3;i:2;C:12:"ArrayObject2":45:{x:i:0;a:3:{i:0;r…
H A Dbug64023.phpt10 $a = new A('/');
13 echo $a, $a->__toString(), $a->__toString() . '', "\n";
16 echo $a . '', "\n";
/PHP-5.5/tests/lang/
H A D002.phpt5 $a=1;
6 while ($a<10) {
7 echo $a;
8 $a++;
/PHP-5.5/Zend/tests/
H A D007.phpt13 $var = array("a"=>1,"b"=>2,"c"=>3);
16 $a = array(1);
17 $a [] =&$a[0];
19 var_dump(each($a));
49 string(1) "a"
51 string(1) "a"
H A Dbug43344_1.phpt6 function f1($a=bar) {
7 return $a;
9 function f2($a=array(bar)) {
10 return $a[0];
12 function f3($a=array(bar=>0)) {
13 reset($a);
14 return key($a);

Completed in 71 milliseconds

1...<<21222324252627282930>>...253