Использование настроек Flash XML в переполнении стека

Привет, я использовал флэш-шаблон для своего веб-сайта, и я хотел бы сделать из него версию php. Это портфолио, поэтому я хотел бы обновить только один файл при публикации нового изображения. Файл, который использует моя флэш-версия, представляет собой xml, который выглядит следующим образом:

<?xml version="1.0" encoding="utf-8" ?>
<illustrations>
<!-- item style -->
<style>
<!-- show width/height -->
<itemwidth>250</itemwidth>
<itemheight>130</itemheight>
</style>

<!-- gallery items -->
<items>
<item title='Hot-swap' date="14/06/2014" src='assets/illustrations/thms1.jpg'     path='assets/illustrations/big1.jpg'>
<![CDATA[<font size="10" face="Arial" color="#71c9f1"><br/></font>]]>
</item>
</items>
</illustrations>

Я пытался найти, как, но у меня нет знаний в этой области, единственное, что я нашел, это код:

<?php
$xml=simplexml_load_file("xmlsetting\illustrations_config.xml");
print_r($xml);
?>

но он говорит, что когда я запускаю его на своей веб-странице:

Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load    external entity "xmlsetting\illustrations_config.xml" in /home/a3754461/public_html/index.php on line    2"

Спасибо

0

Решение

Да, это спасибо, я получаю это сейчас:

SimpleXMLElement Object ( [comment] => Array ( [0] => SimpleXMLElement Object ( ) [1] => SimpleXMLElement Object ( ) ) [style] => SimpleXMLElement Object ( [comment] => SimpleXMLElement Object ( ) [itemwidth] => 250 [itemheight] => 130 ) [items] => SimpleXMLElement Object ( [item] => Array ( [0] => SimpleXMLElement Object ( [@attributes] => Array ( [title] => Hot-swap [date] => 14/06/2014 [src] => assets/illustrations/thms1.jpg [path] => assets/illustrations/big1.jpg ) ) [1] => SimpleXMLElement Object ( [@attributes] => Array ( [title] => Oyez! [date] => 26/11/2012 [src] => assets/illustrations/thms2.jpg [path] => assets/illustrations/big2.jpg ) ) [2] => SimpleXMLElement Object ( [@attributes] => Array ( [title] => Ancienne Mars [date] => 15/01/2009 [src] => assets/illustrations/thms3.jpg [path] => assets/illustrations/big3.jpg ) ) [3] => SimpleXMLElement Object ( [@attributes] => Array ( [title] => Throne room [date] => 16/03/2012 [src] => assets/illustrations/thms4.jpg [path] => assets/illustrations/big4.jpg ) ) [4] => SimpleXMLElement Object ( [@attributes] => Array ( [title] => Pingu [date] => 19/12/2008 [src] => assets/illustrations/thms5.jpg [path] => assets/illustrations/big5.jpg ) ) [5] => SimpleXMLElement Object ( [@attributes] => Array ( [title] => Revolution [date] => 23/07/2014 [src] => assets/illustrations/thms6.jpg [path] => assets/illustrations/big6.jpg ) ) [6] => SimpleXMLElement Object ( [@attributes] => Array ( [title] => Megadeth [date] => 13/02/2006 [src] => assets/illustrations/thms7.jpg [path] => assets/illustrations/big7.jpg ) ) [7] => SimpleXMLElement Object ( [@attributes] => Array ( [title] => Sous projecteurs [date] => 21/02/2007 [src] => assets/illustrations/thms8.jpg [path] => assets/illustrations/big8.jpg ) ) [8] => SimpleXMLElement Object ( [@attributes] => Array ( [title] => Cube [date] => 21/02/2007 [src] => assets/illustrations/thms9.jpg [path] => assets/illustrations/big9.jpg ) ) [9] => SimpleXMLElement Object ( [@attributes] => Array ( [title] => Pour Caroline Senecal [date] => 15/02/2014 [src] => assets/illustrations/thms10.jpg [path] => assets/illustrations/big10.jpg ) ) [10] => SimpleXMLElement Object ( [@attributes] => Array ( [title] => Etiquette [date] => 13/03/2012 [src] => assets/illustrations/thms11.jpg [path] => assets/illustrations/big11.jpg ) ) [11] => SimpleXMLElement Object ( [@attributes] => Array ( [title] => Ajna [date] => 14/03/2012 [src] => assets/illustrations/thms12.jpg [path] => assets/illustrations/big12.jpg ) ) ) ) )

Но я только что увидел что-то интересное. Могу ли я с помощью flickr поместить свои фотографии на них и использовать их RSS-канал, чтобы заполнить мою галерею на моей веб-странице? И затем я мог бы поставить свой канал flickr rss на все связанные арт-сообщества? Мне нужно будет только загрузить через мерцание?

0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]