Home
last modified time | relevance | path

Searched refs:find (Results 1 – 25 of 139) sorted by relevance

123456

/PHP-8.0/ext/fileinfo/libmagic/
H A Dstrcasestr.c69 strcasestr(const char *s, const char *find) in strcasestr() argument
74 if ((c = *find++) != 0) { in strcasestr()
76 len = strlen(find); in strcasestr()
82 } while (_strncasecmp(s, find, len) != 0); in strcasestr()
/PHP-8.0/Zend/tests/return_types/
H A Drfc004.phpt9 function find($id) : User;
14 function find($id) {
20 Fatal error: Declaration of UserGateway_MySql::find($id) must be compatible with UserGateway::find(…
/PHP-8.0/ext/intl/tests/
H A Dgrapheme.phpt820 find "c" in "abc" - grapheme_strpos = 2 == 2
821 find "b" in "abc" - grapheme_strpos = 1 == 1
822 find "a" in "abc" - grapheme_strpos = 0 == 0
841 find "ab" in "abc" - grapheme_strpos = 0 == 0
842 find "bc" in "abc" - grapheme_strpos = 1 == 1
868 find "c" in "abC" - grapheme_stripos = 2 == 2
869 find "B" in "abc" - grapheme_stripos = 1 == 1
870 find "a" in "Abc" - grapheme_stripos = 0 == 0
906 find "c" in "abc" - grapheme_strrpos = 2 == 2
907 find "b" in "abc" - grapheme_strrpos = 1 == 1
[all …]
H A Dgrapheme2.phpt808 find "c" in "abc" - grapheme_strpos = 2 == 2
809 find "b" in "abc" - grapheme_strpos = 1 == 1
810 find "a" in "abc" - grapheme_strpos = 0 == 0
829 find "ab" in "abc" - grapheme_strpos = 0 == 0
830 find "bc" in "abc" - grapheme_strpos = 1 == 1
856 find "c" in "abC" - grapheme_stripos = 2 == 2
857 find "B" in "abc" - grapheme_stripos = 1 == 1
858 find "a" in "Abc" - grapheme_stripos = 0 == 0
894 find "c" in "abc" - grapheme_strrpos = 2 == 2
895 find "b" in "abc" - grapheme_strrpos = 1 == 1
[all …]
/PHP-8.0/ext/standard/tests/file/
H A Drename_variation13-win32.phpt69 Warning: rename(-1,%safile.tmp): The system cannot find the file specified (code: 2) in %srename_va…
74 Warning: rename(1,%safile.tmp): The system cannot find the file specified (code: 2) in %srename_var…
78 ….tmp,): %r(Invalid argument|(The parameter is incorrect|The system cannot find the path specified)…
81 …e.tmp): %r(Invalid argument|(The parameter is incorrect|The system cannot find the path specified)…
85 ….tmp,): %r(Invalid argument|(The parameter is incorrect|The system cannot find the path specified)…
88 …e.tmp): %r(Invalid argument|(The parameter is incorrect|The system cannot find the path specified)…
92 ….tmp,): %r(Invalid argument|(The parameter is incorrect|The system cannot find the path specified)…
106 Warning: rename(%safile.tmp,/no/such/file/dir): The system cannot find the path specified (code: 3)…
109 Warning: rename(/no/such/file/dir,%safile.tmp): The system cannot find the path specified (code: 3)…
113 Warning: rename(%safile.tmp,php/php): The system cannot find the path specified (code: 3) in %srena…
[all …]
H A Dbug41874.phpt14 The system cannot find the drive specified.
15 The system cannot find the drive specified.
H A Ddisk_free_space_error-win32.phpt33 Warning: disk_free_space(): The system cannot find the path specified in %s on line %d
36 Warning: diskfreespace(): The system cannot find the path specified in %s on line %d
H A Dbug41874_1.phpt16 The system cannot find the drive specified.
H A Drename_variation11-win32.phpt89 …renameVar11Sub\\..\\..\renameVar11Sub\IwasRenamed.tmp): The system cannot find the path specified …
94 …,%s\renameVar11\renameVar11Sub\BADDIR\IwasRenamed.tmp): The system cannot find the path specified …
115 Warning: rename(BADDIR\renameMe.tmp,BADDIR\IwasRenamed.tmp): The system cannot find the path specif…
H A Drename_variation12-win32.phpt86 …renameVar11Sub//..//../renameVar11Sub/IwasRenamed.tmp): The system cannot find the path specified …
91 …,%s/renameVar11/renameVar11Sub/BADDIR/IwasRenamed.tmp): The system cannot find the path specified …
112 Warning: rename(BADDIR/renameMe.tmp,BADDIR/IwasRenamed.tmp): The system cannot find the path specif…
/PHP-8.0/ext/oci8/tests/
H A Dbind_unsupported_3.phpt33 Warning: oci_bind_by_name(): Unable to find descriptor property in %sbind_unsupported_3.php on line…
36 Warning: oci_bind_by_name(): Unable to find descriptor property in %sbind_unsupported_3.php on line…
39 Warning: oci_bind_by_name(): Unable to find descriptor property in %sbind_unsupported_3.php on line…
42 Warning: oci_bind_by_name(): Unable to find descriptor property in %sbind_unsupported_3.php on line…
/PHP-8.0/ext/pcre/tests/
H A Dbug72463.phpt14 mail("some.address.it.wont.ever.reach@lookup.and.try.to.find.this.host.name","subject","a", "");
15 mail("some.address.it.wont.ever.reach@lookup.and.try.to.find.this.host.name","subject","a", NULL);
H A Dbug72463_2.phpt14 mail("some.address.it.wont.ever.reach@lookup.and.try.to.find.this.host.name","subject","a", "");
15 mail("some.address.it.wont.ever.reach@lookup.and.try.to.find.this.host.name","subject","a", NULL);
H A Dpreg_match_basic_edit.phpt10 var_dump(preg_match('/l^o,\s\w{5}/', $string, $match2, PREG_OFFSET_CAPTURE)); // tries to find "…
19 var_dump(preg_match('/hello world/', $string, $match5)); //tries to find "hello world" (shoul…
H A Dpreg_match_basic.phpt9 var_dump(preg_match('/l^o,\s\w{5}/', $string, $match2, PREG_OFFSET_CAPTURE)); // tries to find "lo,…
15 var_dump(preg_match('/hello world/', $string, $match5)); //tries to find "hello world" (should be H…
H A Dpreg_match_all_edit_basic.phpt16 var_dump(preg_match_all('/\d{2}$/', $string, $match4)); //tries to find 2 digits at the en…
19 var_dump(preg_match_all('/(This is a ){2}(.*)\stest/', $string, $match5)); //tries to find "T…
/PHP-8.0/build/
H A DMakefile.global113 find . -name \*.gcno -o -name \*.gcda | xargs rm -f
114 find . -name \*.lo -o -name \*.o | xargs rm -f
115 find . -name \*.la -o -name \*.a | xargs rm -f
116 find . -name \*.so | xargs rm -f
117 find . -name .libs -a -type d|xargs rm -rf
137 find . -name \*.lo -o -name \*.o | xargs rm -f
138 find . -name \*.la -o -name \*.a | xargs rm -f
139 find . -name \*.so | xargs rm -f
/PHP-8.0/ext/standard/tests/directory/
H A DDirectoryClass_error_001.phpt53 Unable to find my handle property
54 Unable to find my handle property
55 Unable to find my handle property
H A DDirectoryClass_error_001-mb.phpt63 Unable to find my handle property
64 Unable to find my handle property
65 Unable to find my handle property
/PHP-8.0/ext/enchant/
H A Dconfig.w3216 WARNING('Could not find libenchant.lib; skipping');
25 WARNING('Could not find enchant.h; skipping');
/PHP-8.0/scripts/
H A Dphpize.in80 Cannot find build files at '$phpdir'. Please check your PHP installation.
128 Cannot find autoconf. Please check your autoconf installation and the
136 Cannot find autoheader. Please check your autoconf installation and the
/PHP-8.0/sapi/apache2handler/
H A Dconfig.w3217 WARNING("Could not find apache2 libraries/headers");
36 WARNING("Could not find apache2.2 libraries/headers");
54 WARNING("Could not find apache 2.4 libraries/headers");
/PHP-8.0/ext/standard/tests/network/
H A Dfsockopen_error.phpt38 Warning: fsockopen(): Unable to connect to invalid://127.0.0.1:31337 (Unable to find the socket tra…
40 string(100) "Unable to find the socket transport "invalid" - did you forget to enable it when you c…
/PHP-8.0/ext/iconv/tests/
H A Dbug37176.phpt2 Bug #37176 (iconv_strpos() fails to find a string)
/PHP-8.0/ext/pdo_pgsql/
H A Dconfig.m452 AC_MSG_ERROR(Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path)
56 AC_MSG_ERROR(Cannot find libpq.so. Please specify correct PostgreSQL installation path)
60 AC_MSG_ERROR([Unable to find libpq anywhere under $PGSQL_SEARCH_PATHS])

Completed in 45 milliseconds

123456