Created
September 9, 2017 07:01
-
-
Save domantasg/deed73a74895b92b2f5fd9c41265397e 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
// Variables | |
$my_name = "Liam Carbery"; | |
// Functions | |
function display_my_name($name) { | |
echo $name; | |
} | |
// Clases | |
class Persons_Profile | |
{ | |
public $name; | |
public function __construct() | |
{ | |
[...] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment