Skip to content

Instantly share code, notes, and snippets.

@MaheKarim
Created October 9, 2019 15:37
Show Gist options
  • Save MaheKarim/8af44946049437c39611c7e9b2fac355 to your computer and use it in GitHub Desktop.
Save MaheKarim/8af44946049437c39611c7e9b2fac355 to your computer and use it in GitHub Desktop.
<?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