Heim >Backend-Entwicklung >PHP-Tutorial >php图片采集后按原途径保存图片

php图片采集后按原途径保存图片

WBOY
WBOYOriginal
2016-06-13 12:28:26867Durchsuche

php图片采集后按原路径保存图片

<?php$domain ='http://www.jbxue.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.'" alt="php图片采集后按原途径保存图片" >';function mkdirs($pathname, $mode = 0755){is_dir(dirname($pathname)) || mkdirs(dirname($pathname), $mode);return is_dir($pathname) || @mkdir($pathname, $mode);}?>

  

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:php 远路下载图片到本地Nächster Artikel:PHP挪动版即将问世