Home
last modified time | relevance | path

Searched refs:arr (Results 201 – 212 of 212) sorted by path

123456789

/PHP-5.5/tests/lang/
H A Dbug21820.phpt2 Bug #21820 ("$arr['foo']" generates bogus E_NOTICE, should be E_PARSE)
8 $arr = array('foo' => 'bar');
9 echo "$arr['foo']";
H A Dbug23384.phpt12 static $arr = array(Foo::HUN => 'ten');
14 print_r($arr);
H A Dbug23624.phpt5 $arr = array ('one', 'two', 'three');
6 var_dump(current($arr));
7 foreach($arr as $key => $value);
8 var_dump(current($arr));
H A Dbug24396.phpt6 $arr = array('a' => 1, 'b' => 2, 'c' => 3);
8 foreach($arr as $k=>$v) {
H A Dbug24783.phpt2 Bug #24783 ($key not binary safe in "foreach($arr as $key => $val)")
6 $arr = array ("foo\0bar" => "foo\0bar");
7 foreach ($arr as $key => $val) {
H A Dbug25652.phpt11 public $arr = array('testfunc');
13 $this->arr[0]('testvalue');
H A Dbug55754.phpt6 current($arr = array(0 => "a"));
8 current($arr);
H A Deach_binary_safety.phpt6 $arr = array ("foo\0bar" => "foo\0bar");
7 while (list($key, $val) = each($arr)) {
H A Dengine_assignExecutionOrder_003.phpt54 $arr = array(array(0,0),0);
59 $arr[foo1()][foo1()] = $brr[foo1()][foo1()] +
62 $val = $arr[0][1];
H A Dforeach_with_object_001.phpt2 foreach() with foreach($o->mthd()->arr)
H A Dforeach_with_references_001.phpt6 $arr = array(1 => "one", 2 => "two", 3 => "three");
8 foreach($arr as $key => $val) {
12 print_r($arr);
14 foreach($arr as $key => &$val) {
18 print_r($arr);
/PHP-5.5/win32/build/
H A Dprojectgen.js8 arr = local.split(" ");
10 for(i = 0; i < arr.length; i++) {
11 if (core.match(arr[i])) {
14 core += " " + arr[i];
44 for (i = 0; i < arr.length; i++) {
45 if (arr[i].length > 1) {
46 if (arr[i].match('alloca.c') ||
48 arr[i].match(/flock\.(c|h)/) ||
54 libpath = arr[i].substr(2, arr[i].lastIndexOf("\\") - 2);
121 for (i = 0; i < arr.length; i++) {
[all …]

Completed in 18 milliseconds

123456789