dst8922 2014-02-12 16:14
浏览 348
已采纳

解析错误:语法错误,意外T_FUNCTION,[重复]

This question already has an answer here:

what is wrong with this error i dont get it... it actualy works when i m connected to localhost but when i run it on a free domain i get this error: Parse error: syntax error, unexpected T_FUNCTION, expecting ')' in /home/a7812073/public_html/core/init.php on line 21 and i inserted the right info for the mysql server

<?php
session_start();

$GLOBALS ['config'] = array(
    'mysql' => array(
        'host' => '127.0.0.1',
        'username' => 'root',
        'password' => '',
        'db' => 'lr'
    ),
    'remember' => array(
        'cookie_name' => 'hash',
        'cookie_expiry' => 604800
    ),
    'session' => array(
        'session_name' => 'user',
        'token_name' => 'token'
    )
);

spl_autoload_register(function($class) {
    require_once 'classes/' . $class . '.php';

});

require_once 'functions/sanitize.php';
if(Cookie::exists(Config::get('remember/cookie_name')) && !Session::exists(Config::get('session/session_name'))) {
    $hash = Cookie::get(Config::get('remember/cookie_name'));
    $hashCheck = DB::getInstance()->get('users_session', array('hash', '=', $hash));
    if($hashCheck->count()) {
        $user = new User($hashCheck->first()->user_id);
        $user->login();
    }
}
?>
</div>
  • 写回答

1条回答 默认 最新

  • doutang3760 2014-02-12 16:19
    关注

    The problem is that you are attempting to register an anonymous function using spl_autoload_register(), but as you told that you are using PHP5.2 on your web server.

    Unfortunately PHP < 5.3 does not support anonymous functions. You need to write a "regular" function:

    function my_autoload($class) {
        require_once 'classes/' . $class . '.php';
    }
    
    spl_autoload_register('my_autoload');
    

    This will work on PHP >= 5.3 as well.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 MATLAB怎么通过柱坐标变换画开口是圆形的旋转抛物面?
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题
  • ¥15 Visual Studio问题
  • ¥20 求一个html代码,有偿