iconv_strpos() 是 PHP 中的內置函數,用於查找子字符串中的位置並返回該位置。
用法:
iconv_strpos( string $haystack, string $needle, int $offset = 0, ?string $encoding = null ): int|false
Parameters: 該函數有 4 個參數,如下所述:
- $haystack: 該參數指定完整的字符串。
- $needle:該參數指定要搜索的子字符串。
- $offset: 的位置在$幹草堆開始搜索。如果發現 offset 值為負,它將從字符串末尾開始計算。
- $encoding: 該參數指定要使用的字符集。默認值是使用的內部編碼集。它轉換並提供字符串,如果在字符串中找不到大海撈針或針,則將其實現為字符的序數值。
返回值: iconv_strpos()返回第一次出現的$針在$幹草堆否則它將返回“false”$針未找到於$幹草堆.
示例 1:下麵的程序演示了iconv_strpos()函數。
PHP
<?php
$str = "Hello world!";
$pos = iconv_strpos($str, 'world');
echo $pos;
?>
輸出:
6
示例 2:下麵的程序演示了iconv_strpos()函數
PHP
<?php
$str = "München ist schön.";
$pos = iconv_strpos($str, 'schön', 0, 'UTF-8');
echo $pos;
?>
輸出:
12
參考:https://www.php.net/manual/en/function.iconv-strpos.php
相關用法
- PHP iconv_strlen()用法及代碼示例
- PHP iconv_strrpos()用法及代碼示例
- 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_strpos() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。