You appear to be a bot. Output may be restricted
Description
See if this is a constant name
Usage
oikai_check_constants( $string );
Parameters
- $string
- ( string ) required – could be ABSPATH or WPINC or something
Returns
voidSource
File name: oik-shortcodes/shortcodes/oik-api.phpLines:
1 to 11 of 11
function oikai_check_constants( $string ) { $constants = get_defined_constants( false ); //$reference_type = oikai_query_function_type $constant = bw_array_get( $constants, $string, null ); if ( $constant ) { $reference_type = "constant"; } else { $reference_type = "T_STRING"; } return( $reference_type ); }View on GitHub