Created
July 17, 2018 22:49
-
-
Save yoander/fb97c54568e747bcd62c9f4897bd9838 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Blog | |
{ | |
const BLOG_NAME = 'LibreByte'; | |
protected const START_DATE = '01-01-2007'; | |
private const CREATOR = 'sedlav'; | |
} | |
class Page extends Blog | |
{ | |
public static function printDetails() | |
{ | |
echo "Blog name: ", self::BLOG_NAME, nl2br("\n"); | |
echo "Blog start date: ", self::START_DATE, nl2br("\n"); | |
echo "Blog creator: ", self::CREATOR, nl2br("\n"); | |
} | |
} | |
Page::printDetails(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment