Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: creating-dom-objects.md
## From string ```php <?php include_once 'HtmlDocument'; use simplehtmldom\HtmlDocument; $html = new HtmlDocument(); $html->load('<html><body>Hello!</body></html>'); ``` ## From URL ```php <?php include_once 'HtmlWeb'; use simplehtmldom\HtmlWeb; $html = new HtmlWeb(); $html->load('http://www.google.com/'); ``` ## From file ```php <?php include_once 'HtmlDocument'; use simplehtmldom\HtmlDocument; $html = new HtmlDocument(); $html->loadFile('test.htm'); ```