I am fetching data from http://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=shahrukh khan and I am geting response when I use the following code to store some fields of the returned data I get errors
/** fetch image from google images **/ $url = "http://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=".$api_q."&userip=".Request::getClientIp(); $body = json_decode(file_get_contents($url)); /dd($body);/ foreach($body as $bodies) { $cover = $bodies->url; } dd($cover);
I have also tried for loop and then $body[$i]->url; and every possible solution I can think of
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community