當前位置: 首頁>>代碼示例>>PHP>>正文


PHP image::insert方法代碼示例

本文整理匯總了PHP中image::insert方法的典型用法代碼示例。如果您正苦於以下問題:PHP image::insert方法的具體用法?PHP image::insert怎麽用?PHP image::insert使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在image的用法示例。


在下文中一共展示了image::insert方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: submit

 public function submit()
 {
     $post = $_POST;
     $file = $_FILES['file_upload'];
     $request = new post($post, $file);
     $submission = $request->getPost();
     $database = new database();
     $query = $database->query();
     $image = new image($query, $submission);
     // upload image
     try {
         $upload = $image->upload();
     } catch (Exception $e) {
         echo 'Message: ' . $e->getMessage();
     }
     // insert image
     if (isset($upload) && $upload == 'success') {
         $images = new image($query, $submission);
         $image->insert();
     }
 }
開發者ID:nicolas-thompson,項目名稱:scheduler,代碼行數:21,代碼來源:administration.php

示例2: header

        $error[] = 'plz, upload image type';
    } else {
        if ($size1 > 42565433) {
            $error[] = 'plz, dun exceed the max limit of size';
        } else {
            move_uploaded_file($tmp_name1, 'images/' . $name1);
        }
    }
    if (!isset($_POST['option'])) {
        $error[] = 'plz , select a product';
    }
    if (empty($error)) {
        $img->image_path = $name;
        $img->image_path_1 = $name1;
        $img->product_id = $_POST['option'];
        $img->insert();
    }
    if (!empty($error)) {
        $_SESSION['errors'] = $error;
        header('location: image_insert.php');
    } else {
        header('location: image_control.php');
    }
} else {
    if (isset($_POST['sendupdate'])) {
        $img = new image($_POST['id']);
        $name = $_FILES['image']['name'];
        $size = $_FILES['image']['size'];
        $type = $_FILES['image']['type'];
        $tmp_name = $_FILES['image']['tmp_name'];
        $error = [];
開發者ID:sherif700,項目名稱:ourWork,代碼行數:31,代碼來源:operation.php


注:本文中的image::insert方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。