Current File : /var/www/website/nublr/Regulations/simplehtmldom/manual/docs/manual/saving-dom-objects.md
---
title: Saving DOM objects
---
```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');
```