thinkcmf中UeditorController.php中的一个问题?

我在UeditorController.php中打印dump($config),
$config是事外配置好的

$config = [
            "savePath"   => $strSavePath,            //保存路径
            "allowFiles" => $allowedExts,// [".gif", ".png", ".jpg", ".jpeg", ".bmp"], //文件允许格式
            "maxSize"    => $uploadMaxFileSize                    //文件大小限制,单位KB
        ];

但是我打印出来是下面这样的,自动有个<pre></pre>而且中是有可多=>,这是为什么?

<pre>array(3) {
  ["savePath"] =&gt; string(53) "/www/wwwroot/www.chunten.com/public/ueditor/20230809/"
  ["allowFiles"] =&gt; array(5) {
    [0] =&gt; string(3) "jpg"
    [1] =&gt; string(4) "jpeg"
    [2] =&gt; string(3) "png"
    [3] =&gt; string(3) "gif"
    [4] =&gt; string(4) "bmp4"
  }
  ["maxSize"] =&gt; string(5) "20480"
}
</pre>
阅读 2.3k
1 个回答

因为<pre></pre> 标签和 =>输出被转成 HTML了,用下面的方法试试:

print_r($config);

或者:

var_dump($config);
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
宣传栏