Méthode content (htmlTag)

htmlTag

public function content() : string

Description

Dans htmlTag, La fonction content retourne la balise HTML et ses attributs.

Voir aussi htmlTextNode->content, htmlElement->content.

Exemple


<?php
  
require_once('../classes.php');

  
$img = new htmlTag('img');
  
$img->addAttribute('src''logo.jpg');
  echo 
$img->content();
<img src="logo.jpg">