Joomla 1.5 configuration.php中的几个MySQL用户

时间:2013-11-27 13:41:42

标签: php joomla1.5

为了解决MySQL 1226错误,我遵循this推荐,但它不起作用。 我收到一个错误: 解析错误:语法错误,第38行的configuration.php中出现意外的T_VARIABLE

configuration.php内容:

1:<?php
2:class JConfig {
.....
37:public $users = array("root", "boot", "foot");
38:public $user = $users[array_rand($users)];
.....
90:}
91:?>

请帮我解决。

1 个答案:

答案 0 :(得分:0)

通过添加__construct()函数解决问题:

var $user = '';
var $users = array("root", "boot", "foot");

    public function __construct() { 
    $this->user = $this->users[mt_rand(0, count($this->users) - 1)]; 
    }