PHP解析错误:语法错误,意外的'DB_USER'(T_STRING),在/public_html/wp-config.php中的第26行上期望为','或')'

时间:2019-03-01 13:28:27

标签: php wordpress

  

PHP解析错误:语法错误,意外的'DB_USER'(T_STRING),在/public_html/wp-config.php中的第26行上期望为','或')'

我收到此错误,不知道如何解决?有人可以建议吗?谢谢。我从事此工作已经有一段时间了,因为我是代码新手,非常感谢您的帮助。

// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'newsite’);

/** MySQL database username */
define('DB_USER', ‘user’);

/** MySQL database password */
define('DB_PASSWORD', ‘password’);

/** MySQL hostname */
define('DB_HOST', 'localhost');

/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8mb4');

/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');

1 个答案:

答案 0 :(得分:-1)

您正在使用两种不同类型的单引号。本地主机(')周围的地址很好,而用户(')周围的地址则不好。它应如下工作:

// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'newsite');

/** MySQL database username */
define('DB_USER', 'user');

/** MySQL database password */
define('DB_PASSWORD', 'password');

/** MySQL hostname */
define('DB_HOST', 'localhost');

/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8mb4');

/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');