Есть XML файл вида:
<forecast version="1.2" last_updated="Thu, 05 Mar 2009 12:47:40 +0200">
<url>https://weather.co.ua/show/?16</url>
<city id="16">
<name>Днепропетровск</name>
<name_en>Dnipropetrovsk</name_en>
<region>
<name>Днепропетровская область</name>
<name_en>Dnipropetrovs'k region</name_en>
</region>
<country id="804">
<name>Украина</name>
<name_en>Ukraine</name_en>
</country>
</city>
<current last_updated="Thu, 05 Mar 2009 12:15:20 +0200" expires="Thu, 05 Mar 2009 12:50:20 +0200">
<time>Thu, 05 Mar 2009 12:00:00 +0200</time>
<cloud>10</cloud>
<pict>_1_sun_cl.gif</pict>
<t>-1</t>
<t_flik>-4</t_flik>
<p>765</p>
<w>3</w>
<w_gust>0</w_gust>
<w_rumb>100</w_rumb>
<h>76</h>
</current>
<forecast>
<day date="2009-03-05" hour="15">
<cloud>10</cloud>
<pict>_1_sun_cl.gif</pict>
<ppcp>10</ppcp>
<t>
<min>2</min>
<max>4</max>
</t>
<p>
<min>750</min>
<max>753</max>
</p>
<wind>
<min>4</min>
<max>6</max>
<rumb>135</rumb>
</wind>
<hmid>
<min>74</min>
<max>79</max>
</hmid>
<wpi>87</wpi>
</day>
<day date="2009-03-05" hour="21">
<cloud>10</cloud>
<pict>_1_moon_cl.gif</pict>
<ppcp>35</ppcp>
<t>
<min>-1</min>
<max>1</max>
</t>
<p>
<min>748</min>
<max>750</max>
</p>
<wind>
<min>5</min>
<max>7</max>
<rumb>135</rumb>
</wind>
<hmid>
<min>78</min>
<max>83</max>
</hmid>
<wpi>87</wpi>
</day>
<day date="2009-03-06" hour="3">
<cloud>30</cloud>
<pict>_3_pasmurno.gif</pict>
<ppcp>60</ppcp>
<t>
<min>-3</min>
<max>-1</max>
</t>
<p>
<min>745</min>
<max>748</max>
</p>
<wind>
<min>5</min>
<max>7</max>
<rumb>120</rumb>
</wind>
<hmid>
<min>81</min>
<max>86</max>
</hmid>
<wpi>79</wpi>
</day>
<day date="2009-03-06" hour="9">
<cloud>30</cloud>
<pict>_3_pasmurno.gif</pict>
<ppcp>67</ppcp>
<t>
<min>-1</min>
<max>1</max>
</t>
<p>
<min>743</min>
<max>747</max>
</p>
<wind>
<min>7</min>
<max>9</max>
<rumb>121</rumb>
</wind>
<hmid>
<min>74</min>
<max>81</max>
</hmid>
<wpi>90</wpi>
</day>
</forecast>
</forecast>
Как его разобрать на куски?
Делаю
$xml = new JSimpleXML;
$xml->loadFile(путь к файлу');
print $xml->root->node->child[0]->data();
и мне выдаёт :
Notice: Undefined property: JSimpleXML::$root in /home/incognit/public_html/modules/mod_weather/mod_weather.php on line 14
Notice: Trying to get property of non-object in /home/incognit/public_html/modules/mod_weather/mod_weather.php on line 14
Notice: Trying to get property of non-object in /home/incognit/public_html/modules/mod_weather/mod_weather.php on line 14
Fatal error: Call to a member function data() on a non-object in /home/incognit/public_html/modules/mod_weather/mod_weather.php on line 14