0

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

4

1 に答える 1