9 lines
326 B
PHP
Raw Normal View History

2023-03-18 17:32:21 +08:00
<?php
declare(strict_types=1);
2023-04-30 15:43:08 +08:00
assert(class_exists('\\DOMDocument'));
2023-04-03 21:27:50 +08:00
$doc = new DOMDocument();
$doc->loadHtml("<html><head><meta charset=\"UTF-8\"><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"></head><body id='app'>Hello</body></html>");
2023-04-30 15:43:08 +08:00
assert($doc->getElementById('app')->nodeValue === 'Hello');