当前位置: 首页>>代码示例>>PHP>>正文


PHP Vendor::update方法代码示例

本文整理汇总了PHP中Vendor::update方法的典型用法代码示例。如果您正苦于以下问题:PHP Vendor::update方法的具体用法?PHP Vendor::update怎么用?PHP Vendor::update使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Vendor的用法示例。


在下文中一共展示了Vendor::update方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: dirname

<?php

require_once dirname(__FILE__) . '/../vendor/autoload.php';
//autoload packages
$db = new Database();
$vendor = new Vendor($db->conn);
if (!empty($_POST)) {
    //print_r($_POST);exit;
    foreach ($_POST as $field_name => $val) {
        //        //clean post values
        $field_vendorid = strip_tags(trim($field_name));
        $val = strip_tags(trim($val));
        //
        //        //from the fieldname:vendor_id we need to get vendor_id
        $split_data = explode(':', $field_vendorid);
        $vendor_id = $split_data[1];
        $field_name = $split_data[0];
        $vendor->update($field_name, $val, $vendor_id);
        echo "Field Succefully Updated!!";
    }
} else {
    echo "Invalid Requests";
}
开发者ID:Dollyzaks,项目名称:planner,代码行数:23,代码来源:updatevendor.php

示例2: json_encode

            $vendor->insert($pdo);
            $reply->data = "Vendor created OK";
            // delete an existing Vendor
        } else {
            if ($method === "DELETE") {
                verifyXsrf();
                $vendor = Vendor::getVendorByVendorId($pdo, $vendorId);
                $vendor->delete($pdo);
                $reply->data = "Vendor deleted OK";
                // put to an existing Vendor
            } else {
                if ($method === "PUT") {
                    // convert PUTed JSON to an object
                    verifyXsrf();
                    $requestContent = file_get_contents("php://input");
                    $requestObject = json_decode($requestContent);
                    $vendor = new Vendor($vendorId, $requestObject->contactName, $requestObject->vendorEmail, $requestObject->vendorName, $requestObject->vendorPhoneNumber);
                    $vendor->update($pdo);
                    $reply->data = "Vendor Updated Ok";
                }
            }
        }
    }
    // create an exception to pass back to the RESTful caller
} catch (Exception $exception) {
    $reply->status = $exception->getCode();
    $reply->message = $exception->getMessage();
    unset($reply->data);
}
header("Content-type: application/json");
echo json_encode($reply);
开发者ID:sandidgec,项目名称:foodinventory,代码行数:31,代码来源:index.php

示例3: testUpdateInvalidVendor

 /**
  * test updating a Vendor that does not exist
  *
  * @expectedException PDOException
  **/
 public function testUpdateInvalidVendor()
 {
     //create a Vendor and try to update it without actually inserting it
     $vendor = new Vendor(null, $this->VALID_contactName, $this->VALID_vendorEmail, $this->VALID_vendorName, $this->VALID_vendorPhoneNumber);
     $vendor->update($this->getPDO());
 }
开发者ID:sandidgec,项目名称:foodinventory,代码行数:11,代码来源:vendor-test.php


注:本文中的Vendor::update方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。