Home > Backend Development > PHP Tutorial > php图片采集后按原路径保存图片,_PHP教程

php图片采集后按原路径保存图片,_PHP教程

WBOY
Release: 2016-07-12 09:00:38
Original
697 people have browsed it

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图片采集后按原路径保存图片,_PHP教程" >';
function mkdirs($pathname, $mode = 0755){
is_dir(dirname($pathname)) || mkdirs(dirname($pathname), $mode);
return is_dir($pathname) || @mkdir($pathname, $mode);
}
?>
Copy after login

  

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1092698.htmlTechArticlephp图片采集后按原路径保存图片, ?php$domain ='http://www.jbxue.com';$url = '/newskin/images/v4/logo.jpg';$pats = pathinfo($url);$dir = '.'.$pats['dirname'].'/';if(!is...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template