未定义的偏移 PHP 错误
我在 PHP 中收到以下错误
注意未定义的偏移量 1:在 C:\wamp\www\include\imdbgrabber.php第 36 行
以下是导致它的PHP代码:
<?php
# ...
function get_match($regex, $content)
{
preg_match($regex,$content,$matches);
return $matches[1]; // ERROR HAPPENS HERE
}
错误是什么意思?