解析错误:*:\ Users \ ****** \ ****** \ xampp \ htdocs \ ****** \ inc \ php \中的语法错误,意外';',期待')'第25行的arrays.php

时间:2017-02-28 13:47:03

标签: php

has_attached_file :photo,
  :styles => {
  :thumb => "100x100#" },
  :convert_options => {
  :thumb => "-quality 75 -strip" }

我遇到上述代码时遇到问题。 它说这是一个错误,但我认为这只是胡说八道...... 我真的不知道如何解决这个问题...... 提前致谢! 是的,我希望登录使用数组,我不需要任何数据库。

1 个答案:

答案 0 :(得分:0)

在最后一行之前,您有;个无效的字符。

$tools = array(
    'xtr3m3' => array(
        'root',
        'ceo',
        'test123'
    );
);

应该是

$tools = array(
    'xtr3m3' => array(
        'root',
        'ceo',
        'test123'
    )
);