我正在学习 php,我正在尝试使用 Guzzle 从 http 请求中获取 php 文件,然后从这些内容中获取特定的数组并忽略其余的。但我不确定如何获取该数组。
<?php
require_once "vendor/autoload.php";
use GuzzleHttp\Client;
$client = new Client();
$response = $client->request('GET', 'http://api-address/file.php');
$body = $response->getBody();
$decoded = json_decode($body, true);
$contents = file_get_contents($decoded);
当我打印 $contents 时,它看起来符合预期,例如:
<?php
$var = "example string";
$array = [
[
'name' => 'stuff I need'
]
];
我只想获取数组,迭代它并将每个写入文件,但我不知道如何获取该数组并忽略该数组中不存在的其他内容(如果有意义的话)。任何帮助,将不胜感激。
开心每一天1111