本文整理匯總了PHP中Box::updateBox方法的典型用法代碼示例。如果您正苦於以下問題:PHP Box::updateBox方法的具體用法?PHP Box::updateBox怎麽用?PHP Box::updateBox使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Box
的用法示例。
在下文中一共展示了Box::updateBox方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: json_encode
$rs['area'] = $area;
$rs['road'] = $road;
$rs['user'] = $user;
$rs['box'] = $box;
$rs['version'] = $version;
echo json_encode($rs, JSON_UNESCAPED_UNICODE);
} else {
if (isset($_POST['submit']) && $_POST['id'] == "update") {
//$preCode = $_POST['preName'];
$code = $_POST['code'];
//$midCode = substr($tempPre,2);
// $tempMid = substr($midCode,0,strlen($midCode) - 8 );
// $version = $_POST['version'];
if ($code != "") {
$arrayBean = array($_POST['area'], $_POST['road'], $_POST['address'], $_POST['name'], $_POST['user'], $_POST['code']);
$bRet = Box::updateBox($arrayBean);
if ($bRet == true) {
$boxBean = Box::getAllBox();
$smarty->assign("boxBean", $boxBean);
$smarty->display('box.html');
} else {
echo "<script>alert('修改失敗');history.back();</script>";
}
}
} else {
if (isset($_GET['active']) && $_GET['active'] == "loadInfo") {
$area = Area::getAreaInfo();
$road = Area::getRoadInfo();
$user = User::getUserInfo();
$rs['road'] = $road;
$rs['user'] = $user;
示例2: Box
<?php
error_reporting(E_ALL ^ E_NOTICE);
include 'Box.php';
$box = new Box("Refresh token expired. Use tools.amsterdamopendata.nl/box to reload token.\n");
$box->updateBox($_REQUEST["folderid"]);