エラー:
[xmlreader.open]: failed to open stream: HTTP request failed! HTTP/1.0 500 Internal Server Error in /var/www/html/www/main_web_mobile/index.php on line 54
Warning: XMLReader::open() [xmlreader.open]: Unable to open source data in /var/www/html/www/main_web_mobile/index.php on line 54
Warning: XMLReader::read() [xmlreader.read]: Load Data before trying to read in /var/www/html/www/main_web_mobile/index.php on line 59
コード:
<? $z = new XMLReader;
$z->open('http://URL_HERE');
$doc = new DOMDocument;
while ($z->read() && $z->name !== 'item');
while ($z->name === 'item')
{
$node = simplexml_import_dom($doc->importNode($z->expand(), true));
?>
<h2 class="acc_trigger"><a href="#"><?php echo $node->title; ?> | <strong><?php echo $node->speciality; ?></strong></a></h2>
<div class="acc_container">
<div class="main_text">
<div class="title"><?php echo $node->title; ?> |<strong> <?php echo $node->speciality; ?></strong></div>
<div class="text_holder"><?php echo $node->descriptionWithoutImage; ?></div>
<div class="img_holder"><img src="<?php echo $node->image; ?>" alt="" /></div>
</div>
<a href="tel: <?php echo $numberbefore; ?>"><div class="btn_holder"><?php echo $number; ?><br /><div class="call_now"><div class="extention"><?php echo $node->internalNumber; ?></div></div></div></a>
</div>
<?php
$z->next('item');
}
?>