Thứ Ba, 3 tháng 12, 2013

PHP - function strallpos Lấy vị trí chuỗi ra mảng

    function strallpos($pajar, $aguja, $offset=0, &$count=null) {
        if ($offset > strlen($pajar)) trigger_error("strallpos(): Offset not contained in string.", E_USER_WARNING);
        $match = array();
        for ($count=0; (($pos = strpos($pajar, $aguja, $offset)) !== false); $count++) {
            $match[] = $pos;
            $offset = $pos + strlen($aguja);
        }
        return $match;
    }

Không có nhận xét nào: