Created
July 9, 2017 04:47
-
-
Save myanmarlinks/4033d8266dea1e6d998b09f216ed2e2c to your computer and use it in GitHub Desktop.
PHP Magic Methods Program (1)
This file contains 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 Dog { | |
public $name; | |
public function bark() { | |
echo "Bark! <br />"; | |
} | |
} | |
$dog = new Dog(); | |
$dog->name = "Aung Net"; | |
$dog->color = "Black"; | |
$dog->bark(); | |
$dog->eat(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment