PHP简单搜索示例

问题描述 投票:0回答:3

我正在学习PHP,并在文本文件脚本中进行了一些搜索。这是一连串的事件:

  1. 打开文本文件
  2. 从每个新行创建数组
  3. 如果提交表单,则将发布数据放入运行正则表达式的函数中,以查找部分字符串或单词,如果匹配,则所有条目将在代码中替换为带有CSS的类。

我的问题是:

如果我有这样的句子:

汤姆手里拿着照相机。我也是地板上的相机。

并搜索“ am”,它搜索并找到相机,将其替换为span类。然后,它会找到“ am”,并在Camera中将其本身替换两次。

这是我的代码:

    //---- Puts Array into or responds with error
    $lines = file($filename, FILE_IGNORE_NEW_LINES);
    if ( !is_array($lines) ) {
       echo 'Cannot create array from file';
    }

    //---- Scans and Displays Lines
    $submission = $_GET['Search'];
    function scanLines($lines, $submission) {
        foreach($lines as $line) {      
            if(strpos($line,$submission)!== false){             
                preg_match_all("/\b[a-z]*".preg_quote($submission)."[a-z]*\b/i", $line, $matches);  

                $i = 0;
                foreach($matches[$i] as $match) {   
                    $line = str_replace($match, '<span class="highlight">'.$match.'</span>', $line);
                $i++;                   
            }
            echo $line;
        }       
    }       
}

直接链接到示例:http://www.effectivemark.com/testphp/

我的问题是:什么是在相机中过滤掉“ am”的最佳方法,因此它不会像下面那样添加带有span标签的字符串:

    <span class="highlight">c<span class="highlight">am</span>era</span>

更新的代码:

//---- Scans and Displays Lines
$submission = $_GET['Search'];
function scanLines($lines, $submission) {
    foreach($lines as $line) {      
        if(strpos($line,$submission)!== false){ 

            $words = explode(' ', $line);
            $i = 0;
            $combine = array();
            foreach($words as $word) {
                if (preg_match("/\b[a-z]*".preg_quote($submission)."[a-z]*\b/i", $word)) {
                    preg_match_all("/\b[a-z]*".preg_quote($submission)."[a-z]*\b/i", $word, $match);
                    $matches = '<span class="highlight">' . $match[0][0] . '</span>';
                }
                else { 
                    $matches = $word;
                }
                array_push($combine, $matches);
            $i++;
            }

            foreach($combine as $combined) {
                echo $combined . ' ';
            }
        }       
    }       
}
php search
3个回答
3
投票

您最好将行划分为单词,这样可以使它们容易匹配


0
投票

我认为这样可以:

    <form action="" method="post">
    <h4>Search Object In Text File:</h4>
    <input type="text" name="search" value="">
    <input type="submit" value="Submit" name="Submit">
    </form>
    <?php
        $filename="tekst.txt";
        $lines = file($filename, FILE_IGNORE_NEW_LINES);

        if ( !is_array($lines) ) {
            echo 'Cannot create array from file';
        }

        //---- Scans and Displays Lines

        if(isset($_POST['search']))    
$submission = $_POST['search'];
        scanLines($lines,$submission);

        function scanLines($lines, $submission) {
            foreach($lines as $line) {
                $word_arr=str_word_count($line,1);
                $length=count($word_arr);
                for($i=0;$i<$length;$i++) {

                    if(preg_match("#$submission#",$word_arr[$i],$match)) {
                        $word_arr[$i]='<span class="highlight">'.$word_arr[$i].'</span>';
                        $new_line=implode(' ',$word_arr);
                        echo $new_line.'<br>';
                    }

                }

            }

        }

        ?>

因此,如果您要搜索单词的任何部分,并突出显示整个单词,而不是仅匹配的部分。对于完整(更严格的)全字搜索,您只需使用简单的in_array()函数即可。

© www.soinside.com 2019 - 2024. All rights reserved.