PHP Function List
strpost doesn't exist. Closest matches:
- strpos
- stripos
- strrpos
- strripos
- strstr
- mb_strpos
- stristr
- mb_strrpos
- mb_stripos
- strtr
- mb_strripos
- strptime
- iconv_strpos
- mb_strstr
- str_split
- str_rot13
- strcmp
- strspn
- strtok
- pos
Site Search Results
-
返回 needle 在 haystack 中首次出现的数字位置。与 strrpos() 不同,在 PHP 5 之前,该函数可以使用一个完整字符串作为 needle,并且整个字符串都将被使用。
-
Parameters haystack The string to search in. needle If needle is not a string, it is converted to an integer and applied as the ordinal value of a character. offset If specified, search will start this number of characters counted from ...
-
Parameter-Liste haystack Die Zeichenkette, in der gesucht werden soll. needle Ist needle kein String, wird der Parameter in einen Integerwert konvertiert, der dem Ordinalwert des Zeichens entspricht.
-
Parameters haystack The string being checked. needle The string to find in haystack. In contrast with strpos(), numeric values are not applied as the ordinal value of a character. offset
-
Parameters haystack The string to search in. needle If needle is not a string, it is converted to an integer and applied as the ordinal value of a character. offset If specified, search will start this number of characters counted from the ...
-
参数 string 输入字符串。 start 如果 start 是非负数,返回的字符串将从 string 的 start 位置开始,从 0 开始计算。例如,在字符串 “abcdef” 中,在位置 0 的字符是 “a”,位置 2 的字符串是 “c ...
-
返回字符串 haystack 中 needle 最后一次出现的数字位置。注意 PHP4 中,needle 只能为单个字符。如果 needle 被指定为一个字符串,那么将仅使用第一个字符。
-
mb_strpos() used in a loop on a long string may become very slow even if you provide the $offset. Unlike strpos(), mb_strpos() has to skip the number of characters every call specified by $offset to get the real byte position used internally.
-
Finds position of first occurrence of a needle within a haystack. In contrast to strpos(), the return value of iconv_strpos() is the number of characters that appear before the needle, rather than the offset in bytes to the position where the needle ...
-
Returns part of haystack string starting from and including the first occurrence of needle to the end of haystack. Note: This function is case-sensitive. For case-insensitive searches, use stristr().

Other forms of search
To search the string "strpost" using other options, try searching:
- Only the documentation
- Only this mirror
- The entire php.net domain
- pear.php.net
- pecl.php.net
- The Bug DB
- php-general mailing list
- Internals mailing list
- Documentation mailing list
For a quick overview over all documented PHP functions, click here.
