Fix encoding issue
This commit is contained in:
		@@ -1,4 +1,5 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
namespace App\Services;
 | 
			
		||||
 | 
			
		||||
use Illuminate\Support\Facades\Http;
 | 
			
		||||
@@ -11,15 +12,15 @@ class Client
 | 
			
		||||
     * @param  mixed $url
 | 
			
		||||
     * @return array
 | 
			
		||||
     */
 | 
			
		||||
    public function get($url) : array
 | 
			
		||||
    public function get($url): array
 | 
			
		||||
    {
 | 
			
		||||
        $response = Http::get($url);
 | 
			
		||||
 | 
			
		||||
        if(!$response->ok())
 | 
			
		||||
        {
 | 
			
		||||
        if (!$response->ok()) {
 | 
			
		||||
            throw new \Exception("Error getting the rss feed");
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        return json_decode(json_encode(simplexml_load_string($response->body())), true);
 | 
			
		||||
        // Decode Html entity before passing the data to xml loader to decode
 | 
			
		||||
        return json_decode(json_encode(simplexml_load_string(html_entity_decode($response->body()))), true);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user