Lines:
1 to 37 of 37
<?php // (C) Copyright Bobbing Wide 2013-2016 /* function createapis_loaded() – Function to invoke when createapi2.php is loaded */ /* function _ca_checkignorelist() – createapi ignore list – copy of listapis ignore list */ if ( !function_exists( "strip_directory_path" ) ) { /* function strip_directory_path() – Remove the leading directory path from the filename */ } /* function _lf_dofile_ajax() – Create the apis for a particular file in a plugin */ /* function _ca_dofile() – Process a file */ /* function _ca_checkforselected_api() – Check for the selected API */ /* function _ca_doapis() – Create the apis for a particular file in a plugin */ /* function _ca_doaplugin() – Create the APIs for a component */ if ( !function_exists( "get_bloginfo" ) ) { /* function get_bloginfo() – */ } var_dump( $_SERVER ); $start = microtime( true ); createapis_loaded( $_SERVER['argc'], $_SERVER['argv'] ); $end = microtime( true ); $elapsed = $end - $start; echo "Elapsed: $elapsed" . PHP_EOL;View on GitHub