File "creating-dom-objects.md"

Full Path: /var/www/html/wordpress/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/examples/creating-dom-objects.md
File size: 468 bytes
MIME-type: text/html
Charset: utf-8

 
Open Back
## 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');
```