Skip to content

A HTML DOM parser written in PHP5+ let you manipulate HTML-Node-Objects.

Notifications You must be signed in to change notification settings

Alvine-IO/htmlMarkup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 

Repository files navigation

htmlMarkup

A HTML DOM parser written in PHP7+ let you manipulate HTML-Node-Objects.

API Documentation

http://doc.alvine.io/de/alvine.markup.html/component/snapshot/

Install and running htmlMarkup

Download Library from http://download.alvine.io

wget http://download.alvine.io/alvine.markup.html-<version>.phar
wget http://download.alvine.io/alvine.markup.html-<version>.phar.pubkey

Usage

simple output

$html = \Alvine\Markup\Html\Fragment::getInstanceFromString('<b><i>Auto</i></b>');
echo (string) $html;
   
<b><i>Auto</i></b>

dom-manipulation

$html = \Alvine\Markup\Html\Fragment::getInstanceFromString('<b><i>Auto</i></b>');

/** div und Text einhängen */
$html->current()
   ->appendChild((new \Alvine\Markup\Html\Element\Html\Div())
   ->appendChild(new \Alvine\Markup\Html\Node\Text('Hallo World!')));

echo (string) $html;
<b><i>Auto</i><div>Hallo World!</div></b>

HTML-Operations

<div>
  <p data-replace="dataset:text | strtolower | trim">My World</p>
</div>
<div>
  <a data-attributes="href dataset:url | index:2 | strtolower, title string:Mein Titel | trim">My World</a>
</div>

Simple HTML-Operations

$html = <<<EOF
<div>
  <p data-replace="dataset:url">url</p>
</div>
EOF;
 
echo (new \Alvine\Markup\Html\Engine())
    ->setDataset((new \Alvine\Markup\Html\Dataset)
        ->setValue('url', new \Alvine\Net\Resource\URI('http://www.example.com')))
    ->getHTML($html);
<div>
  <p>http://www.example.com</p>
</div>

Querys aka jquery

echo (string) $fragment->find(new Selector('#opt2[class]'));
echo (string) $fragment->find(new Selector('li[class!="selected"]'));

Documentation

https://wiki.schukai.com/display/alvine2/HTML+-+Programmierung

About

A HTML DOM parser written in PHP5+ let you manipulate HTML-Node-Objects.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published