PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $url = 'https://rus.postimees.ee/rss'; $xmlstring = file_get_contents($url); $xml = simplexml_load_string($xmlstring); $json = json_encode($xml); $array = json_decode($json, TRUE); $category = []; for ($x = 0; $x < count($array['channel']['item']); $x++) { // Проверяем, является ли индекс четным и больше 0 if ($x > 0 && $x % 2 == 0) { $cat = $array['channel']['item'][$x]['title']; if (is_array($cat)) { foreach ($cat as $k => $v); $category[] = $v; } else { $category[] = $cat; } } } print_r($category); ?>
Show:  
Copy Clear