iconv_strrpos()function 是 PHP 中的內置函數,它在考慮字符串的字符編碼的同時搜索字符串中最後一次出現的子字符串。它類似於strrpos() and strripos()函數,但它支持多字節字符集。
用法:
int|false iconv_strrpos( string $haystack, string $needle, ?string $encoding = null )
參數:該函數接受三個參數,如下所述:
- $haystack:這個參數是我們搜索字符串最後一次出現的位置。
- $needle: 該參數定義了在字符串中搜索子字符串$幹草堆範圍。
- $encoding: 要使用的字符集。默認值是將使用的內部編碼。
返回值:子字符串在字符串中最後一次出現的數字位置,如果在字符串中找不到子字符串,則為 “false”。
示例 1:下麵的程序演示了iconv_strrpos()函數。
PHP
<?php
$str = "Hello world, hello universe!";
$pos = iconv_strrpos($str, "hello");
echo $pos;
?>
輸出:
13
示例 2:下麵的程序演示了iconv_strrpos()函數。
PHP
<?php
$str = "München ist schön. München ist groß.";
$pos = iconv_strrpos($str, "München", "UTF-8");
echo $pos;
?>
輸出:
19
參考:https://www.php.net/manual/en/function.iconv-strrpos.php
相關用法
- PHP iconv_strlen()用法及代碼示例
- PHP iconv_strpos()用法及代碼示例
- PHP iconv_substr()用法及代碼示例
- PHP iconv_set_encoding()用法及代碼示例
- PHP iconv_mime_encode()用法及代碼示例
- PHP iconv_mime_decode_headers()用法及代碼示例
- PHP iconv_mime_decode()用法及代碼示例
- PHP iconv_get_encoding()用法及代碼示例
- PHP iconv()用法及代碼示例
- PHP is_finite()用法及代碼示例
- PHP is_infinite()用法及代碼示例
- PHP is_nan()用法及代碼示例
- PHP is_file()用法及代碼示例
- PHP is_uploaded_file()用法及代碼示例
- PHP interface_exists()用法及代碼示例
- PHP is_subclass_of()用法及代碼示例
- PHP imap_8bit()用法及代碼示例
- PHP imap_alerts()用法及代碼示例
- PHP imap_append()用法及代碼示例
- PHP imap_base64()用法及代碼示例
- PHP imap_binary()用法及代碼示例
- PHP imap_body()用法及代碼示例
- PHP imap_bodystruct()用法及代碼示例
- PHP imap_check()用法及代碼示例
- PHP imap_clearflag_full()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP iconv_strrpos() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。