8.2.15
图片2副本.jpg
<?php
////phpInfo();
error_reporting(E_ALL);
echo( phpVersion() );
echo '<pre>';
print_r( basename( "E:/test/图片2副本.jpg" ) );
echo '</pre>';
echo( highlight_file( __FILE__ ) );
echo "<br />";
echo basename('E:/test/图片2副本.jpg');
echo "<br />";
print_r(pathinfo('E:/test/图片2副本.jpg'));
echo "<br />";
var_dump(function_exists('apc_clear_cache() '));
var_dump(function_exists('apc_clear_cache'));
if(function_exists('apc_cache_clear')){
echo 1111;
// apc_cache_clear();
}
if(function_exists('apc_clear_cache')){
apc_clear_cache();
}
echo 12345;
1