本文整理匯總了PHP中Connector::Update方法的典型用法代碼示例。如果您正苦於以下問題:PHP Connector::Update方法的具體用法?PHP Connector::Update怎麽用?PHP Connector::Update使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Connector
的用法示例。
在下文中一共展示了Connector::Update方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: write
function write()
{
$bdd = new Connector();
$promo = $bdd->Select("*", "promo", array("where" => array(array("id_promo", "=", $this->id_promo))));
if (!$promo) {
throw new UnexpectedValueException("La promo n'existe plus en base de données");
}
$promo = $promo[0];
$attrs = get_object_vars($this);
$toUpdate = array();
foreach ($attrs as $key => $value) {
if ($value != $promo[$key]) {
$toUpdate[$key] = $value;
}
}
$bdd->Update("promo", array("set" => $toUpdate, "where" => array(array("id_promo", "=", $this->id_promo))));
}
示例2: write
function write()
{
$bdd = new Connector();
$data = $bdd->Select("*", "data", array("where" => array(array("identifiant", "=", $this->identifiant))));
if (!$data) {
throw new UnexpectedValueException("Les données n'existent plus en base de données");
}
$data = $data[0];
$attrs = get_object_vars($this);
$toUpdate = array();
foreach ($attrs as $key => $value) {
if ($value != $data[$key]) {
$toUpdate[$key] = $value;
}
}
$bdd->Update("data", array("set" => $toUpdate, "where" => array(array("identifiant", "=", $this->identifiant))));
}
示例3: changeRank
function changeRank($newRank)
{
$bdd = new Connector();
// Change promo in both object and BDD
$this->rang = $newRank;
$bdd->Update("document", array("where" => array(array("id", "=", $this->id)), "set" => array("rang" => $this->rang)));
}