In php.net, I saw some codes like this:
Code: Select all
function abc_123(...) { ... }
function _abc_123(...) { ... }Code: Select all
echo abc_123(...)Thanks guys.
Dave
Moderator: General Moderators
Code: Select all
function abc_123(...) { ... }
function _abc_123(...) { ... }Code: Select all
echo abc_123(...)But class methods can be overloaded:PHP does not support function overloading, nor is it possible to undefine or redefine previously-declared functions.