You appear to be a bot. Output may be restricted
Description
Display the status of "functions" – both PHP internal and user defined
Usage
oikai_api_status_functions();
Parameters
Returns
voidSource
File name: oik-shortcodes/shortcodes/oik-api-status.phpLines:
1 to 9 of 9
function oikai_api_status_functions() { $defined_functions = get_defined_functions(); $internal = bw_array_get( $defined_functions, "internal", null ); $count = count( $internal ); p( "Internal functions: $count " ); $user = bw_array_get( $defined_functions, "user", null ); $count = count( $user ); p( "User functions: $count " ); }View on GitHub