Simple PHP-library for DOM to Object parsing

v0.1.2 2019-12-30 21:06 UTC

This package is auto-updated.

Last update: 2024-10-06 07:00:47 UTC


README

Simple DOM to Object parser

Example application

Please, put this application in the folder named 'app' in the root of repository. Consult with .gitignore - it is ignored there

<?php

require dirname(__DIR__) . '/vendor/autoload.php';

$html = '<html>
  <head>
   <title>Parser test app</title>
  </head>
 <body>
  <div class="content">
   <h1>This is the header of test app</h1>
   <ul>
     <li>This is the first list item</li>
     <li>This is the second list item</li>
     <li>This is the third list item</li>
   </ul>
  </div>
 </body>
</html>';

$parser = new PhoenyxStudio\Parser\FakeParser();

$parseResult = $parser->parse($html);

$doc = $parseResult->ejectObject();

foreach($doc->getListItems() as $listItem) {
    echo $listItem . '<br>';
}