我使用PHP加载XML文件。我可以通过视图分页吗?
这是我使用的代码。当我从XML文件中提取名称时,我需要对它们进行分页。我可以使用laravels ->paginate();
吗?
我用:
@extends('base')
@section('title', 'Monsters')
@stop
@section('main')
<div class="container">
<div class="doc-content-box">
<legend>Monsters</legend>
<?php
$monstersdir = 'C:\Users\E1\Desktop\theforgottenserver-v0.2.15-win64console\Mystic Spirit\data\monster';
if(is_dir($monstersdir)) {
$list = simplexml_load_file($monstersdir.'\monsters.xml');
?>
<table class="table table-striped table-condensed table-content">
<tbody>
<?php
foreach($list as $monster) {
if ($monster['name'] > null) {
echo '
<tr>
<td style=""><a href="">'.$monster['name'].'</a></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
任何提示?这真的是需要的。 :P
答案 0 :(得分:0)
您可以通过调用Paginator::make()
在Laravel中手动创建分页器。使用3个参数调用方法,即:要显示的项目,项目总数以及每页应显示的项目数量。有关示例,请参阅docs。