Home
last modified time | relevance | path

Searched refs:index (Results 151 – 175 of 556) sorted by relevance

12345678910>>...23

/PHP-7.4/ext/standard/
H A Dvar.c286 zend_ulong index; in php_debug_zval_dump() local
331 ZEND_HASH_FOREACH_KEY_VAL_IND(myht, index, key, val) { in php_debug_zval_dump()
332 zval_array_element_dump(val, index, key, level); in php_debug_zval_dump()
359 ZEND_HASH_FOREACH_KEY_VAL(myht, index, key, val) { in php_debug_zval_dump()
431 smart_str_append_long(buf, (zend_long) index); in php_array_element_export()
471 smart_str_append_long(buf, (zend_long) index); in php_object_element_export()
485 zend_ulong index; in php_var_export_ex() local
898 zend_ulong index; in php_var_serialize_nested_data() local
906 php_var_serialize_long(buf, index); in php_var_serialize_nested_data()
1019 zend_ulong index; in php_var_serialize_intern() local
[all …]
/PHP-7.4/ext/xml/tests/
H A Dxml_parse_into_struct_variation.phpt11 …otype : proto int xml_parse_into_struct(resource parser, string data, array &struct, array &index)
21 xml_parse_into_struct($p, $simple, $vals, $index);
24 print_r($index);
/PHP-7.4/ext/phar/tests/
H A Dfopen.phpt17 $a['index.php'] = '<?php
31 include "index.php";
41 …): failed to open stream: No such file or directory in phar://%sfopen.phar.php/index.php on line %d
H A Dfatal_error_webphar.phpt9 REQUEST_URI=/fatal_error_webphar.php/index.php
10 PATH_INFO=/index.php
H A Dfile_get_contents.phpt12 $a['index.php'] = '<?php
22 include "index.php";
H A Dfrontcontroller22.phpt9 REQUEST_URI=/frontcontroller22.php/index.php
10 PATH_INFO=/index.php
H A Dreadfile.phpt12 $a['index.php'] = '<?php
22 include "index.php";
/PHP-7.4/ext/standard/tests/network/
H A Dnews.rss16 <rdf:li rdf:resource="http://php.net/index.php#id2015-01-22-3" />
21 <item rdf:about="http://php.net/index.php#id2015-01-22-3">
23 <link>http://php.net/index.php#id2015-01-22-3</link>
/PHP-7.4/ext/opcache/tests/
H A Dissue0115.phpt17 require "phar://this/index.php";
20 $p['index.php'] = '<?php
28 $p['index.php'] = '<?php
/PHP-7.4/ext/standard/tests/strings/
H A Ducwords_variation2.phpt64 for($index =0; $index < count($heredoc_strings); $index ++) {
66 var_dump( ucwords($heredoc_strings[$index]) );
H A Dstrrpos_variation1.phpt67 for($index=0; $index<count($needle); $index++) {
69 var_dump( strrpos($haystack, $needle[$index]) );
70 var_dump( strrpos($haystack, $needle[$index], $index) );
H A Dstrtr_variation6.phpt80 for($index = 0; $index < count($from_arr); $index++) {
82 $from = $from_arr[$index];
H A Dstrip_tags_variation5.phpt70 for($index =0; $index < count($res_heredoc_strings); $index ++) {
72 var_dump( strip_tags($res_heredoc_strings[$index], $quotes) );
H A Dstrrpos_variation2.phpt68 for($index=0; $index<count($needle); $index++) {
70 var_dump( strrpos($haystack, $needle[$index]) );
71 var_dump( strrpos($haystack, $needle[$index], $index) );
H A Dstrtr_variation3.phpt53 for($index = 0; $index < count($str_arr); $index++) {
56 $str = $str_arr[$index]; //getting the array element in 'str' variable
H A Dhtmlspecialchars_decode_variation3.phpt66 for($index =0; $index < count($res_heredoc_strings); $index ++) {
68 var_dump( htmlspecialchars_decode($res_heredoc_strings[$index]) );
/PHP-7.4/Zend/
H A Dzend_list.c34 int index; in zend_list_insert() local
37 index = zend_hash_next_free_element(&EG(regular_list)); in zend_list_insert()
38 if (index == 0) { in zend_list_insert()
39 index = 1; in zend_list_insert()
40 } else if (index == INT_MAX) { in zend_list_insert()
43 ZVAL_NEW_RES(&zv, index, ptr, type); in zend_list_insert()
44 return zend_hash_index_add_new(&EG(regular_list), index, &zv); in zend_list_insert()
/PHP-7.4/ext/spl/
H A Dspl_dllist.c760 zend_long index; in SPL_METHOD() local
769 RETURN_BOOL(index >= 0 && index < intern->llist->count); in SPL_METHOD()
777 zend_long index; in SPL_METHOD() local
788 if (index < 0 || index >= intern->llist->count) { in SPL_METHOD()
827 if (index < 0 || index >= intern->llist->count) { in SPL_METHOD()
862 zend_long index; in SPL_METHOD() local
875 if (index < 0 || index >= intern->llist->count) { in SPL_METHOD()
1299 zend_long index; in SPL_METHOD() local
1308 if (index < 0 || index > intern->llist->count) { in SPL_METHOD()
1406 ZEND_ARG_INFO(0, index)
[all …]
/PHP-7.4/ext/gd/tests/
H A Dbug74435.phpt15 if (($index = imagecolorat($im, $i, $j)) >= 2) {
16 list($red, $green, $blue, $alpha) = array_values(imagecolorsforindex($im, $index));
H A Dlibgd00186.phpt24 $index = imagecolorat($im,9,9);
25 $arr = imagecolorsforindex($im, $index);
/PHP-7.4/Zend/tests/
H A Dbug74836.phpt27 Notice: Undefined index: 010 in %s on line %d
31 Notice: Undefined index: 010 in %s on line %d
/PHP-7.4/ext/spl/tests/
H A Diterator_004.phpt51 public function seek($index)
53 if ($index < count($this->a)) {
54 $this->i = $index;
56 echo __METHOD__ . '(' . $index . ")\n";
/PHP-7.4/ext/phar/tests/cache_list/
H A Dfrontcontroller22.phpt10 REQUEST_URI=/frontcontroller22.php/index.php
11 PATH_INFO=/index.php
/PHP-7.4/ext/hash/
H A Dhash_snefru.c45 int b, index, rshift, lshift; in Snefru() local
66 for (index = 0; index < 8; index++) { in Snefru()
67 t0 = tables[2*index+0]; in Snefru()
68 t1 = tables[2*index+1]; in Snefru()
/PHP-7.4/sapi/fpm/tests/
H A Dbug80024-socket-reduced-inherit.phpt18 [pool_%index%]
19 listen = {{ADDR:UDS[pool_%index%]}}

Completed in 36 milliseconds

12345678910>>...23