我正在使用简单的strposa PHP 函数来搜索 html 页面中的文本。
$ItemsToGet[ ] = "Alpha One";
$ItemsToGet[ ] = "Alpha Fifty"
$ItemsToGet[ ] = "FoxTrot Twelve";
$ItemsToGet[ ] = "Bravo Six";
$ItemsToGet[ ] = "Alpha Niner";
if ( strposa( $rawPage, $itemsToGet, 1 ) !== false )
{
//echo the current $itemsToGet aka the element that got the match from
//$itemsToGet
}
function strposa( $haystack, $needles = array( ), $offset = 0 ) {
$chr = array( );
foreach ( $needles as $needle )
{
$res = strpos( $haystack, $needle, $offset );
if ( $res !== false )
$chr[ $needle ] = $res;
}
if ( empty( $chr ) )
return false;
return min( $chr );
}
如果strposa找到匹配项并遍历括号,我想将它当前所在的数组项添加到另一个数组中......就像这样......
$foundArray[ ] = $itemsToGet;
但是,我不确定如何引用当前元素。使用current($itemsToGet)
总是返回第一个元素。这甚至可能吗?除了 strposa 之外,我还必须找到其他东西吗?