Home
last modified time | relevance | path

Searched refs:entry (Results 51 – 75 of 202) sorted by relevance

123456789

/PHP-8.0/ext/zip/tests/
H A Doo_delete.phpt19 $zip->addFromString('entry1.txt', 'entry #1');
20 $zip->addFromString('entry2.txt', 'entry #2');
21 $zip->addFromString('dir/entry2.txt', 'entry #2');
H A Doo_setcomment_error.phpt18 $zip->addFromString('entry1.txt', 'entry #1');
19 $zip->addFromString('entry2.txt', 'entry #2');
/PHP-8.0/ext/imap/tests/
H A Dimap_clearflag_full_uid.phpt20 // Testing individual entry
22 // Testing multiple entries entry
24 // Testing entry range
/PHP-8.0/ext/ldap/tests/
H A Dldap_mod_del_basic.phpt16 $entry = array(
21 ldap_mod_del($link, "cn=userA,$base", $entry),
H A Dldap_get_attributes_basic.phpt16 $entry = ldap_first_entry($link, $result);
18 ldap_get_attributes($link, $entry)
H A Dldap_get_values_len_error.phpt16 $entry = ldap_first_entry($link, $result);
18 var_dump(ldap_get_values_len($link, $entry, "inexistentAttribute"));
H A Dldap_mod_replace_basic.phpt16 $entry = array(
21 ldap_mod_replace($link, "cn=userA,$base", $entry),
H A Dldap_mod_add_basic.phpt16 $entry = array(
21 ldap_mod_add($link, "o=test,$base", $entry),
H A Dldap_modify_basic.phpt16 $entry = array(
25 ldap_modify($link, "o=test,$base", $entry),
/PHP-8.0/ext/phar/phar/
H A Dpharcommand.inc82 'typ' => 'entry',
664 * @param string $entry The entry point
671 $entry = str_replace('//', '/', $entry);
673 $entry = substr($entry, $p+1);
680 echo "$entry\n";
958 unset($phar[$entry]);
1140 if (isset($entry)) {
1249 if (isset($entry)) {
1273 if (isset($entry)) {
1322 if (isset($entry)) {
[all …]
/PHP-8.0/ext/phar/tests/
H A Dphar_dotted_path.phpt27 foreach ($phar as $entry) {
28 echo file_get_contents($entry)."\n";
H A Dpharfileinfo_chmod.phpt28 Phar entry "a" is a temporary directory (not an actual entry in the archive), cannot chmod
/PHP-8.0/ext/standard/tests/dir/
H A Dreaddir_variation2.phpt27 foreach($entries as $entry) {
28 var_dump($entry);
H A Ddir_bug73971.phpt21 while (false !== ($entry = $d->read())) {
22 var_dump($entry);
H A Dreaddir_variation2-win32-mb.phpt33 foreach($entries as $entry) {
34 var_dump($entry);
/PHP-8.0/ext/mysqli/
H A Dmysqli_warning.c131 zval *entry; in php_get_warnings() local
144 entry = zend_hash_get_current_data(Z_ARRVAL(row)); in php_get_warnings()
145 errno = zval_get_long(entry); in php_get_warnings()
149 entry = zend_hash_get_current_data(Z_ARRVAL(row)); in php_get_warnings()
151 w = php_new_warning(entry, errno); in php_get_warnings()
/PHP-8.0/ext/oci8/
H A Doci8_statement.c1002 zval *entry = NULL; in php_oci_bind_post_exec() local
1015 zval_ptr_dtor(entry); in php_oci_bind_post_exec()
1026 zval_ptr_dtor(entry); in php_oci_bind_post_exec()
1043 zval_ptr_dtor(entry); in php_oci_bind_post_exec()
1048 ZVAL_NULL(entry); in php_oci_bind_post_exec()
1078 zval_ptr_dtor(entry); in php_oci_bind_post_exec()
1725 zval *entry; in php_oci_bind_array_helper_string() local
1814 zval *entry; in php_oci_bind_array_helper_number() local
1835 convert_to_long_ex(entry); in php_oci_bind_array_helper_number()
1855 zval *entry; in php_oci_bind_array_helper_double() local
[all …]
/PHP-8.0/ext/date/tests/
H A DDateTimeZone_getTransitions_basic1.phpt21 echo "\n-- Format a sample entry for Spring 1963 --\n";
30 -- Format a sample entry for Spring 1963 --
H A Dtimezone_transitions_get_basic1.phpt21 echo "\n-- Format a sample entry pfor Spring 1963 --\n";
33 -- Format a sample entry pfor Spring 1963 --
H A DDateTimeZone_listAbbreviations_basic1.phpt15 echo "\n-- Format a sample entry --\n";
24 -- Format a sample entry --
H A Dtimezone_abbreviations_list_basic1.phpt15 echo "\n-- Format a sample entry --\n";
24 -- Format a sample entry --
/PHP-8.0/sapi/litespeed/
H A Dlsapi_main.c114 Z_STRVAL_P(entry) = zend_strndup(Z_STRVAL_P(entry), Z_STRLEN_P(entry))
832 zend_hash_destroy(&entry->user_config); in user_config_cache_entry_dtor()
833 free(entry); in user_config_cache_entry_dtor()
910 user_config_cache_entry *entry; member
997 if (!ctx->entry) in lsapi_activate_user_ini_mk_user_config()
999 ctx->entry = pemalloc(sizeof(user_config_cache_entry), 1); in lsapi_activate_user_ini_mk_user_config()
1000 ctx->entry->expires = 0; in lsapi_activate_user_ini_mk_user_config()
1001 zend_hash_init(&ctx->entry->user_config, 0, NULL, in lsapi_activate_user_ini_mk_user_config()
1033 if (!ctx->entry->expires || request_time > ctx->entry->expires) in lsapi_activate_user_ini_walk_down_the_path()
1045 &ctx->entry->user_config); in lsapi_activate_user_ini_walk_down_the_path()
[all …]
/PHP-8.0/ext/dom/
H A Ddom_iterators.c184 zval *entry; in php_dom_iterator_move_forward() local
201 if ((entry = zend_hash_get_current_data_ex(nodeht, &iterator->pos))) { in php_dom_iterator_move_forward()
204 ZVAL_COPY(&iterator->curobj, entry); in php_dom_iterator_move_forward()
264 zval *entry; in php_dom_get_iterator() local
287 if ((entry = zend_hash_get_current_data_ex(nodeht, &iterator->pos))) { in php_dom_get_iterator()
288 ZVAL_COPY(&iterator->curobj, entry); in php_dom_get_iterator()
H A Dnodelist.c139 zval *entry = zend_hash_index_find(nodeht, index); in PHP_METHOD() local
140 if (entry) { in PHP_METHOD()
141 ZVAL_COPY(return_value, entry); in PHP_METHOD()
/PHP-8.0/main/
H A Dphp_ini.c185 zval *entry; in php_ini_parser_cb() local
213 entry = zend_hash_update(active_hash, Z_STR_P(arg1), arg2); in php_ini_parser_cb()
214 Z_STR_P(entry) = zend_string_dup(Z_STR_P(entry), 1); in php_ini_parser_cb()
239 entry = zend_symtable_update(Z_ARRVAL_P(find_arr), Z_STR_P(arg3), arg2); in php_ini_parser_cb()
241 entry = zend_hash_next_index_insert(Z_ARRVAL_P(find_arr), arg2); in php_ini_parser_cb()
243 Z_STR_P(entry) = zend_string_dup(Z_STR_P(entry), 1); in php_ini_parser_cb()
296 if ((entry = zend_hash_str_find(target_hash, key, key_len)) == NULL) { in php_ini_parser_cb()
301 entry = zend_hash_str_update(target_hash, key, key_len, &section_arr); in php_ini_parser_cb()
303 if (Z_TYPE_P(entry) == IS_ARRAY) { in php_ini_parser_cb()
304 active_ini_hash = Z_ARRVAL_P(entry); in php_ini_parser_cb()

Completed in 80 milliseconds

123456789