Thứ Ba, 3 tháng 12, 2013

PHP - Function SEO - Gắn tag vào str + Nhận dạng cụm từ trong câu



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;
    }
function phathien_str($str,$needs){

    $str_posss=strallpos($str,$needs);
    return $str_posss;

}
?>
<!DOCTYPE html>
        <html>
            <head>
                <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
                <title>Title Page</title>
                <meta name="viewport" content="width=device-width, initial-scale=1.0">
                <!-- Bootstrap CSS -->
                <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" media="screen">
            </head>
            <body><div class="container">
                            <h1 class="text-center">Hello World</h1>
                    <?php

            $str = '
Mình thấy trên  triệu đồng mạng có dòng điện thoại Samsung Galaxy Note 3 N9002  triệu đồng Dual 16 GB, nhưng không biết là sử dụng có tốt không.
Nghe nói  triệu đồng là dòng điện thoại  triệu đồng này dùng 2 sim mà chỉ sản xuất cho Trung Quốc thôi. Mình đang tìm hiểu tính mua con  triệu đồng này, những
ai đã sử dụng qua xin tư  triệu đồng vấn giúp, giá mình thấý khoảng 18,5 triệu đồng, không biết là có đắt quá không?
            ';
$str=str_replace("triệu đồng", "<a href='http://vus.vn'>triệu đồng</a>", $str);
echo $str;
echo "<pre>";
    print_r(phathien_str($str,"triệu đồng"));
echo "</pre>";   


                     ?></div>
                <!-- jQuery -->
                <script src="//code.jquery.com/jquery.js"></script>
                <!-- Bootstrap JavaScript -->
                <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
            </body>
        </html>       
        <?php
       
die ('deptrai');

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