Home
last modified time | relevance | path

Searched refs:arr (Results 126 – 150 of 278) sorted by relevance

12345678910>>...12

/PHP-8.2/Zend/tests/
H A Dbug71539_2.phpt2 Bug #71539.2 (Memory error on $arr[$a] =& $arr[$b] if RHS rehashes)
H A Dbug79477.phpt14 $arr = (array) $obj;
15 $arr['prop'] = 'new value';
H A Dindirect_call_array_001.phpt6 $arr = array('a', 'b');
7 $arr();
H A Dmodify_isref_value_return.phpt10 $arr = [];
13 $a->b =& $arr;
H A Dindirect_call_array_002.phpt6 $arr = array('stdclass', 'b');
7 $arr();
H A Dlist_keyed_non_literals.phpt6 $arr = [
22 ) = $arr;
/PHP-8.2/sapi/apache2handler/
H A Dphp_functions.c177 const apr_array_header_t *arr; in PHP_FUNCTION() local
187 arr = apr_table_elts(ctx->r->headers_in); in PHP_FUNCTION()
189 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()
442 APR_ARRAY_FOREACH_OPEN(arr, key, val) in PHP_MINFO_FUNCTION()
456 arr = apr_table_elts(((php_struct *) SG(server_context))->r->headers_in); in PHP_MINFO_FUNCTION()
457 APR_ARRAY_FOREACH_OPEN(arr, key, val) in PHP_MINFO_FUNCTION()
465 arr = apr_table_elts(((php_struct *) SG(server_context))->r->headers_out); in PHP_MINFO_FUNCTION()
[all …]
/PHP-8.2/ext/spl/tests/
H A DArrayObject_modify_shared_object_properties.phpt8 $arr = (array) $obj;
10 var_dump($arr);
H A Dclass_implements_basic2.phpt28 function s_var_dump($arr) {
29 krsort($arr);
30 var_dump($arr);
H A Darray_008.phpt6 $arr = array(0=>0, 1=>1, 2=>2);
7 $obj = new ArrayObject($arr);
/PHP-8.2/ext/opcache/tests/
H A Dbug74623.phpt8 function crash($arr) {
11 foreach($arr as $item) {
H A Dbug74980.phpt17 $arr[][] = NULL;
20 foreach ($arr as $a) {
H A Dbug74431.phpt12 $arr = [1,2];
15 foreach ($arr as $i => $v){
/PHP-8.2/ext/standard/tests/streams/
H A Dbug64433.phpt24 $arr = array('http'=>
29 $context = stream_context_create($arr);
34 $arr = array('http'=>
39 $context = stream_context_create($arr);
/PHP-8.2/ext/standard/tests/image/
H A Dgetimagesize_xbm.phpt6 var_dump(getimagesize(__DIR__ . "/75x50.xbm", $arr));
7 var_dump($arr);
H A Dgetimagesize_wbmp.phpt6 var_dump(getimagesize(__DIR__ . "/75x50.wbmp", $arr));
7 var_dump($arr);
/PHP-8.2/tests/lang/
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');
/PHP-8.2/ext/phar/tests/
H A Dphar_get_supported_signatures_002.phpt7 $arr = Phar::getSupportedSignatures();
8 if (in_array("OpenSSL", $arr)) die("skip openssl support enabled");
H A Dphar_get_supported_signatures_002a.phpt7 $arr = Phar::getSupportedSignatures();
8 if (!in_array("OpenSSL", $arr)) die("skip openssl support required");
/PHP-8.2/ext/opcache/tests/opt/
H A Dsccp_027.phpt13 protected $arr;
15 $this->arr =& $a;
/PHP-8.2/Zend/tests/array_unpack/
H A Dundef_var.phpt6 var_dump([...$arr]);
10 Warning: Undefined variable $arr in %s on line %d
/PHP-8.2/ext/session/tests/
H A D004.phpt19 …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:"…
64 $_SESSION["arr"][3]->method();
67 var_dump($_SESSION["arr"]);
75 var_dump($_SESSION["arr"]);
97 WRITE: test004, 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:"b…
/PHP-8.2/ext/standard/tests/array/
H A Darray_column_property_visibility.phpt19 $arr = [new Test("foobar")];
20 var_dump(array_column($arr, "prop"));
/PHP-8.2/ext/opcache/tests/jit/
H A Dassign_025.phpt14 $arr[0][0] = $ref;
17 $arr[0][0] = $ref;

Completed in 27 milliseconds

12345678910>>...12