Advertisement
kura2yamato

oeruf (update)

Mar 10th, 2019
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. $dt=array();
  3.         for($i=0;$i<2;$i++){
  4.             $params=$info['channel']['item'][$i];
  5.            
  6.             $dt[]= [
  7.                 'title'=>$params['title'],
  8.                 'description'=>$params['description'],
  9.                 'pubDate'=>$params['pubDate'],
  10.                 'link'=>$params['link'],
  11.                 'category'=>$params['category'],
  12.                 //'enclosure url'=>$params->enclosure['url'],
  13.                 'enclosure url'=> $params['enclosure']['@attributes']['url'],
  14.                 'guid'=>$params['guid']
  15.             ];
  16.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement