htmlspecialchars()期望参数1为字符串,给定数组 - Laravel

时间:2018-05-31 13:33:15

标签: php laravel laravel-5 guzzle

这些是我的控制器

public static function getAccessToken()
{

    $url = 'http://api.tech/oauth/authenticate';
    $query = [
        'grant_type' => 'client_credentials',
        'client_id' => 'E3PuC',
        'client_secret' => 'IhvkpkvMdAL7gqpL',
        'scope' => 'bookings.read,images.create,images.read,images.update,locations.read,rates.read,rates.update,reports.read,reviews.read,rooms.create,rooms.delete,properties.read',
    ];

    $client = new Client();

    $response = $client->get($url, ['query' => $query]);

    $content = json_decode($response->getBody()->getContents());

    if ($content) {

        return $content->access_token;
    } else {
        return null;
    }
}
 public function getReviews()
{
    $client = new Client();
    $access_token = $this->getAccessToken();
    $url = 'http://api.tech/hotels/88244/reviews';
    $query = [
        'access_token' => $access_token,
    ];

    $response = $client->get($url, ['query' => $query]);

    $content = json_decode($response->getBody()->getContents());

    if ($content->status == 'success') {

        // return $content->access_token;
       return $content->data;
    //    return $response;
    } else {
        return null;
    }

}
 public function index()
{
    $content = $this->getReviews();
     return view('channel.channel', [
        'content' => $content
    ]);
}

当我尝试输出我的刀片中的内容作为链接时,它说---

htmlspecialchars()期望参数1为字符串,给定数组为

这是我的刀片文件

<a href="{{$content}}">This</a>

当我尝试输出它时也会抛出错误

{{$content}}

请问如何解决错误 我的问题不是一个重复的原因,一旦我显示一个数组,我想要一个链接在另一个页面上显示该数组

0 个答案:

没有答案