Home >Backend Development >PHP Tutorial >Use header image address in PHP to simply hide the image source address_PHP tutorial
Copy the code as follows: ?php $path=$_GET["path"]; $cacheimgname=str_replace(" /","_",$path); $localimg="upimg/".$cacheimgname; if((file_exists($localimg))) { $httpurl=$localimg;...