gpt4 book ai didi

PHP如何转义文件路径的字符

转载 作者:行者123 更新时间:2023-12-02 08:21:01 25 4
gpt4 key购买 nike

$filePath="c:\tmp\2012\tmp\test.txt";

$array=explode("\",$filePath);

foreach($array as $test){
echo $test;
}

我想用“\”分隔$filePath,但是转义字符..怎么解决这个问题呢?非常感谢您

最佳答案

您需要使用单引号:

$filePath='c:\tmp\2012\tmp\test.txt';

或者双重转义:

$filePath="c:\\tmp\2012\\tmp\\test.txt";

请注意,您的 explode 调用中需要两个斜杠:

$array=explode("\\",$filePath);

关于PHP如何转义文件路径的字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28994941/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com