0

给定一个包含许多字符串的文本文件。

例如,如果搜索red apples,则以下代码:

$search = "red apples";
$contents = file_get_contents("file.txt");
$pattern = "/^.*$search*\$/m";
preg_match_all($pattern, $contents, $matches);
implode("\n", $matches[0]);

将返回(连同其他字符串)以下一个:

Plate with many red apples blah blah

我需要找到相同的字符串,但要搜索apples red。有没有办法做到这一点?

谢谢。

4

2 回答 2

1
$search_inversed = implode(' ', array_reverse(explode(' ', $search)));
于 2012-12-18T21:37:13.730 回答
1

试试这样:

<?php

$string = 'Lets locate red apple, or even, apple red!';

$search = 'red apple';

$search_parts = ( strpos( ' ', $search ) !== false ) ? explode( ' ', $search ) : array( $search );

preg_match_all( '#(' . preg_quote(  implode( ' ', $search_parts ), '#' ) . ')|(' . preg_quote( implode( ' ', array_reverse( $search_parts ) ), '#' ) . ')#i', $string, $matches );

echo '<pre>' ;
print_r( $matches[0] );
echo '</pre>' ; 

?>

请注意使用 strpos() 和 preg_quote() 来避免正则表达式模式错误。

于 2012-12-19T02:41:22.090 回答