PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<? $url = "https://rus.postimees.ee/rss"; $xmlstring = file_get_contents($url); $xml = simplexml_load_string($xmlstring, "SimpleXMLElement", LIBXML_NOCDATA); $json = json_encode($xml); $array = json_decode($json, TRUE); if (isset($array['channel']['item'])) { foreach ($array['channel']['item'] as $item) { if (isset($item['category'])) { $categories = is_array($item['category']) ? $item['category'] : [$item['category']]; foreach ($categories as $category) { if (stripos($category, 'Эстония') !== false) { echo "Заголовок: " . $item['title'] . "\n"; break; } } } } }
Show:  
Copy Clear