Home
last modified time | relevance | path

Searched refs:entry (Results 26 – 50 of 202) sorted by relevance

123456789

/PHP-8.0/ext/zip/tests/
H A Dzip_entry_read.phpt10 $entry = zip_read($zip);
11 if (!zip_entry_open($zip, $entry, "r")) die("Failure");
12 echo zip_entry_read($entry);
13 zip_entry_close($entry);
H A Doo_setcomment.phpt20 $zip->addFromString('entry1.txt', 'entry #1');
21 $zip->addFromString('entry2.txt', 'entry #2');
22 $zip->addFromString('dir/entry2d.txt', 'entry #2');
23 $zip->addFromString('entry4.txt', 'entry #1');
25 $zip->addFromString('entry5.txt', 'entry #2');
H A Dzip_entry_close.phpt10 $entry = zip_read($zip);
11 echo "entry_open: "; var_dump(zip_entry_open($zip, $entry, "r"));
12 echo "entry_close: "; var_dump(zip_entry_close($entry));
14 echo "entry_close: "; var_dump(zip_entry_close($entry));
H A Dzip_entry_open.phpt10 $entry = zip_read($zip);
11 echo zip_entry_open($zip, $entry, "r") ? "OK" : "Failure";
12 zip_entry_close($entry);
H A Doo_getnameindex.phpt20 $zip->addFromString('entry1.txt', 'entry #1');
21 $zip->addFromString('entry2.txt', 'entry #2');
22 $zip->addFromString('dir/entry2d.txt', 'entry #2');
H A Doo_namelocate.phpt20 $zip->addFromString('entry1.txt', 'entry #1');
21 $zip->addFromString('entry2.txt', 'entry #2');
22 $zip->addFromString('dir/entry2d.txt', 'entry #2');
H A Doo_rename.phpt20 $zip->addFromString('entry1.txt', 'entry #1');
21 $zip->addFromString('entry2.txt', 'entry #2');
22 $zip->addFromString('dir/entry2.txt', 'entry #2');
/PHP-8.0/ext/ldap/tests/
H A Dldap_first_entry_basic.phpt17 $entry = ldap_first_entry($link, $result),
18 ldap_get_values($link, $entry, 'sn')
29 resource(%d) of type (ldap result entry)
H A Dldap_next_attribute_error.phpt16 $entry = ldap_first_entry($link, $result);
18 ldap_next_attribute($link, $entry)
29 …alled before calling ldap_first_attribute() or no attributes found in result entry in %s on line %d
H A Dbug77958.phpt31 $entry = ldap_first_entry($link, ldap_read($link, "cn=userA,$base", "(telephoneNumber=*)")),
32 ldap_get_values($link, $entry, "telephoneNumber")
45 resource(%d) of type (ldap result entry)
H A Dldap_modify_error.phpt21 $entry = array(
30 ldap_add($link, "dc=my-domain,$base", $entry);
32 $entry2 = $entry;
37 $entry2 = $entry;
H A Dldap_mod_add_error.phpt21 $entry = array(
30 ldap_add($link, "dc=my-domain,$base", $entry);
32 $entry2 = $entry;
37 $entry2 = $entry;
H A Dldap_get_dn_basic.phpt16 $entry = ldap_first_entry($link, $result);
18 ldap_get_dn($link, $entry)
H A Dldap_first_attribute_basic.phpt16 $entry = ldap_first_entry($link, $result);
18 ldap_first_attribute($link, $entry)
H A Dldap_get_values_len_basic.phpt16 $entry = ldap_first_entry($link, $result);
18 ldap_get_values_len($link, $entry, "o")
/PHP-8.0/ext/spl/tests/
H A Dbug68825.phpt21 foreach ($di as $entry) {
22 if ('bug' === $entry->getFilename()) {
23 var_dump($entry->getLinkTarget());
/PHP-8.0/ext/standard/tests/array/
H A Darray_count_values2.phpt21 Warning: array_count_values(): Can only count string and integer values, entry skipped in %s on lin…
23 Warning: array_count_values(): Can only count string and integer values, entry skipped in %s on lin…
25 Warning: array_count_values(): Can only count string and integer values, entry skipped in %s on lin…
H A Darray_flip.phpt19 Warning: array_flip(): Can only flip string and integer values, entry skipped in %s on line %d
21 Warning: array_flip(): Can only flip string and integer values, entry skipped in %s on line %d
23 Warning: array_flip(): Can only flip string and integer values, entry skipped in %s on line %d
/PHP-8.0/ext/pdo/tests/
H A Dbug_44173.phpt21 // Bug entry [2] -- 1 is PDO::FETCH_LAZY
30 // Bug entry [3]
37 // Bug entry [4]
46 // Bug entry [5]
55 // Bug entry [6]
64 // Bug entry [7]
/PHP-8.0/ext/phar/tests/
H A Dpharfileinfo_setmetadata.phpt44 Phar entry is a temporary directory (not an actual entry in the archive), cannot set metadata
45 Phar entry is a temporary directory (not an actual entry in the archive), cannot delete metadata
H A D027.phpt32 while (false !== ($entry = readdir($dir))) {
33 $entry = $base . '/' . $entry;
34 var_dump($entry);
35 var_dump(is_dir($phar . $entry));
36 if (is_dir($phar . $entry))
38 dump($phar, $entry);
/PHP-8.0/ext/imap/tests/
H A Dimap_setflag_full_basic.phpt14 // Testing individual entry
17 // Testing multiple entries entry
20 // Testing entry range
H A Dimap_setflag_full_uid.phpt16 // Testing individual entry
19 // Testing multiple entries entry
22 // Testing entry range
25 // Testing entry range invalid
/PHP-8.0/ext/phar/
H A Dshortarc.php245 static function extractFile($path, $entry, $fp) argument
248 $c = $entry[2];
260 if ($entry[4] & self::GZ) {
262 } elseif ($entry[4] & self::BZ2) {
266 if (strlen($data) != $entry[0]) {
268 $entry[0] . ")");
271 if ($entry[3] != sprintf("%u", crc32((binary)$data) & 0xffffffff)) {
/PHP-8.0/ext/mysqli/tests/
H A Dmysqli_phpinfo.phpt52 foreach ($expected as $k => $entry)
53 if (!stristr($phpinfo, $entry))
54 printf("[010] Could not find entry for '%s'\n", $entry);

Completed in 37 milliseconds

123456789