0

我正在尝试使用 SimpleHTMLDom 进行抓取,并且似乎遇到了问题。

我的代码如下:

$table = $html->find('table',0);
$theData = array();
foreach(($table->find('tr')) as $row) {

    $rowData = array();
    foreach($row->find('td') as $cell) {

        $rowData[] = $cell->innertext;
    }

    $theData[] = $rowData;
}

function array_find($needle, array $haystack)
{
    foreach ($haystack as $key => $value) {
        if (false !== stripos($needle, $value)) {
            return $key;
        }
    }
    return false;
    }

$searchString = "hospitalist";
$position = array_find($searchString, $theData);
echo ($position);

这会产生以下错误:

Warning: stripos() [function.stripos]: needle is not a string or an integer in C:\xampp\htdocs\main.php on line 85

我究竟做错了什么?

4

3 回答 3

1

您在调用 stripos 时反转了实际参数的顺序。请参阅http://us3.php.net/manual/en/function.stripos.php。只需颠倒参数的顺序即可修复该错误。

改变:

if (false !== stripos($needle, $value)) {

if (false !== stripos($value, $needle)) {
于 2011-08-10T21:54:48.237 回答
1

docs开始,您应该是第二个,而不是第一个。尝试这个:

function array_find($needle, array $haystack)
{
    foreach ($haystack as $key => $value) {
        if (false !== stripos($value, $needle)) {
            return $key;
        }
    }
    return false;
    }
于 2011-08-10T21:54:51.290 回答
0

该消息指的是函数参数,stripos而不是您的变量名为$needle.

int stripos ( string $haystack , string $needle [, int $offset = 0 ] )

它实际上是在抱怨 $value

于 2011-08-10T21:55:09.993 回答