Home
last modified time | relevance | path

Searched refs:a (Results 176 – 200 of 5714) sorted by relevance

12345678910>>...229

/PHP-5.3/ext/standard/tests/array/
H A Dbug25708.phpt20 $a = NULL;
24 debug_zval_dump($a, $b, $GLOBALS['a'], $GLOBALS['b']);
27 $a = &$GLOBALS['a'];
32 debug_zval_dump($a, $b, $GLOBALS['a'], $GLOBALS['b']);
34 $a = &$GLOBALS['a'];
36 debug_zval_dump($a, $b, $GLOBALS['a'], $GLOBALS['b']);
39 debug_zval_dump($a, $b, $GLOBALS['a'], $GLOBALS['b']);
41 $a = 4;
57 $a = 'ok';
59 $_a = $a;
[all …]
/PHP-5.3/ext/pcre/tests/
H A Dpreg_replace_callback3.phpt11 $a = 5;
12 var_dump(preg_replace_callback(1,2,3,4,$a));
13 $a = "";
14 var_dump(preg_replace_callback("","","","",$a));
15 $a = array();
16 var_dump(preg_replace_callback($a,$a,$a,$a,$a));
30 Warning: preg_replace_callback(): Requires argument 2, '2', to be a valid callback in %s on line %d
33 Warning: preg_replace_callback(): Requires argument 2, '2', to be a valid callback in %s on line %d
36 Warning: preg_replace_callback(): Requires argument 2, '2', to be a valid callback in %s on line %d
/PHP-5.3/tests/lang/
H A D017.phpt5 $a = 1;
6 function Test ($a) {
7 if ($a<3) {
12 if ($a < Test($a)) {
13 echo "$a\n";
14 $a++;
H A DforeachLoop.011.phpt2 Changing from an interable type to a non iterable type during the iteration
6 $a = array(1,2,3);
7 $b=&$a;
8 foreach ($a as $v) {
14 $a = new stdClass;
15 $a->a=1;
16 $a->b=2;
17 $b=&$a;
18 foreach ($a as $v) {
H A Dengine_assignExecutionOrder_004.phpt22 global $a;
23 $a = array(10, 11, 12, 13, 14);
28 $a = 0; // $a should not be indexable till the i4 has been executed
29 list($a[i1()+i2()], , list($a[i3()], $a[i4()]), $a[]) = array (0, 1, array(30, 40), 3, 4);
31 var_dump($a);
/PHP-5.3/ext/phar/tests/tar/files/
H A Dfrontcontroller5.phar.inc3 $a = new Phar(dirname(__FILE__) . '/frontcontroller5.phar.tar');
4 $a['a.php'] = 'hio';
5 $a['a.jpg'] = 'hio';
6 $a['a.phps'] = '<?php function hio(){}';
7 $a->setStub('<?php
H A Dfrontcontroller6.phar.inc3 $a = new Phar(dirname(__FILE__) . '/frontcontroller6.phar.tar');
4 $a['a.php'] = 'hio';
5 $a['a.jpg'] = 'hio';
6 $a['a.phps'] = '<?php function hio(){}';
7 $a->setStub('<?php
H A Dfrontcontroller7.phar.inc3 $a = new Phar(dirname(__FILE__) . '/frontcontroller7.phar.tar');
4 $a['a.php'] = 'hio';
5 $a['a.jpg'] = 'hio';
6 $a['a.phps'] = '<?php function hio(){}';
7 $a->setStub('<?php
/PHP-5.3/ext/phar/tests/zip/files/
H A Dfrontcontroller5.phar.inc3 $a = new Phar(dirname(__FILE__) . '/frontcontroller5.phar.zip');
4 $a['a.php'] = 'hio';
5 $a['a.jpg'] = 'hio';
6 $a['a.phps'] = '<?php function hio(){}';
7 $a->setStub('<?php
H A Dfrontcontroller6.phar.inc3 $a = new Phar(dirname(__FILE__) . '/frontcontroller6.phar.zip');
4 $a['a.php'] = 'hio';
5 $a['a.jpg'] = 'hio';
6 $a['a.phps'] = '<?php function hio(){}';
7 $a->setStub('<?php
H A Dfrontcontroller7.phar.inc3 $a = new Phar(dirname(__FILE__) . '/frontcontroller7.phar.zip');
4 $a['a.php'] = 'hio';
5 $a['a.jpg'] = 'hio';
6 $a['a.phps'] = '<?php function hio(){}';
7 $a->setStub('<?php
H A Dcorrupt_count1.php.inc3 $a = new corrupt_zipmaker;
4 $a->addFile('hi', null, 'hii');
5 $a->addFile('hi2', null, 'hii2');
6 $a->writeZip(dirname(__FILE__) . '/count1.zip', 'count1');
7 $a->writeZip(dirname(__FILE__) . '/count2.zip', 'count2');
8 $a->writeZip(dirname(__FILE__) . '/nozipend.zip', 'none');
9 $a->writeZip(dirname(__FILE__) . '/filecomment.zip', 'comment');
10 $a->writeZip(dirname(__FILE__) . '/cdir_offset.zip', 'cdir_offset');
/PHP-5.3/Zend/tests/
H A Dbug38469.phpt5 $a = array();
6 $a[0] = $a;
7 var_dump($a);
13 $a = array();
14 $a[0] = $a;
15 var_dump($a);
H A Dgc_005.phpt7 $a = new stdClass();
8 $a->a = $a;
9 var_dump($a);
10 unset($a);
16 ["a"]=>
H A Dgc_021.phpt7 $a = array();
8 $a[0] =& $a;
9 $a[1] = array();
10 $a[1][0] =& $a[1];
12 $a =& $b;
/PHP-5.3/ext/standard/tests/file/
H A Dfputcsv_variation2.phpt34 "a+", "a+b", "a+t",
102 -- file opened in a+ --
110 -- file opened in a+b --
118 -- file opened in a+t --
198 -- file opened in a+ --
206 -- file opened in a+b --
214 -- file opened in a+t --
294 -- file opened in a+ --
390 -- file opened in a+ --
486 -- file opened in a+ --
[all …]
H A Dfputcsv_variation3.phpt34 "a+", "a+b", "a+t",
102 -- file opened in a+ --
110 -- file opened in a+b --
118 -- file opened in a+t --
198 -- file opened in a+ --
206 -- file opened in a+b --
214 -- file opened in a+t --
294 -- file opened in a+ --
390 -- file opened in a+ --
486 -- file opened in a+ --
[all …]
H A Dfputcsv_variation4.phpt34 "a+", "a+b", "a+t",
102 -- file opened in a+ --
110 -- file opened in a+b --
118 -- file opened in a+t --
198 -- file opened in a+ --
206 -- file opened in a+b --
214 -- file opened in a+t --
294 -- file opened in a+ --
390 -- file opened in a+ --
486 -- file opened in a+ --
[all …]
H A Dfscanf_variation26.phpt8 Description: Parses input from a file according to a format
17 // create a file
24 $char_types = array( 'a', "a", 67, -67, 99 );
74 string(1) "a"
78 string(1) "a"
97 string(1) "a"
101 string(1) "a"
120 string(1) "a"
124 string(1) "a"
143 string(1) "a"
[all …]
/PHP-5.3/ext/pcre/pcrelib/testdata/
H A Dtestoutput5630 0: a\x{0a}b
654 0: a\x{0a}b
672 0: a\x{0a}b
694 0: a\x{0a}b
700 0: a\x{0d}\x{0a}\x{0d}\x{0a}b
702 0: a\x{0d}\x{0a}\x{0d}\x{0a}\x{0d}\x{0a}b
704 0: a\x{0a}\x{0d}\x{0a}\x{0d}b
706 0: a\x{0a}\x{0a}\x{0d}\x{0a}b
814 0: a\x{0a}b
832 0: a\x{0a}b
[all …]
/PHP-5.3/ext/standard/tests/strings/
H A Daddcslashes_001.phpt15 "a",
20 "\a",
40 string(36) "goodyear12345NULL�truefalse\a \b
44 string(37) "goodyear1\2345NULL�truefalse\a \b
52 string(39) "goodye\ar12345NULL�truef\alse\\a \b
60 string(37) "goodyear12345NULL�truefalse\a \b\n
63 string(37) "goodyear12345NULL�truefalse\a \b
66 string(37) "goodyear12345NULL�truefalse\a \b
74 string(37) "goodyear12345NULL�truefalse\a\v \b
78 string(39) "goodyear12345NULL�truefalse\\a \\\b
[all …]
H A Dbug51899.phpt6 var_dump(parse_ini_string('a='));
7 var_dump(parse_ini_string('a= '));
8 var_dump(parse_ini_string('a='.PHP_EOL));
9 var_dump(parse_ini_string('a=b '));
17 ["a"]=>
21 ["a"]=>
25 ["a"]=>
29 ["a"]=>
/PHP-5.3/ext/date/tests/
H A Dsunfuncts.phpt8 for($a=1;$a<=12;$a++){
9 echo date_sunrise(mktime(1,1,1,$a,1,2003),SUNFUNCS_RET_TIMESTAMP,31.76670,35.23330,90.83,2)." ";
10 echo date_sunrise(mktime(1,1,1,$a,1,2003),SUNFUNCS_RET_STRING,31.76670,35.23330,90.83,2)." ";
11 echo date_sunrise(mktime(1,1,1,$a,1,2003),SUNFUNCS_RET_DOUBLE,31.76670,35.23330,90.83,2)."\n";
13 echo date_sunset(mktime(1,1,1,$a,1,2003),SUNFUNCS_RET_TIMESTAMP,31.76670,35.23330,90.83,2)." ";
14 echo date_sunset(mktime(1,1,1,$a,1,2003),SUNFUNCS_RET_STRING,31.76670,35.23330,90.83,2)." ";
15 echo date_sunset(mktime(1,1,1,$a,1,2003),SUNFUNCS_RET_DOUBLE,31.76670,35.23330,90.83,2)."\n";
/PHP-5.3/ext/gd/tests/
H A Dgd_info_variation1.phpt28 string(%d) %a
30 bool%a
32 bool%a
34 bool%a
36 bool%a
38 bool%a
40 bool%a
42 bool%a
44 bool%a
46 bool%a
[all …]
/PHP-5.3/ext/phar/tests/
H A Dmkdir.phpt14 $a = new Phar($fname);
15 $a['a'] = 'hi';
16 mkdir($pname . '/a');
19 rmdir($pname . '/a');
20 $a->addEmptyDir('bb');
21 $a->addEmptyDir('bb');
23 $a->addEmptyDir('.phar');
39 …): phar error: cannot create directory "a" in phar "%smkdir.phar.php", phar error: path "a" exists…
45 …): phar error: cannot remove directory "a" in phar "%smkdir.phar.php", phar error: path "a" exists…
46 Cannot create a directory in magic ".phar" directory

Completed in 104 milliseconds

12345678910>>...229