File "saving-dom-objects.md"

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

 
Open Back
```php
// Dumps the internal DOM tree back into string
$str = $html->save();

// Dumps the internal DOM tree back into a file
$html->save('result.htm');
```