Home
last modified time | relevance | path

Searched refs:a (Results 276 – 300 of 6183) sorted by relevance

1...<<11121314151617181920>>...248

/PHP-5.5/ext/phar/tests/cache_list/files/
H A Dfrontcontroller4.phar2 function s($a)
5 if (isset($b[$a])) return $b[$a];
6 return $a;
12 v���������������������a.php���?�kJ�����ж���������a.jpg���?�kJ�����ж���������a.phps���?…
/PHP-5.5/ext/phar/tests/
H A Dphar_buildfromiterator7.phpt12 var $a;
13 function __construct(array $a)
15 $this->a = $a;
19 return next($this->a);
23 return current($this->a);
27 return key($this->a);
31 return current($this->a);
35 return reset($this->a);
41 …var_dump($phar->buildFromIterator(new myIterator(array('a' => basename(__FILE__, 'php') . '/oopsie…
59 Iterator myIterator returned a file that could not be opened "phar_buildfromiterator7./oopsie/there…
H A Dphar_oo_uncompressall.phpt16 $files['a'] = 'a';
24 var_dump(file_get_contents($pname . '/a'));
25 var_dump($phar['a']->isCompressed());
33 var_dump(file_get_contents($pname . '/a'));
44 var_dump(file_get_contents($pname . '/a'));
45 var_dump($phar['a']->isCompressed());
47 var_dump($phar['a']->isCompressed());
49 var_dump($phar['a']->isCompressed());
59 string(1) "a"
65 string(1) "a"
[all …]
H A Ddelete.phpt17 $files['a'] = 'a';
22 echo file_get_contents($pname . '/a') . "\n";
23 $phar->delete('a');
24 echo file_get_contents($pname . '/a') . "\n";
29 a
31 …arning: file_get_contents(phar://%sdelete.phar.php/a): failed to open stream: phar error: "a" is n…
/PHP-5.5/ext/phar/tests/tar/
H A Dphar_buildfromiterator7.phpt12 var $a;
13 function __construct(array $a)
15 $this->a = $a;
19 return next($this->a);
23 return current($this->a);
27 return key($this->a);
31 return current($this->a);
35 return reset($this->a);
41 …var_dump($phar->buildFromIterator(new myIterator(array('a' => basename(__FILE__, 'php') . '/oopsie…
59 Iterator myIterator returned a file that could not be opened "phar_buildfromiterator7./oopsie/there…
H A Dphar_buildfromiterator4.phpt12 var $a;
13 function __construct(array $a)
15 $this->a = $a;
19 return next($this->a);
23 return current($this->a);
27 return key($this->a);
31 return current($this->a);
35 return reset($this->a);
41 …var_dump($phar->buildFromIterator(new myIterator(array('a' => basename(__FILE__, 'php') . 'phpt'))…
62 ["a"]=>
H A Ddelete.phpt18 $phar['a'] = 'a';
22 echo file_get_contents($alias . '/a') . "\n";
23 $phar->delete('a');
24 echo file_get_contents($alias . '/a') . "\n";
30 a
32 …arning: file_get_contents(phar://%sdelete.phar.tar/a): failed to open stream: phar error: "a" is n…
/PHP-5.5/ext/phar/tests/zip/
H A Dphar_buildfromiterator4.phpt12 var $a;
13 function __construct(array $a)
15 $this->a = $a;
19 return next($this->a);
23 return current($this->a);
27 return key($this->a);
31 return current($this->a);
35 return reset($this->a);
41 …var_dump($phar->buildFromIterator(new myIterator(array('a' => basename(__FILE__, 'php') . 'phpt'))…
62 ["a"]=>
H A Dphar_buildfromiterator7.phpt12 var $a;
13 function __construct(array $a)
15 $this->a = $a;
19 return next($this->a);
23 return current($this->a);
27 return key($this->a);
31 return current($this->a);
35 return reset($this->a);
41 …var_dump($phar->buildFromIterator(new myIterator(array('a' => basename(__FILE__, 'php') . '/oopsie…
59 Iterator myIterator returned a file that could not be opened "phar_buildfromiterator7./oopsie/there…
H A Ddelete.phpt18 $phar['a'] = 'a';
22 echo file_get_contents($alias . '/a') . "\n";
23 $phar->delete('a');
24 echo file_get_contents($alias . '/a') . "\n";
29 a
31 …arning: file_get_contents(phar://%sdelete.phar.zip/a): failed to open stream: phar error: "a" is n…
/PHP-5.5/Zend/tests/
H A Ddereference_009.phpt8 $a = array();
10 function &a() {
11 return $GLOBALS['a'];
14 var_dump($h =& a());
16 var_dump(a()[0]);
19 var_dump(a()[1][0][0]);
H A Dgc_010.phpt7 $a = array();
8 $a[] =& $a;
9 var_dump($a);
10 $a[] =& $GLOBALS;
11 unset($a);
H A Dlist_002.phpt8 $a = new stdclass;
9 $b =& $a;
11 list($a, list($b)) = array($a, array($b));
12 var_dump($a, $b, $a === $b);
/PHP-5.5/ext/spl/tests/
H A Drecursive_tree_iterator_006.phpt10 "a",
13 "a" => array(
64 [0] => | |-a
66 [a] => \-Array
74 [| |-0] => a
76 [\-a] => Array
84 [0] => a
86 [a] => Array
94 [| |-0] => | |-a
96 [\-a] => \-Array
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dstrip_tags_basic2.phpt8 * Description: Strips HTML and PHP tags from a string
15 $string = "<html><p>hello</p><b>world</b><a href=\"#fragment\">Other text</a></html><?php echo hell…
22 "<a>",
23 '<a>',
26 "<html><p><a><?php"
52 string(44) "helloworld<a href="#fragment">Other text</a>"
54 string(44) "helloworld<a href="#fragment">Other text</a>"
60 string(64) "<html><p>hello</p>world<a href="#fragment">Other text</a></html>"
/PHP-5.5/tests/lang/
H A DforeachLoop.010.phpt7 $a = array(1,2,3);
8 $container = array(&$a);
11 // "Unless the array is referenced, foreach operates on a copy of
13 // At this point, the array $a is referenced.
15 // The following line ensures $a is no longer references as a consequence
19 // At this point the array $a is no longer referenced, so foreach should operate on a copy of the a…
21 // Consequently, $a thinks it is still referenced, and foreach will operate on the array itself.
22 // This provokes a difference in behaviour when changing the number of elements in the array while
26 foreach ($a as $v) {
27 array_push($a, 'new');
H A DpassByReference_006.phpt37 refs($u1[0], $u2[0][1], $u3->a, $u4->a->b, $u5->a->b->c);
42 C::refs($u1[0], $u2[0][1], $u3->a, $u4->a->b, $u5->a->b->c);
47 $c = new C($u1[0], $u2[0][1], $u3->a, $u4->a->b, $u5->a->b->c);
52 $c->refs($u1[0], $u2[0][1], $u3->a, $u4->a->b, $u5->a->b->c);
71 ["a"]=>
75 ["a"]=>
82 ["a"]=>
107 ["a"]=>
111 ["a"]=>
118 ["a"]=>
[all …]
/PHP-5.5/ext/phar/tests/files/
H A Dfrontcontroller4.phar2 function s($a)
5 if (isset($b[$a])) return $b[$a];
6 return $a;
12 v���������������������a.php���_WjJ�����ж���������a.jpg���_WjJ�����ж���������a.phps���_…
/PHP-5.5/ext/mysqli/tests/
H A Dclient-cert.pem15 00:cc:9a:37:49:13:66:dc:cf:e3:0b:13:a1:23:ed:
16 78:db:4e:bd:11:f6:8c:0d:76:f9:a3:32:56:9a:f8:
17 a1:21:6a:55:4e:4d:3f:e6:67:9d:26:99:b2:cd:a4:
18 9a:d2:2b:59:5c:d7:8a:d3:60:68:f8:18:bd:c5:be:
19 15:e1:2a:3c:a3:d4:61:cb:f5:11:94:17:81:81:f7:
20 87:8c:f6:6a:d2:ee:d8:e6:77:f6:62:66:4d:2e:16:
21 8d:08:81:4a:c9:c6:4b:31:e5:b9:c7:8a:84:96:48:
27 34:87:10:03:7d:da:15:8b:bd:19:b8:1a:56:31:e7:85:49:81:
30 89:9c:d2:cd:60:95:20:ba:8e:e3:7c:e6:df:76:3a:7c:89:77:
31 02:94:86:11:3a:c4:61:7d:6f:71:83:21:8a:17:fb:17:e2:ee:
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Dfputcsv_variation14.phpt66 // write to a file in csv format
89 Notice: fputcsv(): delimiter must be a single character in %s on line %d
91 Notice: fputcsv(): enclosure must be a single character in %s on line %d
99 Notice: fputcsv(): delimiter must be a single character in %s on line %d
101 Notice: fputcsv(): enclosure must be a single character in %s on line %d
109 Notice: fputcsv(): delimiter must be a single character in %s on line %d
111 Notice: fputcsv(): enclosure must be a single character in %s on line %d
119 Notice: fputcsv(): delimiter must be a single character in %s on line %d
121 Notice: fputcsv(): enclosure must be a single character in %s on line %d
129 Notice: fputcsv(): delimiter must be a single character in %s on line %d
[all …]
H A Dfgetcsv_variation3.phpt33 "a+", "a+b", "a+t",
55 // write another line of text and a blank line
57 // working when only a blank line is read
136 -- Testing fgetcsv() with file opened using a+ mode --
143 -- Testing fgetcsv() with file opened using a+b mode --
150 -- Testing fgetcsv() with file opened using a+t mode --
241 -- Testing fgetcsv() with file opened using a+ mode --
248 -- Testing fgetcsv() with file opened using a+b mode --
255 -- Testing fgetcsv() with file opened using a+t mode --
346 -- Testing fgetcsv() with file opened using a+ mode --
[all …]
H A Dfgetcsv_variation4.phpt33 "a+", "a+b", "a+t",
54 // write another line of text and a blank line
56 // working when only a blan line is read
135 -- Testing fgetcsv() with file opened using a+ mode --
142 -- Testing fgetcsv() with file opened using a+b mode --
149 -- Testing fgetcsv() with file opened using a+t mode --
240 -- Testing fgetcsv() with file opened using a+ mode --
247 -- Testing fgetcsv() with file opened using a+b mode --
254 -- Testing fgetcsv() with file opened using a+t mode --
345 -- Testing fgetcsv() with file opened using a+ mode --
[all …]
H A Dfgetcsv_variation5.phpt36 "a+", "a+b", "a+t",
57 // write another line of text and a blank line
59 // working when only a blank line is read
137 -- Testing fgetcsv() with file opened using a+ mode --
144 -- Testing fgetcsv() with file opened using a+b mode --
151 -- Testing fgetcsv() with file opened using a+t mode --
242 -- Testing fgetcsv() with file opened using a+ mode --
249 -- Testing fgetcsv() with file opened using a+b mode --
256 -- Testing fgetcsv() with file opened using a+t mode --
347 -- Testing fgetcsv() with file opened using a+ mode --
[all …]
/PHP-5.5/ext/reflection/tests/
H A D008.phpt6 $a = array("", 1, "::", "a::", "::b", "a::b");
8 foreach ($a as $val) {
16 $a = array("", 1, "");
19 foreach ($a as $key=>$val) {
33 string(22) "Class a does not exist"
35 string(22) "Class a does not exist"
37 string(66) "The parameter class is expected to be either a string or an object"
/PHP-5.5/ext/soap/tests/
H A Dclassmap004.phpt10 public $a;
11 function __construct($a){
12 $this->x = $a;
15 return @$this->a[$name];
18 $this->a[$name] = $val;
21 unset($this->a[$name]);
26 function __construct($a){
27 parent::__construct($a);
28 $this->y = $a + 1;
60 [a] => Array

Completed in 63 milliseconds

1...<<11121314151617181920>>...248