代码之家  ›  专栏  ›  技术社区  ›  Arunabh Das

xampp+cake上传文件路径名中出现反斜杠的奇怪情况

  •  0
  • Arunabh Das  · 技术社区  · 14 年前

    在Windows7上安装XAMPP+Cake会引起一个奇怪的问题,即在上传文件的路径名中引入反斜杠。

    1 回复  |  直到 14 年前
        1
  •  1
  •   Leo    14 年前

    是否需要定义目录分隔符?从webroot查看/索引.php:

    /**
     * Use the DS to separate the directories in other defines
     */
        if (!defined('DS')) {
            define('DS', '/');//DIRECTORY_SEPARATOR);
    
    }