Home
last modified time | relevance | path

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

123456789

/PHP-7.4/ext/pdo/tests/
H A Dbug_44173.phpt21 // Bug entry [1]
26 // Bug entry [2] -- 1 is PDO::FETCH_LAZY
31 // Bug entry [3]
36 // Bug entry [4]
41 // Bug entry [5]
46 // Bug entry [6]
51 // Bug entry [7]
/PHP-7.4/ext/zip/tests/
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');
24 $zip->addFromString('entry5.txt', 'entry #2');
H A Dzip_entry_compressedsize.phpt12 while ($entry = zip_read($zip)) {
13 echo zip_entry_compressedsize($entry)."\n";
H A Dzip_entry_filesize.phpt12 while ($entry = zip_read($zip)) {
13 echo zip_entry_filesize($entry)."\n";
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 Dzip_entry_compressionmethod.phpt12 while ($entry = zip_read($zip)) {
13 echo zip_entry_compressionmethod($entry)."\n";
H A Dzip_entry_name.phpt12 while ($entry = zip_read($zip)) {
13 echo zip_entry_name($entry)."\n";
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');
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');
/PHP-7.4/ext/ldap/tests/
H A Dldap_next_attribute_error.phpt16 $entry = ldap_first_entry($link, $result);
20 ldap_next_attribute($link, $entry)
34 Warning: ldap_next_attribute(): supplied resource is not a valid ldap result entry resource in %s o…
36 …alled before calling ldap_first_attribute() or no attributes found in result entry in %s on line %d
H A Dldap_get_values_len_error.phpt16 $entry = ldap_first_entry($link, $result);
20 var_dump(ldap_get_values_len($link, $entry));
21 var_dump(ldap_get_values_len($link, $entry, "weirdAttribute", "Additional data"));
23 var_dump(ldap_get_values_len($link, $entry, "inexistentAttribute"));
H A Dldap_first_entry_basic.phpt17 $entry = ldap_first_entry($link, $result),
18 ldap_get_values($link, $entry, 'sn')
30 resource(%d) of type (ldap result entry)
H A Dbug77958.phpt31 $entry = ldap_first_entry($link, ldap_read($link, "cn=userA,$base", "(telephoneNumber=*)")),
32 ldap_get_values($link, $entry, "telephoneNumber")
46 resource(%d) of type (ldap result entry)
H A Dldap_first_attribute_basic.phpt16 $entry = ldap_first_entry($link, $result);
18 ldap_first_attribute($link, $entry)
H A Dldap_get_dn_basic.phpt16 $entry = ldap_first_entry($link, $result);
18 ldap_get_dn($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-7.4/ext/spl/tests/
H A Dbug68825.phpt21 foreach ($di as $entry) {
22 if ('bug' === $entry->getFilename()) {
23 var_dump($entry->getLinkTarget());
/PHP-7.4/ext/phar/tests/
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);
H A Dpharfileinfo_setmetadata.phpt47 Phar entry is a temporary directory (not an actual entry in the archive), cannot set metadata
48 Phar entry is a temporary directory (not an actual entry in the archive), cannot delete metadata
/PHP-7.4/ext/standard/tests/dir/
H A Dreaddir_variation2.phpt6 * Description: Read directory entry from dir_handle
32 foreach($entries as $entry) {
33 var_dump($entry);
H A Dreaddir_variation2-win32-mb.phpt12 * Description: Read directory entry from dir_handle
38 foreach($entries as $entry) {
39 var_dump($entry);
/PHP-7.4/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-7.4/ext/mysqli/tests/
H A Dmysqli_phpinfo.phpt53 foreach ($expected as $k => $entry)
54 if (!stristr($phpinfo, $entry))
55 printf("[010] Could not find entry for '%s'\n", $entry);
/PHP-7.4/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 …]

Completed in 38 milliseconds

123456789