Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class News {
- public $title;
- public $description;
- public function __construct($title, $description)
- {
- $this->title = $title;
- $this->description = $description;
- }
- }
- $newNews = new News("New Justice League Series", "Justice League is coming back to Cartoon Network with Mark Hamill and Kevin Conroy");
- var_dump($newNews->title);
- var_dump($newNews->description);
Advertisement
Add Comment
Please, Sign In to add comment