Skip to content

Instantly share code, notes, and snippets.

@minte9
Last active April 14, 2021 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minte9/777ff1880bd48985bbee314242dc8f31 to your computer and use it in GitHub Desktop.
Save minte9/777ff1880bd48985bbee314242dc8f31 to your computer and use it in GitHub Desktop.
<?php
/**
* Define class constructor and ...
* Display the constructor method name
*/
$obj = new A();
class A
{
/**
* SOLUTION
*/
function __construct()
{
echo __METHOD__; // A::__construct
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment