public function content() : string
Dans htmlTag, La fonction content retourne la balise HTML et ses attributs.
Voir aussi htmlTextNode->content, htmlElement->content.
<?php
require_once('../classes.php');
$img = new htmlTag('img');
$img->addAttribute('src', 'logo.jpg');
echo $img->content();
<img src="logo.jpg">