이 글은 주로 PHP를 사용하여 WeChat 이미지를 서버에 업로드하는 방법을 소개합니다. 컬을 기반으로 한 PHP 운영 이미지 파일의 관련 구현 기술이 포함되어 있으므로 모두에게 도움이 되기를 바랍니다.
$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 "http://www.xxx.com/weixin/wx_huodong/xiawucha/".$fromid.$time.'.jpg'; }
관련 권장사항:
js는 이미지를 서버에 붙여넣고 업로드하여 표시하는 예제를 구현합니다.
PHP WeChat을 통해 이미지를 서버에 업로드하는 방법에 대한 자세한 설명
nodejs 사용 파일 변경 사항을 모니터링하고 SFTP를 사용하여 서버에 업로드
위 내용은 WeChat 사진을 서버에 업로드하는 PHP 코드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!