Created
October 9, 2019 15:37
-
-
Save MaheKarim/8af44946049437c39611c7e9b2fac355 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
<?php | |
class Human{ | |
function accessFunction(){ | |
echo "Best of Mahe Karim "; | |
} | |
} | |
// Access Function | |
$accessFunctionByMethod = new Human(); | |
$accessFunctionByMethod->accessFunction(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment