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


PHP Items::update方法代碼示例

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


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

示例1: update

 /**
  * @name update
  * @description update an item
  * @param int $id
  * @param string $name
  * @return mixed
  */
 private function update($id, $name)
 {
     $item = new Items();
     if ($item->update($id, $name)) {
         return $this->response('', 'Item has been updated', false);
     }
     return $this->response('', "Could not update the item {$id}", true);
 }
開發者ID:Kesymaru,項目名稱:inventario,代碼行數:15,代碼來源:itemsController.php

示例2: json_encode

<?php

error_reporting(E_ALL);
ini_set('display_errors', 1);
// load the items class
require_once '../classes/concertClass.php';
$response = array('error' => true, 'message' => '');
if (isset($_POST['id']) && isset($_POST['name'])) {
    $id = $_POST['id'];
    $name = $_POST['name'];
    $items = new Items();
    // update the item
    if ($items->update($id, $name)) {
        $response['error'] = false;
        $response['message'] = 'Item has been updated';
    } else {
        $response['message'] = 'Could not update the item';
    }
} else {
    $response['message'] = 'Missing id value';
}
// json response
echo json_encode($response);
開發者ID:JimmyC24,項目名稱:proyecto-auditorio,代碼行數:23,代碼來源:update.php

示例3: elseif

        $upError[] = "Type not found";
    } elseif (strlen($upTitle) < 1) {
        $upError[] = "enter title";
    } elseif (strlen($upGenre) < 1) {
        $upError[] = "enter genre";
    } elseif (strlen($upDescription) < 1) {
        $upError[] = "enter description";
    } elseif (strlen($upPrice) < 1) {
        $upError[] = "enter price";
    } elseif (strlen($upRP) < 1) {
        $upError[] = "enter rentperiod";
    } elseif (!isset($upStatus)) {
        $upError[] = "status not found";
    } else {
        $upI = new Items($upType, $upNo, $upTitle, $upGenre, $upDescription, $upPrice, $upRP, $upStatus);
        $upI->update();
    }
}
?>
  
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
    <meta name="description" content="">
    <meta name="author" content="">
    <title>Inventory</title>
開發者ID:jayp3e011,項目名稱:Planas-Bautista_Finals,代碼行數:30,代碼來源:Items1.php


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