我是php的新手,我需要使用其他人的代码。当我尝试运行它时,我收到此错误:
Cannot redeclare App\Core\view() (previously declared in
D:\sandbox\app\Core\View.php:35) in D:\sandbox\app\Core\View.php on line 35
虽然D:\ sandbox \ app \ Core \ View.php第32-50行中的实际代码是:
public static function register()
{
if (!function_exists('view')) {
function view($view, $data)
{
return View::view($view, $data);
}
}
}
public static function view($view, $data)
{
$result = ...;
return $result;
}
项目中几乎没有包含,因为它似乎是一些自制的PHP框架