Home
last modified time | relevance | path

Searched refs:a (Results 151 – 175 of 6311) sorted by path

12345678910>>...253

/PHP-5.5/Zend/tests/
H A Dbug39018.phpt8 $a = 'foo';
11 $a = '';
13 $a[0];
15 print $a[0]; // 12
21 $a[-0];
29 @('a' == $x[4]);
33 @$x[4] == 'a';
35 (@$x[4]) == 'a';
39 (@($x[4])) == 'a';
43 @($x[4]) == 'a';
[all …]
H A Dbug39127.phpt6 class a { function a() { var_dump("a::a() called"); } }
7 class b extends a {}
10 var_dump(is_callable(array($b,"a")));
17 string(13) "a::a() called"
H A Dbug39304.phpt6 list($a, $b) = $s[0];
H A Dbug39304_2_4.phpt8 list($a, $b) = $s[0];
9 var_dump($a,$b);
H A Dbug39346.phpt2 Bug #39346 (Unsetting a static variable inside a destructor causes segfault later on)
H A Dbug39438.phpt14 … 'description' => 'Displays a teaser for advanced subpages or a selection of advanced pages',
H A Dbug39445.phpt2 Bug #39445 (Calling debug_backtrace() in the __toString() function produces a crash)
H A Dbug39449.phpt15 $a =new A();
16 $a->arr = array('a','b','c');
18 $b = &$a->arr;
21 foreach ($a->arr as $k => $v) {
25 $a->arr[]='d';
27 foreach ($a->arr as $k => $v) {
32 0 => a
36 0 => a
H A Dbug39944.phpt38 $a = getArray();
39 addToArray($a, "xx2");
43 $a = getArray();
44 addToArray($a, "xx5");
H A Dbug40236.phpt2 Bug #40236 (php -a function allocation eats memory)
11 $cmd = "\"$php\" -n -d memory_limit=4M -a \"".dirname(__FILE__)."\"/bug40236.inc";
H A Dbug40261.phpt9 $a = Array();
11 $a[$i] = Array(1);
15 $b[$i] = $a[$i][0];
18 unset($a);
H A Dbug40509.phpt13 $arr["v"] = array("a");
H A Dbug40770.phpt18 $var.= str_repeat('a',1*1024*1024);
H A Dbug40809.phpt14 $a = Array();
16 $a[$i] = Array(1);
19 $b[$i] = $a[$i][0];
21 unset($a);
26 $evil .= str_repeat("a", $increment);
H A Dbug40899.phpt5 list(list($a,$b),$c)=array(array('a','b'),'c');
6 echo "$a$b$c\n";
H A Dbug41351.phpt2 Bug #41351 (Invalid opcode with foreach ($a[] as $b))
6 $a = array();
8 foreach($a[] as $b) {
H A Dbug41351_2.phpt2 Bug #41351 (Invalid opcode with foreach ($a[] as $b)) - 2
6 $a = array();
8 foreach($a[]['test'] as $b) {
H A Dbug41351_3.phpt2 Bug #41351 (Invalid opcode with foreach ($a[] as $b)) - 3
6 $a = array();
8 foreach($a['test'][] as $b) {
H A Dbug41421.phpt2 Bug #41421 (Uncaught exception from a stream wrapper segfaults)
H A Dbug42211.phpt2 Bug #42211 (property_exists() fails to find protected properties from a parent class)
19 $a = new A();
20 $a->foo();
H A Dbug42772.phpt2 Bug #42772 (Storing $this in a static var fails while handling a cast to string)
H A Dbug42817.phpt2 Bug #42817 (clone() on a non-object does not result in a fatal error)
5 $a = clone(null);
6 array_push($a->b, $c);
H A Dbug42819.phpt141 function oops($a = array(foo\unknown)){}
H A Dbug42937.phpt28 $a = new A();
29 $a->test();
H A Dbug43128.phpt8 $a = str_repeat("a", 10 * 1024 * 1024);
10 eval("class $a {}");
12 # call_user_func($a); // Warning
13 # $a->$a(); // Fatal error
15 if ($a instanceof $a); // Segmentation fault
16 new $a; // Segmentation fault

Completed in 48 milliseconds

12345678910>>...253