本文整理汇总了PHP中Price::getId方法的典型用法代码示例。如果您正苦于以下问题:PHP Price::getId方法的具体用法?PHP Price::getId怎么用?PHP Price::getId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Price
的用法示例。
在下文中一共展示了Price::getId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: flush
/**
*
* @param Price $price
* @return int id of the Price inserted in base. False if it didn't work.
*/
public static function flush($price)
{
$priceId = $price->getId();
$pricevar = $price->getPrice();
if ($priceId > 0) {
$sql = 'UPDATE price p SET ' . 'p.price = ?, ' . 'WHERE p.id_price = ?';
$params = array('di', &$pricevar, $priceId);
} else {
$sql = 'INSERT INTO price ' . '(price) ' . 'VALUES(?) ';
$params = array('d', &$pricevar);
}
$idInsert = BaseSingleton::insertOrEdit($sql, $params);
if ($idInsert !== false && $priceId > 0) {
$idInsert = $priceId;
}
return $idInsert;
}
示例2: addPrice
/**
* ajoute un prix
* @param int $obj_id
* @param int $grp_id
* @param int $per_id
* @param int $pri_credit
* @return String $csvResult
*/
public function addPrice($obj_id, $grp_id, $per_id, $pri_credit)
{
$rtn = new ComplexData();
$obj = new Object($obj_id);
if ($obj->getState() != 1) {
$rtn->addLine(array($obj->getState(), 0));
return $rtn->csvArrays();
}
$grp = new Group($grp_id);
if ($grp->getState() != 1) {
$rtn->addLine(array($grp->getState(), 0));
return $rtn->csvArrays();
}
$per = new Period($per_id);
if ($per->getState() != 1) {
$rtn->addLine(array($per->getState(), 0));
return $rtn->csvArrays();
}
$price = new Price(0, $obj, $grp, $per, $pri_credit);
$rtn->addLine(array($price->getState(), $price->getId()));
return $rtn->csvArrays();
}
示例3: Object
<?php
set_include_path(dirname(_FILE_) . '/../');
require_once 'class/Object.class.php';
require_once 'class/Group.class.php';
require_once 'class/Price.class.php';
//Pour créer un prix, on a besoin d'un objet et d'un groupe
$Objet = new Object(2);
$Group = new Group(2);
$Group1 = new Group(1);
/*
echo '<h2>Création</h2>';
$Price = new Price(0, $Objet, $Group, 150);
echo $Price->getState();
echo $Price->getId();
echo $Price->getObject()->getName();
echo $Price->getGroup()->getName();
*/
echo '<h2>Lecture</h2>';
$Price = new Price(1);
echo $Price->getState();
echo $Price->getId();
echo $Price->getObject()->getName();
echo $Price->getGroup()->getName();
//echo $Price->setCredit(50);
//echo $Price->setGroup($Group);
echo $Price->remove();