91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
汉寿县| 崇文区| 宁明县| 阿城市| 邵东县| 永康市| 合阳县| 乐清市| 深圳市| 开封县| 铁岭县| 江阴市| 涡阳县| 曲靖市| 昌都县| 平昌县| 唐海县| 罗定市| 叙永县| 康乐县| 西吉县| 绩溪县| 泗水县| 澄江县| 清镇市| 南皮县| 安平县| 泸水县| 大冶市| 富锦市| 山西省| 泽普县| 涡阳县| 新竹县| 墨脱县| 胶南市| 巩留县| 新巴尔虎右旗| 东兰县| 西畴县| 古田县|