我们在专用Windows服务器上使用WAMP,基本上,我们在常规位置“C:\ wamp \ www”中安装了WAMP。我们有一个文件.json文件,我们想要访问和解码,但我不知道如何从当前位置访问它?
我们试过这个:
$variable = exec("cat C:\\Users\\Administrator\\Desktop\\folder here\\players.json");
echo $variable;
有人有什么想法吗?
答案 0 :(得分:0)
我会包含一些逻辑来检查文件是否存在:
$path = 'C:\\Users\\Administrator\\Desktop\\folder here\\players.json';
if (file_exists($path)) {
$exec = exec("cat $path");
var_dump($exec);
} else {
echo 'File does not exist';
}
这将允许您确定路径是否正确。如果您没有收到错误,则表示您的exec命令有问题。
答案 1 :(得分:0)
如果您只想阅读文件中的内容:
$path = 'C:\\Users\\Administrator\\Desktop\\folder here\\players.json';
if (file_exists($path)) {
$content = file_get_contents($path);
echo $content;
} else {
echo 'File does not exist';
}