mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
9 lines
242 B
PHP
9 lines
242 B
PHP
<?php
|
|
$html = '<html><body>Some random <strong>Bold</strong>
|
|
and <em>italics</em> text.</body></html>';
|
|
|
|
$xml = simplexml_load_string($html);
|
|
echo $xml->body . "<br />";
|
|
echo $xml->body->strong . "<br />";
|
|
echo $xml->body->em . "<br />";
|
|
?>
|