이 글에서는 주로 WeChat사진upload을 서버에 구현하는 PHP 방법을 소개하며, curl 작업사진 파일을 기반으로 하는 PHP 관련 구현 기술이 필요한 친구들은 참고할 수 있습니다
이 글은 설명합니다. 예제가 포함된 PHP 구현 WeChat 사진을 서버에 업로드하는 방법. 참고할 수 있도록 모든 사람과 공유하세요. 세부 사항은 다음과 같습니다:
$pic_img=trim( $postObj->PicUrl); if($type=="image"){ $pic_url=save_file_to_sever($pic_img,$fromUsername); } GetRootPath(){ $sRealPath = realpath('./'); $sSelfPath = $_SERVER['PHP_SELF']; $sSelfPath = substr($sSelfPath, 0, strrpos($sSelfPath, '/')); return substr($sRealPath, 0, strlen($sRealPath) - strlen($sSelfPath)); } function save_file_to_sever($url,$fromid){ $gen=GetRootPath(); $time=time(); $newfname =$gen."/weixin/wx_huodong/xiawucha/".$fromid.$time.'.jpg'; $ch=curl_init(); $timeout=5; curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout); $img=curl_exec($ch); curl_close($ch); $size=strlen($img); //文件大小 $fp2=@fopen($newfname,'a'); fwrite($fp2,$img); fclose($fp2); return "www.xxx.com/weixin/wx_huodong/xiawucha/".$fromid.$time.'.jpg'; }
위 내용은 PHP를 사용하여 WeChat 사진을 서버에 업로드하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!