> php教程 > PHP源码 > 본문

upyun图片fetch的简单封装

PHP中文网
풀어 주다: 2016-05-25 16:59:37
원래의
1101명이 탐색했습니다.

php代码:

<?php
header("Content-type: text/html; charset=utf-8");
require_once(&#39;./upyun.class.php&#39;);
$upyun = new UpYun(&#39;空间&#39;, &#39;账户&#39;, &#39;密码&#39;);
$root = &#39;根目录&#39;;

function microtime_float()
{
   list($usec, $sec) = explode(" ", microtime());
   $s =  ((float)$usec + (float)$sec);
   return  str_replace(&#39;.&#39;,&#39;&#39;,$s);
}
function fetch($u){
	try {
	    global $upyun,$root;
	    $fh = file_get_contents($u);
		//$fh = &#39;var newsClose = &#39;.$fh;
		$imgPath = $root.&#39;/&#39;.date(&#39;Y&#39;).&#39;/&#39;.date(&#39;m&#39;).&#39;/&#39;.date(&#39;d&#39;).&#39;/&#39;.microtime_float().&#39;.png&#39;;
		
		//die();

	    $rsp = $upyun->writeFile($imgPath, $fh, True);   // 上传图片,自动创建目录
		return $imgPath;
	    //fclose($fh);
	    
	}
	catch(Exception $e) {
	    echo $e->getCode();
	    echo $e->getMessage();
	}
	
}
fetch(&#39;http://res.fuliqu.com/bbs/upload/forum/cj/2014/03/14/13947880739402.png&#39;);
로그인 후 복사
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 추천
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿