Home
last modified time | relevance | path

Searched refs:arr (Results 76 – 100 of 212) sorted by relevance

123456789

/PHP-5.5/tests/lang/
H A Dbug55754.phpt6 current($arr = array(0 => "a"));
8 current($arr);
H A Dbug24396.phpt6 $arr = array('a' => 1, 'b' => 2, 'c' => 3);
8 foreach($arr as $k=>$v) {
H A Dbug25652.phpt11 public $arr = array('testfunc');
13 $this->arr[0]('testvalue');
H A Deach_binary_safety.phpt6 $arr = array ("foo\0bar" => "foo\0bar");
7 while (list($key, $val) = each($arr)) {
/PHP-5.5/ext/standard/tests/strings/
H A Dsubstr_replace_array.phpt6 $arr = array('abc' => 'llsskdkk','def' => 'llsskjkkdd', 4 => 'hello', 42 => 'world');
7 $newarr = substr_replace($arr, 'zzz', 0, -2);
/PHP-5.5/Zend/tests/
H A Dindirect_call_array_001.phpt6 $arr = array('a', 'b');
7 $arr();
H A Dindirect_method_call_005.phpt7 public function __construct($arr) {
8 parent::__construct($arr);
H A Dindirect_call_array_002.phpt6 $arr = array('stdclass', 'b');
7 $arr();
H A Dbug33257.phpt8 protected static $arr = array("a", "b", "c");
10 return self::$arr;
/PHP-5.5/ext/standard/tests/array/
H A Darray_user_key_compare.phpt5 $arr = array("A" => 1, "B" => 1);
14 uksort($arr, "array_compare");
H A Dbug14580.phpt5 $arr = array (b"foo\0bar" => b"foo\0bar");
6 $key = key($arr);
H A Dbug12776.phpt14 $arr=array('k'=>'v');
15 array_walk($arr,'test');
H A Dbug40191.phpt13 $arr = array_unique($arrObj);
14 var_dump($arr);
/PHP-5.5/ext/session/tests/
H A D004.phpt16 …public $data = 'baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:1;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"…
60 $_SESSION["arr"][3]->method();
63 var_dump($_SESSION["arr"]);
71 var_dump($_SESSION["arr"]);
93 WRITE: abtest, baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:2;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"ba…
/PHP-5.5/ext/standard/tests/streams/
H A Dbug64433.phpt28 $arr = array('http'=>
33 $context = stream_context_create($arr);
38 $arr = array('http'=>
43 $context = stream_context_create($arr);
/PHP-5.5/sapi/apache2handler/
H A Dphp_functions.c176 const apr_array_header_t *arr; in PHP_FUNCTION() local
186 arr = apr_table_elts(ctx->r->headers_in); in PHP_FUNCTION()
188 APR_ARRAY_FOREACH_OPEN(arr, key, val) in PHP_FUNCTION()
200 const apr_array_header_t *arr; in PHP_FUNCTION() local
210 arr = apr_table_elts(ctx->r->headers_out); in PHP_FUNCTION()
212 APR_ARRAY_FOREACH_OPEN(arr, key, val) in PHP_FUNCTION()
443 APR_ARRAY_FOREACH_OPEN(arr, key, val) in PHP_MINFO_FUNCTION()
457 arr = apr_table_elts(((php_struct *) SG(server_context))->r->headers_in); in PHP_MINFO_FUNCTION()
458 APR_ARRAY_FOREACH_OPEN(arr, key, val) in PHP_MINFO_FUNCTION()
466 arr = apr_table_elts(((php_struct *) SG(server_context))->r->headers_out); in PHP_MINFO_FUNCTION()
[all …]
/PHP-5.5/ext/standard/tests/general_functions/
H A Dget_defined_vars_basic.phpt26 $arr = array(1,2,3,4);
44 $arr = array("foo", "bar");
88 ["arr"]=>
116 ["arr"]=>
138 ["arr"]=>
/PHP-5.5/ext/spl/tests/
H A Darray_008.phpt6 $arr = array(0=>0, 1=>1, 2=>2);
7 $obj = new ArrayObject($arr);
H A Dclass_implements_basic2.phpt34 function s_var_dump($arr) {
35 krsort($arr);
36 var_dump($arr);
H A Diterator_069.phpt6 $arr = array(array(1,2));
7 $arrOb = new ArrayObject($arr);
H A Diterator_071.phpt6 $arr = array(array(1,2),2);
7 $arrOb = new ArrayObject($arr);
/PHP-5.5/ext/phar/tests/
H A Dphar_get_supported_signatures_001.phpt7 $arr = Phar::getSupportedSignatures();
8 if (in_array("OpenSSL", $arr)) die("skip openssl support enabled");
H A Dphar_get_supported_signatures_001a.phpt7 $arr = Phar::getSupportedSignatures();
8 if (!in_array("OpenSSL", $arr)) die("skip openssl support required");
H A Dtest_signaturealgos.phpt7 $arr = Phar::getSupportedSignatures();
8 if (!in_array("OpenSSL", $arr)) die("skip openssl support required");
9 if (!in_array('SHA-256', $arr)) die("skip hash extension loaded shared");
/PHP-5.5/ext/json/tests/
H A Dpass003.phpt24 $arr = json_decode($test, true);
25 var_dump($arr);
31 $arr_enc = json_encode($arr);
38 $arr = json_decode($arr_enc, true);
39 var_dump($arr);

Completed in 39 milliseconds

123456789