ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF  x x ?? C         ?? C   ?à   " ??     ?? μ  } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú??     ?? μ   w !1AQ aq"2?B‘?±á #3Rebr?{ gilour

File "remove.md"

Full Path: /home/zcziejy/ryadselyen/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/remove.md
File size: 487 bytes
MIME-type: text/html
Charset: utf-8

```php
remove ( )
```

Removes the current node recursively from the DOM.
Does nothing if the node has no parent (root node);

**Example**

```php
$html->load(<<<EOD
<html>
<body>
<table>
	<tr><th>Title</th></tr>
	<tr><td>Row 1</td></tr>
</table>
</body>
</html>
EOD
);

$table = $html->find('table', 0);
$table->remove();

echo $html;

/**
 * Returns
 *
 * <html> <body>  </body> </html>
 */
```

**Remarks**

* Whitespace immediately **before** the removed node will remain in the DOM.