本文整理匯總了PHP中test::update方法的典型用法代碼示例。如果您正苦於以下問題:PHP test::update方法的具體用法?PHP test::update怎麽用?PHP test::update使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類test
的用法示例。
在下文中一共展示了test::update方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: detailact
public function detailact($_POST, $thepage, $type)
{
$result = 0;
switch ($thepage) {
case 'test':
$test = new test();
$result = $test->update($_POST);
break;
default:
//$this->common_add($_POST,$thepage);
break;
}
if (!$_POST['id']) {
$arr = array('statusCode' => 310, 'message' => "請選中後修改", 'navTabId' => "", 'rel' => "", 'callbackType' => "forward", "forwardUrl" => "");
} else {
if ($result) {
$arr = array('statusCode' => 200, 'message' => "修改成功", 'navTabId' => "", 'rel' => "", 'callbackType' => "closeCurrent", "forwardUrl" => "");
} else {
$arr = array('statusCode' => 300, 'message' => "操作失敗", 'navTabId' => "", 'rel' => "", 'callbackType' => "closeCurrent", "forwardUrl" => "");
}
}
return $arr;
}
示例2: test
<?php
//Oliver user fetch function
global $db, $user;
include_once 'include/h.inc.php';
// $user =& JFactory::getUser();
//Oliver user fetch function
if ($user->email != '') {
$sso = new test();
//Variable
$sso->update($user->email, $user->real_name, $user->date_joined, $user->username, $user->city, $user->country);
//Variable
} else {
}
示例3: test
<?php
// SAMPLE FOR METHOD UPDATE()
include_once "../generated_classes/class.test.php";
$test = new test();
$test->select(16);
// Load from DB first
$test->name = "strb";
// String
$test->jahr = 2006;
// Number
$test->update(16);
// update
print "updated record record {$test->id}";