仿discuz 上传头像
1. [图片] ]6H2)I{}EKG4GC2RN_%[5_A.jpg
2. [代码][PHP]代码
<?php class AvatarUploader { // ? url private function getThisUrl() { $thisUrl = $_SERVER['SCRIPT_NAME']; $thisUrl = "http://{$_SERVER['HTTP_HOST']}{$thisUrl}"; return $thisUrl; } // ? base-url / private function getBaseUrl() { $baseUrl = $this->getThisUrl(); $baseUrl = substr( $baseUrl, 0, strrpos( $baseUrl, '/' ) + 1 ); return $baseUrl; } // ???? DIRECTORY_SEPARATOR private function getBasePath() { $basePath = $_SERVER['SCRIPT_FILENAME']; $basePath = substr( $basePath, 0, strrpos($basePath, '/' ) + 1 ); $basePath = str_replace( '/', DIRECTORY_SEPARATOR, $basePath ); return $basePath; } // ??????? private function uploadAvatar( $uid ) { // ?? if ( empty($_FILES['Filedata']) ) { return -3; // No photograph be upload! } // ? $tmpPath = $this->getBasePath() . "data" . DIRECTORY_SEPARATOR . "{$uid}"; // ???? $dir = dirname( $tmpPath ); if ( !file_exists( $dir ) ) { @mkdir( $dir, 0777, true ); } // ?????? if ( file_exists($tmpPath) ) { @unlink($tmpPath); } // ????? if ( @copy($_FILES['Filedata']['tmp_name'], $tmpPath) || @move_uploaded_file($_FILES['Filedata']['tmp_name'], $tmpPath)) { @unlink($_FILES['Filedata']['tmp_name']); list($width, $height, $type, $attr) = getimagesize($tmpPath); if ( $width < 10 || $height < 10 || $width > 3000 || $height > 3000 || $type == 4 ) { @unlink($tmpPath); return -2; // Invalid photograph! } } else { @unlink($_FILES['Filedata']['tmp_name']); return -4; // Can not write to the data/tmp folder! } // ????? url $tmpUrl = $this->getBaseUrl() . "data/{$uid}"; return $tmpUrl; } private function flashdata_decode($s) { $r = ''; $l = strlen($s); for($i=0; $i<$l; $i=$i+2) { $k1 = ord($s[$i]) - 48; $k1 -= $k1 > 9 ? 7 : 0; $k2 = ord($s[$i+1]) - 48; $k2 -= $k2 > 9 ? 7 : 0; $r .= chr($k1 << 4 | $k2); } return $r; } // ????? private function rectAvatar( $uid ) { // $_POST ??? $bigavatar = $this->flashdata_decode( $_POST['avatar1'] ); $middleavatar = $this->flashdata_decode( $_POST['avatar2'] ); $smallavatar = $this->flashdata_decode( $_POST['avatar3'] ); if ( !$bigavatar || !$middleavatar || !$smallavatar ) { return '<root><message type="error" value="-2" /></root>'; } // ???? $bigavatarfile = $this->getBasePath() . "data" . DIRECTORY_SEPARATOR . "{$uid}_big.jpg"; $middleavatarfile = $this->getBasePath() . "data" . DIRECTORY_SEPARATOR . "{$uid}_middle.jpg"; $smallavatarfile = $this->getBasePath() . "data" . DIRECTORY_SEPARATOR . "{$uid}_small.jpg"; $success = 1; $fp = @fopen($bigavatarfile, 'wb'); @fwrite($fp, $bigavatar); @fclose($fp); $fp = @fopen($middleavatarfile, 'wb'); @fwrite($fp, $middleavatar); @fclose($fp); $fp = @fopen($smallavatarfile, 'wb'); @fwrite($fp, $smallavatar); @fclose($fp); // ????? $biginfo = @getimagesize($bigavatarfile); $middleinfo = @getimagesize($middleavatarfile); $smallinfo = @getimagesize($smallavatarfile); if ( !$biginfo || !$middleinfo || !$smallinfo || $biginfo[2] == 4 || $middleinfo[2] == 4 || $smallinfo[2] == 4 ) { file_exists($bigavatarfile) && unlink($bigavatarfile); file_exists($middleavatarfile) && unlink($middleavatarfile); file_exists($smallavatarfile) && unlink($smallavatarfile); $success = 0; } // ???? $tmpPath = $this->getBasePath() . "data" . DIRECTORY_SEPARATOR . "{$uid}"; @unlink($tmpPath); return '<?xml version="1.0" ?><root><face success="' . $success . '"/></root>'; } // ?????? url public function getAvatarUrl( $uid, $size='middle' ) { return $this->getBaseUrl() . "data/{$uid}_{$size}.jpg"; } // HTTP Request // ??? request?? true?? false public function processRequest() { // input ? $arr = array(); parse_str( $_GET['input'], $arr ); $uid = intval($arr['uid']); if ( $_GET['a'] == 'uploadavatar') { // ??????? echo $this->uploadAvatar( $uid ); return true; } else if ( $_GET['a'] == 'rectavatar') { // ????? echo $this->rectAvatar( $uid ); return true; } return false; } // ?? camera.swf HTML public function renderHtml( $uid ) { // ???? input $input = urlencode( "uid={$uid}" ); $baseUrl = $this->getBaseUrl(); $uc_api = urlencode( $this->getThisUrl() ); $urlCameraFlash = "{$baseUrl}camera.swf?ucapi={$uc_api}&input={$input}"; $urlCameraFlash = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="447" height="477" id="mycamera" align="middle"> <param name="allowScriptAccess" value="always" /> <param name="scale" value="exactfit" /> <param name="wmode" value="transparent" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <param name="movie" value="'.$urlCameraFlash.'" /> <param name="menu" value="false" /> <embed src="'.$urlCameraFlash.'" quality="high" bgcolor="#ffffff" width="447" height="477" name="mycamera" align="middle" allowScriptAccess="always" allowFullScreen="false" scale="exactfit" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object>'; return $urlCameraFlash; } } header("Expires: 0"); header("Cache-Control: private, post-check=0, pre-check=0, max-age=0", FALSE); header("Pragma: no-cache"); header("Cache-Control:no-cache"); $au = new AvatarUploader(); if ( $au->processRequest() ) { exit(); } // ???? camera.swf $uid = intval($_GET['uid']); $urlAvatarBig = $au->getAvatarUrl( $uid, 'big' ); $urlAvatarMiddle = $au->getAvatarUrl( $uid, 'middle' ); $urlAvatarSmall = $au->getAvatarUrl( $uid, 'small' ); $urlCameraFlash = $au->renderHtml( $uid ); ?> <script type="text/javascript"> function updateavatar() { window.location.reload(); } </script> <img src="<?php echo $urlAvatarBig ?>"> <img src="<?php echo $urlAvatarMiddle ?>"> <img src="<?php echo $urlAvatarSmall ?>"> <hr> <?php echo $urlCameraFlash ?>

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

SublimeText3漢化版
中文版,非常好用

MantisBT
Mantis是一個易於部署的基於Web的缺陷追蹤工具,用於幫助產品缺陷追蹤。它需要PHP、MySQL和一個Web伺服器。請查看我們的演示和託管服務。

MinGW - Minimalist GNU for Windows
這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。

禪工作室 13.0.1
強大的PHP整合開發環境

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)