Last active
March 9, 2016 03:38
-
-
Save simplyniceweb/d8672fc4a0bc317a1e56 to your computer and use it in GitHub Desktop.
sample class
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 Friends | |
{ | |
function jared($name = null) { | |
return "My name is $name"; | |
} | |
} | |
$friend = new Friends(); | |
echo $friend->jared("Jaylord Ferrer."); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment