本文整理汇总了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";
}
示例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);
示例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());
}