gpt4 book ai didi

php - 不保存到json文件(php+redis)?

转载 作者:可可西里 更新时间:2023-11-01 11:48:12 26 4
gpt4 key购买 nike

为什么数据没有记录在json文件中?为什么不创建此文件?我在 Linux 操作系统中编写代码我在本地运行

$r = new Redis(); 
$r->connect('127.0.0.1', 6379);

$key="info_users";

$r->hmset($key, [
'id' => 1,
'username' => 'sajjad10ss',
'password' => '1q2w3edxsz0',
'fulname' => 'sajjad kazemi',
'email' => 'linux@kernel.vom',
]);
$data=array();
$data[] = $r->hgetall($key);

$json= json_encode($data, JSON_PRETTY_PRINT);

header('Content-type: text/javascript');
if (file_put_contents('xldata.json', $json))
{
echo "Saved json to file...";
}
else{
echo "Oops! Error saving json...";
}

Why give out the following? Oops! Error saving json...;

最佳答案

这很可能是权限问题。您可以使用 is_writable()检查是否是问题所在。

你应该 chown运行脚本的用户目录,例如chown nginx:nginx xldata.json 如果它在 nginx 下运行。

我还针对您的 file_put_contents() 失败稍微更改了语法。

$r = new Redis(); 
$r->connect('127.0.0.1', 6379);

$key="info_users";

$r->hmset($key, [
'id' => 1,
'username' => 'sajjad10ss',
'password' => '1q2w3edxsz0',
'fulname' => 'sajjad kazemi',
'email' => 'linux@kernel.vom',
]);
$data=array();
$data[] = $r->hgetall($key);

$json= json_encode($data, JSON_PRETTY_PRINT);

if (! is_writable('xldata.json') {
die('Unable to write to xldata.json');
}
file_put_contents('xldata.json', $json) or die('Could not write to json file');

header('Content-type: text/javascript');
echo $json;

关于php - 不保存到json文件(php+redis)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45343285/

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