解析错误:第4行语法错误,意外“公共”(T_STRING),期待功能(T_FUNCTION)
<?php
// Redirect Page Function
class Redirect {
public function __construct($url = null) { \\ this is line 4
if ($url)
{
echo '<script>location.href="'.$url.'";</script>';
}
}
}
?>
答案 0 :(得分:0)
请删除评论,您的代码应该可以正常使用。
这是您应该删除的内容:
\这是第4行