How to know php function in your page
if your project is require to connect into 3rd party script and that script is encrypted, you can use this function to list down all available function in that page.
print_r(get_defined_functions());
for more info http://php.net/manual/en/function.get-defined-functions.php
