在 PHP 中将 CSV 转换为嵌套的 JSON object,Drupal 8
Turning a CSV into a nested JSON object in PHP, Drupal 8
我正在尝试将 CSV 转换为 JSON object 文件中每一行的嵌套数组。
我尝试了一些类似的 SO 问题,但没有找到完全正确的解决方案。
我正在尝试根据 CSV 每一行中的第一个值设置一个 JSON object 和一些嵌套的 object。
我的标题为 data_source.csv 的 CSV 文件如下所示:
Organisation ID,Organisation Name,Postcode,Industry
111,Organisation A,SW2 4DL,School
123,Organisation B,S2 5PS,School
234,Organisation C,EC2 3AD,School
...there are several more rows
我的 PHP 代码(在 Drupal 8 的控制器中):
namespace Drupal\webform_autocomplete_csv\Controller;
use Drupal\Core\Controller\ControllerBase;
class WebformAutocompleteCsvController extends ControllerBase {
public function content() {
//make sure file can be accessed
if (($handle = fopen('sites/default/files/data_source.csv', 'r')) === false) {
die('Error opening file');
}
$organisation_id = fgetcsv($handle);
//take the first value on each row
array_shift($organisation_id);
//create an array
$data = array();
while ($row = fgetcsv($handle)) {
$key = array_shift($row);
$data[$key] = array_combine($organisation_id, $row);
}
$json_object = json_encode($data);
return $json_object;
} //close content()
}
理想情况是单个 JSON object 和一系列嵌套的 object,例如:
Object {
111 {
Organisation Name:Organisation A,
Postcode: SW2 4DL,
Industry: School
},
123 {
Organisation Name:Organisation b,
Postcode: S2 5PS,
Industry: School
},
234 {
Organisation Name:Organisation C,
Postcode: EC2 3AD,
Industry: School
}
}
我的 PHP 代码设置是否尽可能有效?
当我在本地环境中 运行 执行此操作时,我收到一条错误消息:'LogicException: The controller must return a response ([the json object])'
所以我的 JSON object 包含在错误消息中,这令人鼓舞,但不清楚为什么它是 LogicException 的一部分。
也许你需要return一个JsonResponse
use Symfony\Component\HttpFoundation\JsonResponse;
return new JsonResponse($json_object);
我正在尝试将 CSV 转换为 JSON object 文件中每一行的嵌套数组。
我尝试了一些类似的 SO 问题,但没有找到完全正确的解决方案。
我正在尝试根据 CSV 每一行中的第一个值设置一个 JSON object 和一些嵌套的 object。
我的标题为 data_source.csv 的 CSV 文件如下所示:
Organisation ID,Organisation Name,Postcode,Industry
111,Organisation A,SW2 4DL,School
123,Organisation B,S2 5PS,School
234,Organisation C,EC2 3AD,School
...there are several more rows
我的 PHP 代码(在 Drupal 8 的控制器中):
namespace Drupal\webform_autocomplete_csv\Controller;
use Drupal\Core\Controller\ControllerBase;
class WebformAutocompleteCsvController extends ControllerBase {
public function content() {
//make sure file can be accessed
if (($handle = fopen('sites/default/files/data_source.csv', 'r')) === false) {
die('Error opening file');
}
$organisation_id = fgetcsv($handle);
//take the first value on each row
array_shift($organisation_id);
//create an array
$data = array();
while ($row = fgetcsv($handle)) {
$key = array_shift($row);
$data[$key] = array_combine($organisation_id, $row);
}
$json_object = json_encode($data);
return $json_object;
} //close content()
}
理想情况是单个 JSON object 和一系列嵌套的 object,例如:
Object {
111 {
Organisation Name:Organisation A,
Postcode: SW2 4DL,
Industry: School
},
123 {
Organisation Name:Organisation b,
Postcode: S2 5PS,
Industry: School
},
234 {
Organisation Name:Organisation C,
Postcode: EC2 3AD,
Industry: School
}
}
我的 PHP 代码设置是否尽可能有效?
当我在本地环境中 运行 执行此操作时,我收到一条错误消息:'LogicException: The controller must return a response ([the json object])'
所以我的 JSON object 包含在错误消息中,这令人鼓舞,但不清楚为什么它是 LogicException 的一部分。
也许你需要return一个JsonResponse
use Symfony\Component\HttpFoundation\JsonResponse;
return new JsonResponse($json_object);