2

I am trying to find a list of all the PHP core functions to write a proof of concept wrapper that standardizes all PHP function names into a consistent naming convention; in this case the PSR standards. Could anybody point me in the right direction to a reasonably complete function list along with their parameters?

I understand implementing this would add another layer of execution to a script, but its just a proof of concept to see how PHP would look if function names and parameter orders were standardized.

Wellso
  • 119
  • 3
  • 12

1 Answers1

5

I think you want

 $functions = get_defined_functions();

http://www.php.net/manual/en/function.get-defined-functions.php

Good luck with that one!

dops
  • 800
  • 9
  • 17