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

时间:2010-09-08 21:13:19

标签: cakephp xampp

Windows 7上的XAMPP + Cake安装导致在上传文件的路径名中引入反斜杠的奇怪问题。

1 个答案:

答案 0 :(得分:1)

是否需要定义目录分隔符?请参阅webroot / index.php:

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

}

/ **