gpt4 book ai didi

php - 如何读取 CodeIgniter Controller 中的 JSON 文件

转载 作者:行者123 更新时间:2023-12-05 06:30:56 25 4
gpt4 key购买 nike

我无法在 codeigniter Controller 中读取我的 json 文件,它返回错误。

我的代码:

$curYear = date("Y");
$string = file_get_contents(base_url("assets/data/".$curYear."_cal.json"));

我的 Controller 尝试使用以下方法读取 json 文件时返回错误消息:

file_get_contents(//localhost/EBR_Labeling/assets/data/2018_cal.json): failed to open stream: No such file or directory


已解决

使用这种语法:

file_get_contents("./assets/data/".$curYear."_cal.json")

最佳答案

请使用此代码 --

<?php

$json = file_get_contents(FILE_PATH);
$obj = json_decode($json);
echo '<pre>' . print_r($obj) . '</pre>';

?>

如果您需要任何其他帮助,请告诉我。

谢谢

关于php - 如何读取 CodeIgniter Controller 中的 JSON 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52023447/

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