would help PSR naming conventions. Would it be a good practice?
Example:
use function array_keys as getArrayKeys;
It sounds as a bad practice in my opinion. For the current project/page no harm is really done but in the long run you may/will forget what the real functions names are. On the next project you will try getArrayKeys and it won't work.
getArrayKeys
It sounds as a bad practice in my opinion.
For the current project/page no harm is really done but in the long run you may/will forget what the real functions names are.
On the next project you will try
getArrayKeysand it won't work.