PHP recognizes constructors by the name_________
A
classname()
B
_construct()
C
function _construct()
D
function __construct()
Correct Answer: function __construct()
A double underscore followed by the construct keyword. Its syntax is function __construct () { Class Initialization code }.