sql >> データベース >  >> RDS >> Mysql

PHPでのMySQL全文検索の一致したコンテキストの取得(およびセキュリティ)

    これで、「コンテキスト」の部分から始めることができます...

    // return the part of the content where the keyword was matched
    function get_surrounding_text($keyword, $content, $padding)
    {
        $position = strpos($content, $keyword);
        // starting at (where keyword was found - padding), retrieve
        // (padding + keyword length + padding) characters from the content
        $snippet = substr($content, $position - $padding, (strlen($keyword) + $padding * 2));
        return '...' . $snippet . '...';
    }
    
    $content = 'this is a really long string of characters with a magic word buried somewhere in it';
    $keyword = 'magic';
    echo get_surrounding_text($keyword, $content, 15); // echoes '... string with a magic word in it...'
    

    この関数は、キーワードがコンテンツの最初または最後の近くにある場合など、パディング境界がコンテンツ文字列の外側にある場合を考慮していません。また、複数の一致などは考慮されていません。ただし、少なくとも正しい方向を示している必要があります。



    1. Microsoft Accessは2020年も引き続き関連性がありますか?

    2. アクティブな接続がある場合にPostgreSQLデータベースを削除するにはどうすればよいですか?

    3. 異なるデータベースの2つのテーブルを同期する-MySQL

    4. MySql5.1バージョンでEXCEPT演算子を使用する