Result Size: 625 x 571
x
 
<!DOCTYPE html>
<html>
<body>
<?php
class domain {
    protected static function getWebsiteName() {
        return "W3Schools.com";
    }
}
class domainW3 extends domain {
    public $websiteName;
    public function __construct() {
        $this -> websiteName = parent::getWebsiteName();
    }   
}
$domainW3 = new domainW3;
echo $domainW3 -> websiteName;
?>
 
</body>
<!-- Mirrored from www.w3schools.com/php/phptryit.asp?filename=tryphp_static_method4 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:50:50 GMT -->
</html>
×

Report a Problem: