Description
Print out the details of the PHP user constantsWe don't print out all the PHP ones since there are far too many
Usage
oikai_api_status_constants_details( $userc );Parameters
- $userc
- ( array ) required – user constants
Returns
voidSource
File name: oik-shortcodes/shortcodes/oik-api-status.phpLines:
1 to 11 of 11
function oikai_api_status_constants_details( $userc ) { if ( $userc ) { ksort( $userc ); foreach ( $userc as $key => $value ) { //bw_tablerow( $key, $value ); if ( substr( $key, 0,2 ) != "DB" ) { p( "$key: $value " ); } } } }View on GitHub
