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

溫馨提示×

php strrpos怎么實現

PHP
小樊
81
2024-11-19 19:01:52
欄目: 編程語言

strrpos() 是 PHP 中的一個內置函數,用于在字符串中從后向前查找子字符串的最后一個出現位置

function strrpos_custom($haystack, $needle) {
    $haystack_length = strlen($haystack);
    $needle_length = strlen($needle);

    for ($i = $haystack_length - $needle_length; $i >= 0; $i--) {
        if (substr($haystack, $i, $needle_length) === $needle) {
            return $i;
        }
    }

    return -1;
}

// 使用示例
$haystack = "Hello, welcome to the world of PHP!";
$needle = "PHP";

$position = strrpos_custom($haystack, $needle);

if ($position !== -1) {
    echo "The last occurrence of '{$needle}' is at position: {$position}";
} else {
    echo "The substring '{$needle}' was not found in the string.";
}

這個 strrpos_custom() 函數首先計算輸入字符串和要查找的子字符串的長度。然后,它從字符串的末尾開始逐個檢查每個子字符串,直到找到與子字符串匹配的部分或到達字符串的開頭。如果找到匹配項,函數返回該子字符串在原始字符串中的位置;否則,返回 -1。

0
钟祥市| 石楼县| 嘉峪关市| 永川市| 漳平市| 凤凰县| 民权县| 平度市| 建平县| 玉田县| 三亚市| 德江县| 东丰县| 泾川县| 兴国县| 吴忠市| 杭锦旗| 新田县| 大荔县| 金平| 蚌埠市| 崇信县| 平遥县| 仙游县| 卢氏县| 金川县| 团风县| 岑巩县| 东兴市| 墨竹工卡县| 开阳县| 名山县| 湖南省| 武夷山市| 长泰县| 磴口县| 北川| 布拖县| 吉安县| 阿拉尔市| 昭平县|