如何使用php封裝類實現圖片上傳可直接引用

來源:互聯網
上載者:User

 <?php

class image {    /**     *完成圖片的上傳     *     *@param array $file 待上傳的檔案資訊的數組,用於5個元素的那個數組     *@return mixed 如果執行成功,返回上傳了的檔案名稱,否則返回false     */    public function upload($file) {        if($file['error'] == 0) {            $allow_types = array('image/jpeg', 'image/pjpeg', 'image/png', 'image/gif');            if(in_array($file['type'], $allow_types)) {                $maxsize = 2000000;                if($file['size'] <= $maxsize) {                    //上傳                    //需要將檔案重新命名,1,防止不規則的字元出現在檔案名稱中,2,防止重名                    //採用時間戳記加隨機數的形式                    //尾碼名如何獲得?在原始檔案名中獲得尾碼名                    //在檔案名稱中最後一個點截取到最後就是副檔名                    //strrchr(在哪個字串中查,查的字串);                    $new_filename = time() . mt_rand(10000, 99999) . strrchr($file['name'], '.');                    //移動                    //此函數返回移動成功還是失敗                    if(move_uploaded_file($file['tmp_name'],'images/'. $new_filename)) {                        return $new_filename;                    }                }            }        }        //只有一種情況返迴文件名,其他全部返回false        return false;    }}?>//-------------------------------------------------------------------------------------<?phpheader("content-type:text/html;charset=utf-8");function __autoload($image){        require_once($image.'.class.php');}    $image = new image();    $user = $_POST['user'];    $img = $_FILES['img'];    //var_dump($img);    $img = $image ->upload($img);    mysql_connect('localhost','root','123');    mysql_select_db('lyb');    mysql_query('set names utf8');    $q = "insert test_image(name,url) values('$user','$img')";    //var_dump($q);    $result = mysql_query($q);                if($result){                                    echo "添加成功.....<br /><br />";                 }                 else{                   echo "添加失敗。。。";                 }?>//--------------------------------------------------------------------------------------<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>圖片上傳類</title></head><body><form enctype="multipart/form-data"  method="post" action="images.php">姓名:<input type="text" name="user" id="user"/><br>圖片:<input type="file" name="img" id="img"/><br><input type="submit" value="提交"/></form></body></html>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.