Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php class domaine { protected static function getWebsiteName() { return "W3Schools.com"; } } class domainW3 étend domain { public $websiteName; public function __construct() { $this -> websiteName = parent::getWebsiteName(); } } $domainW3 = new domainW3; echo $domainW3 -> nomDuSiteWeb; ?> </body> </html>
W3Schools.com