我们在专用 Windows 服务器上使用 WAMP,基本上,我们在常规位置“C:\wamp\www”中安装了 WAMP。我们有一个文件 .json 文件,我们想要访问和解码,但我不知道如何从当前位置访问它?
我们已经尝试过:
$variable = exec("cat C:\\Users\\Administrator\\Desktop\\folder here\\players.json");
echo $variable;
有人有想法么?
我会包含一些逻辑来检查文件是否存在:
$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 命令有问题。
如果您只想阅读文件中的内容:
$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';
}