本文整理汇总了PHP中Driver::update方法的典型用法代码示例。如果您正苦于以下问题:PHP Driver::update方法的具体用法?PHP Driver::update怎么用?PHP Driver::update使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Driver
的用法示例。
在下文中一共展示了Driver::update方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: update
private function update($tabla)
{
switch ($tabla) {
case 'Service':
$service = Service::update($service_id, array('driver_id' => $driver_id, 'status_id' => "2", 'car_id' => $driver_tmp->car_id));
$this->servicio = Service::find($this->servicio_id);
$this->validar($service);
break;
case 'Driver':
$driver = Driver::update($this->driver_id, array("available" => "0"));
$this->conductor = Driver::find($this->conductor_id);
$this->validar($driver);
break;
}
}
示例2: date
require_once '../../../framework/Driver.php';
if (isset($_GET['action'])) {
$action = $_GET['action'];
} else {
$action = "";
}
switch ($action) {
case "add":
$name = $_POST['name'];
$phone = $_POST['phone'];
$address = $_POST['address'];
$date = $_POST['date_join'];
$dateJoin = date("Y-m-d", strtotime($date));
$description = $_POST['description'];
if (Driver::add($name, $phone, $address, $description, $dateJoin)) {
header('Location:index.php');
}
break;
case "update":
$id = $_POST['id'];
$phone = $_POST['phone'];
$address = $_POST['address'];
$description = $_POST['description'];
$mDriver = new Driver($id);
if ($mDriver->update($phone, $address, $description)) {
header('Location: ' . $_SERVER['HTTP_REFERER']);
} else {
header('Location:index.php');
}
break;
}
示例3: catch
Flight::ok($object);
} catch (Exception $exception) {
Flight::error($exception);
}
});
Flight::route('POST /v1/main/driver', function () {
try {
$object = Driver::insert();
Flight::ok($object);
} catch (Exception $exception) {
Flight::error($exception);
}
});
Flight::route('PUT /v1/main/driver/@id', function ($id) {
try {
$object = Driver::update($id);
Flight::ok($object);
} catch (Exception $exception) {
Flight::error($exception);
}
});
Flight::route('DELETE /v1/main/driver/@id', function ($id) {
try {
$object = Driver::delete($id);
Flight::ok($object);
} catch (Exception $exception) {
Flight::error($exception);
}
});
//=============================================================================
//Field