Skip to content

Instantly share code, notes, and snippets.

@yoander
Created July 17, 2018 22:49
Show Gist options
  • Save yoander/fb97c54568e747bcd62c9f4897bd9838 to your computer and use it in GitHub Desktop.
Save yoander/fb97c54568e747bcd62c9f4897bd9838 to your computer and use it in GitHub Desktop.
<?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