未定义的偏移量:1 file_get_contents

时间:2013-04-23 18:34:14

标签: php undefined file-get-contents offset

我最近更改了我的服务器代码不再有效,而在我的旧服务器上它完美运行。

<?php
ini_set('display_errors', 1);
ini_set('error_reporting', E_ALL | E_STRICT);

$myid = "110988448104041785223";
$plus = file_get_contents("http://plus.google.com/$myid/plusones");
$match = array(); 
preg_match('/<div aria-hidden="true" class="BT"><a href="(.*?)"/',$plus,$match);
$data['url'] = $match[1];
echo strtolower($data['url']);
?>

Reurn:未定义的偏移量:第9行的第1行

我在.htaccess中添加了这个(我不知道是否有必要):

php_value magic_quotes 0
php_flag magic_quotes Off
php_value magic_quotes_gpc 0
php_flag magic_quotes_gpc Off
php_flag allow_url_include On

PHP Version 5.2.17 - 旧服务器工作精细;和PHP版本5.3.23 - 新服务器。

由于

1 个答案:

答案 0 :(得分:0)

这意味着它找不到匹配项,但无论如何都要尝试访问结果数组。

你应该有这个:

if( preg_match('/<div aria-hidden="true" class="BT"><a href="(.*?)"/',$plus,$match)) {
    $data['url'] = $match[1];
    echo strtolower($data['url']);
}
else echo "ERROR: No match found!";