欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP按原路径保存图片

程序员文章站 2022-04-21 07:53:04
...
php代码
<?php
$domain ='http://www.china-textileduct.com';
$url = '/newskin/images/v4/logo.jpg';
$pats = pathinfo($url);
$dir = '.'.$pats['dirname'].'/';
		if(!is_dir($dir))
			{
				@mkdirs($dir, 0777);
				@fclose(fopen($dir.'/index.htm', 'w'));
			}
$img = file_get_contents($domain.$url);
file_put_contents('.'.$url,$img); 
echo '<img src="'.$url.'">';

function mkdirs($pathname, $mode = 0755){
	is_dir(dirname($pathname)) || mkdirs(dirname($pathname), $mode);
	return is_dir($pathname) || @mkdir($pathname, $mode);
}
?>