运行此 PHP 代码时:
// test value
$value = "123456-7890";
// remove blank spaces and explode
$value = str_replace(' ', '', $value);
$value = explode('-', $value);
// check number of digits depending on format
if ((count($value) == 1 && strlen($value[0]) != 10) || (strlen($value[0]) != 6 || strlen($value[1]) != 4))
{
echo "wrong number of digits!";
}
我收到以下错误:
PHP Fatal error: Call to undefined function () in /Users/Rikard/Desktop/test.php on line 10
据我所知,这部分出现了问题:strlen($value[0]) != 10
但我看不出它为什么会出现,有什么想法吗?