You appear to be a bot. Output may be restricted
Description
Usage
oikai_check_class_method_or_function( $string );
Parameters
- $string
- ( mixed ) required –
Returns
voidSource
File name: oik-shortcodes/shortcodes/oik-api.phpLines:
1 to 15 of 15
function oikai_check_class_method_or_function( $string ) { $reference_type = "T_STRING"; $class = oikai_get_class( $string, null ); if ( $class ) { $func = oikai_get_func( $string, $class ); if ( $func ) { $reference_type = "method"; } else { $reference_type = "class"; } } else { $reference_type = "function"; } return( $reference_type ); }View on GitHub