我一直坚持可以不用插件实现的功能尽量不用插件,即使有些插件功能强大,定制很度高。因为很多功能自己更本很少用得上或者是更本用不到。越来越多插件反而让网站越来越复杂沉重,甚至会拖慢你的网站。
写博客一段时间常常会用到一些网络上的资源,最经常的当然要数图片了,直接引用虽然很简单但是很不可控,因为大多数网站做维护开启了防盗链或者把图片删除了的话我这边的话会有好多404图片。所以我会把图片上传到自己的网站上,每次写文章需要引用的图片很多的话会比较很费力。于是我自己写了一段代码,在文章保存的时候自动将图片本地化,用了几天感觉不错。在这里分享出来,功能比较的简单,我会持续完善这个功能。
代码如下:
/************自动下载外部图片开始**************/
//多级目录创建
function mkdirs($dir){
if(!is_dir($dir)){
if(!$this->mkdirs(dirname($dir))){
return false;
}
if(!mkdir($dir,0777, true)){
return false;
}
}
return true;
}
function save_post_fix($content){
$post_id = get_the_ID();
$upload_dir = wp_upload_dir();
$path = $upload_dir["url"];
$realPath = $upload_dir["path"];
if(!is_dir($realPath)){
mkdirs($realPath);
}
$pagelink=array();
$pattern_page = '/<img([sS]*?)src=\\["|'](.*?)\\["|']([sS]*?)>/i';
preg_match_all($pattern_page, $content, $pagelink[]);
foreach ($pagelink[0][2] as $key => $value) {
$pic_url = $value;
$url_feter = parse_url($pic_url);
if(stripos($url_feter["host"],"zhnytech.com")){
continue;
}else{
$ch = curl_init(); // 启动一个CURL会话
curl_setopt($ch,CURLOPT_HEADER,1); //不示返回的Header区域内容
curl_setopt($ch, CURLOPT_NOBODY, TRUE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch,CURLOPT_URL,$pic_url);
$hd = curl_exec($ch);
if(!empty($hd) && !(strpos($hd,'Content-Length: image/png')||strpos($hd,'Content-Length: image/jpg'))){
$fp =file_get_contents($pic_url);
$pic_name =basename($url_feter["path"]);
$savePath = $realPath.'/'.$pic_name;
$fullPath = $path.'/'.$pic_name;
if(file_exists($savePath)){
$savePath = $realPath.'/'.str_replace('.','-'.date("s").'.' ,$pic_name);
$fullPath = $path.'/'.str_replace('.','-'.date("s").'.' ,$pic_name);
}
if(file_put_contents($savePath,$fp)){
$content = str_replace($pic_url, $fullPath, $content);
//插数据库生成预览图
$wp_filetype = wp_check_filetype(basename($savePath), null );
$wp_upload_dir = wp_upload_dir();
$attachment = array(
'guid' => $wp_upload_dir['url'] . '/' . basename( $savePath ),
'post_mime_type' => $wp_filetype['type'],
'post_title' => preg_replace( '/.[^.]+$/', '', basename( $savePath ) ),
'post_content' => '',
'post_status' => 'inherit'
);
$attach_id = wp_insert_attachment( $attachment, $savePath, $post_id );
require_once( ABSPATH . 'wp-admin/includes/image.php' );
$attach_data = wp_generate_attachment_metadata( $attach_id, $savePath );
wp_update_attachment_metadata( $attach_id, $attach_data );
}
}
}
}
return $content;
}
add_filter( 'content_save_pre', 'save_post_fix', 90, 1 );
/************自动下载外部图片结束**************/
来源:zhny’s Blog