亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
长乐市| 雅江县| 桐城市| 玉山县| 小金县| 临武县| 石楼县| 连山| 三亚市| 江华| 潢川县| 张北县| 新化县| 隆化县| 滨州市| 加查县| 潞城市| 新建县| 东平县| 德格县| 北票市| 阿城市| 思南县| 清水县| 博乐市| 武定县| 龙陵县| 临沧市| 宝兴县| 石门县| 溧水县| 西青区| 旬阳县| 黄石市| 东港市| 昭苏县| 龙岩市| 突泉县| 晴隆县| 满洲里市| 双流县|