中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

php strrpos怎樣使用

PHP
小樊
81
2024-11-19 18:59:53
欄目: 編程語言

strrpos() 是 PHP 中的一個字符串函數,用于查找一個字符串在另一個字符串中最后一次出現的位置。函數原型如下:

strrpos(string $haystack, string $needle, int $offset = 0): int

參數說明:

  • $haystack:必需,要在其中搜索 $needle 的字符串。
  • $needle:必需,要在 $haystack 中搜索的字符串。
  • $offset(可選):必需,從該偏移量開始搜索 $needle。默認值為 0,表示從字符串的開頭開始搜索。

返回值:

  • 返回 $needle$haystack 中最后一次出現的位置的索引。如果未找到,則返回 false

示例:

<?php
$haystack = "Hello, I am a PHP developer.";
$needle = "PHP";

// 從字符串的開頭開始搜索
$position = strrpos($haystack, $needle);
if ($position !== false) {
    echo "The last occurrence of '{$needle}' is at position: {$position}.";
} else {
    echo "'{$needle}' not found in the string.";
}

// 從字符串的第 10 個字符開始搜索
$position = strrpos($haystack, $needle, 10);
if ($position !== false) {
    echo "The last occurrence of '{$needle}' starting from position 10 is at position: {$position}.";
} else {
    echo "'{$needle}' not found in the string starting from position 10.";
}
?>

輸出:

The last occurrence of 'PHP' is at position: 27.
The last occurrence of 'PHP' starting from position 10 is at position: 38.

0
九台市| 武夷山市| 霍林郭勒市| 开化县| 潜江市| 师宗县| 和政县| 库车县| 稻城县| 遂溪县| 中阳县| 寿阳县| 仲巴县| 高密市| 延寿县| 栾城县| 安化县| 太湖县| 岳普湖县| 夏津县| 文昌市| 霍州市| 错那县| 榆社县| 仪征市| 石门县| 遂宁市| 凤冈县| 定结县| 皮山县| 江安县| 那曲县| 彝良县| 普宁市| 威海市| 泽州县| 阿克陶县| 雅江县| 克东县| 都兰县| 三门县|