Home
last modified time | relevance | path

Searched refs:list (Results 126 – 150 of 329) sorted by last modified time

12345678910>>...14

/PHP-8.0/ext/spl/tests/
H A DSplDoublyLinkedList_lifoMode.phpt7 $list = new SplDoublyLinkedList();
9 $list->push('o');
10 $list->push('o');
11 $list->push('f');
13 $list->setIteratorMode(SplDoublyLinkedList::IT_MODE_LIFO);
15 $list->rewind();
17 while ($tmp = $list->current()) {
19 $list->next();
H A DSplDoublyLinkedList_offsetExists_success.phpt7 $list = new SplDoublyLinkedList();
9 // Push two values onto the list
10 $list->push('abc');
11 $list->push('def');
14 if($list->offsetExists(0) === true) {
19 if($list->offsetExists(1) === true) {
24 if($list->offsetExists(2) === false) {
H A DSplDoublyLinkedList_offsetUnset_negative-parameter.phpt10 // Add some items to the list
H A DSplDoublyLinkedList_offsetUnset_parameter-larger-num-elements.phpt10 // Add some items to the list
H A DSplFileObject_fputcsv.phpt8 $list = array (
31 foreach ($list as $v) {
41 echo '$list = ';var_export($res);echo ";\n";
51 echo '$list = ';var_export($res);echo ";\n";
60 $list = array (
82 $list = array (
H A DRecursiveDirectoryIterator_getSubPath_basic.phpt17 $list = [];
19 $list[] = $it->getSubPath();
22 asort($list);
23 foreach ($list as $item) {
H A DRecursiveDirectoryIterator_getSubPathname_basic.phpt19 $list = [];
22 $list[] = $it->getSubPathname();
25 asort($list);
26 foreach ($list as $item) {
/PHP-8.0/ext/spl/
H A Dspl_functions.c76 void spl_add_class_name(zval *list, zend_class_entry *pce, int allow, int ce_flags) in spl_add_class_name() argument
81 if ((tmp = zend_hash_find(Z_ARRVAL_P(list), pce->name)) == NULL) { in spl_add_class_name()
84 zend_hash_add(Z_ARRVAL_P(list), pce->name, &t); in spl_add_class_name()
91 void spl_add_interfaces(zval *list, zend_class_entry * pce, int allow, int ce_flags) in spl_add_interfaces() argument
98 spl_add_class_name(list, pce->interfaces[num_interfaces], allow, ce_flags); in spl_add_interfaces()
105 void spl_add_traits(zval *list, zend_class_entry * pce, int allow, int ce_flags) in spl_add_traits() argument
114 spl_add_class_name(list, trait, allow, ce_flags); in spl_add_traits()
121 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags) in spl_add_classes() argument
126 spl_add_class_name(list, pce, allow, ce_flags); in spl_add_classes()
128 spl_add_interfaces(list, pce, allow, ce_flags); in spl_add_classes()
[all …]
H A Dspl_functions.h59 void spl_add_class_name(zval * list, zend_class_entry * pce, int allow, int ce_flags);
60 void spl_add_interfaces(zval * list, zend_class_entry * pce, int allow, int ce_flags);
61 void spl_add_traits(zval * list, zend_class_entry * pce, int allow, int ce_flags);
62 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags);
/PHP-8.0/ext/sodium/tests/
H A Dphp_password_verify.phpt11 list(, $algo) = explode('$', $hash, 3);
/PHP-8.0/ext/soap/tests/soap12/
H A DT61.phpt28 …><env:Text>SOAP-ERROR: Encoding: '*' may only be first arraySize value in list</env:Text></env:Rea…
/PHP-8.0/ext/soap/tests/schema/
H A Dschema009.phpt2 SOAP XML Schema 9: simpleType/list (as string)
10 <list itemType="token"/>
H A Dschema010.phpt2 SOAP XML Schema 10: simpleType/list (as array)
10 <list itemType="token"/>
H A Dschema011.phpt2 SOAP XML Schema 11: simpleType/list (inline type) (as string)
10 <list>
14 </list>
H A Dschema012.phpt2 SOAP XML Schema 12: simpleType/list (inline type) (as array)
10 <list>
14 </list>
H A Dschema017.phpt2 SOAP XML Schema 17: union with list
17 <list itemType="int"/>
H A Dschema018.phpt2 SOAP XML Schema 18: union with list
15 <list itemType="int"/>
H A Dschema019.phpt2 SOAP XML Schema 19: union with list
15 <list itemType="int"/>
H A Dschema020.phpt2 SOAP XML Schema 20: union with list
17 <list itemType="int"/>
H A Dschema021.phpt2 SOAP XML Schema 21: list of unions
10 <list>
14 </list>
H A Dschema022.phpt2 SOAP XML Schema 22: list of unions
12 <list>
16 </list>
/PHP-8.0/ext/soap/tests/bugs/
H A Dbug42359.phpt15 [0] => list listItem {anonymous1}
18 [3] => list listItem2 {enumItem}
/PHP-8.0/ext/soap/tests/
H A Dbug69137.phpt20 list ($proxyHost, $proxyPort) = explode(':', str_replace('http://', '', $_ENV['http_proxy']));
/PHP-8.0/ext/skeleton/
H A Dconfig.m4.in41 dnl else # search default path list
/PHP-8.0/ext/simplexml/tests/
H A D012.phpt46 Cannot append to an attribute list

Completed in 29 milliseconds

12345678910>>...14