本文整理汇总了PHP中Vehicle::setYear方法的典型用法代码示例。如果您正苦于以下问题:PHP Vehicle::setYear方法的具体用法?PHP Vehicle::setYear怎么用?PHP Vehicle::setYear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Vehicle
的用法示例。
在下文中一共展示了Vehicle::setYear方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: castToVehicle
public function castToVehicle($obj)
{
$v = new Vehicle();
if (isset($obj->mount)) {
$v->setMount($obj->mount);
}
if (isset($obj->yearID)) {
$v->setYearID($obj->yearID);
}
if (isset($obj->makeID)) {
$v->setMakeID($obj->makeID);
}
if (isset($obj->modelID)) {
$v->setModelID($obj->modelID);
}
if (isset($obj->styleID)) {
$v->setStyleID($obj->styleID);
}
if (isset($obj->aaiaID)) {
$v->setAaiaID($obj->aaiaID);
}
if (isset($obj->year)) {
$v->setYear($obj->year);
}
if (isset($obj->make)) {
$v->setMake($obj->make);
}
if (isset($obj->model)) {
$v->setModel($obj->model);
}
if (isset($obj->style)) {
$v->setStyle($obj->style);
}
if (isset($obj->vehicleID)) {
$v->vehicleID = $obj->vehicleID;
}
if (isset($obj->installTime)) {
$v->installTime = $obj->installTime;
}
if (isset($obj->drilling)) {
$v->drilling = $obj->drilling;
}
if (isset($obj->exposed)) {
$v->exposed = $obj->exposed;
}
if (isset($obj->attributes)) {
$v->attributes = $obj->attributes;
}
return $v;
}