我目前有一个问题,我的 laravel 网站返回错误。我正在使用以下代码:
@extends('base')
@section('title', 'Experience stages')
@stop
@section('main')
<div class="container">
<div class="doc-content-box">
<legend>Experience stages</legend>
<?php
$stagesdir = 'C:\Users\E1\Desktop\theforgottenserver-v0.2.15-win64console\Mystic Spirit\data\XML';
if(is_dir($stagesdir)) {
$list = simplexml_load_file($stagesdir.'\stages.xml');
?>
<table class="table table-striped">
<thead>
<tr>
<th>From Level</th>
<th>To Level</th>
<th>Experience multiplier</th>
</tr>
</thead>
<tbody>
<?php
foreach($list->children() as $stage) {
if ($stage['maxlevel'] == '') {
$stage['maxlevel'] = '*';
}
echo '
<tr>
<td>'.$stage['minlevel'].'</td>
<td>'.$stage['maxlevel'].'</td>
<td style="width: 30%">'.$stage['multiplier'].'x</td>
</tr>';
}
}
else{
echo '<div class="alert alert-danger"><span class="label label-important">Error parsing your Monsters XML file</span><br /><br /> Invalid path!</div> ';
}
?>
</tbody>
</table>
</div>
</div>
@stop
在那个 foreach 中,我不想使用$list->world->children()
,但它对我不起作用。当我尝试运行我的页面时,我收到以下错误:
main(): Node no longer exists
另外,这是我的 XML 文件: http: //paste.laravel.com/Koh
我可以在没有的情况下使用它,->world
但是正如您在我的 XML 文件中看到的那样,它就像<td>
在我的表中一样。