本文整理汇总了PHP中Categorie::setCat_id方法的典型用法代码示例。如果您正苦于以下问题:PHP Categorie::setCat_id方法的具体用法?PHP Categorie::setCat_id怎么用?PHP Categorie::setCat_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Categorie
的用法示例。
在下文中一共展示了Categorie::setCat_id方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: buildDomainObject
/**
* Creates an Category object based on a DB row.
*
* @param array $row The DB row containing Category data.
* @return \MyMovies\Domain\Category
*/
protected function buildDomainObject($row)
{
$cat = new Categorie();
$cat->setCat_id($row['cat_id']);
$cat->setCat_name($row['cat_name']);
return $cat;
}
示例2: getCategorie
function getCategorie($id)
{
$result = $this->connector->query("SELECT * FROM categorie WHERE `cat_id` = '{$id}'");
while ($row = $this->connector->fetchArray($result)) {
$categorie = new Categorie();
$categorie->setCat_id($row['cat_id']);
$categorie->setCat_title($row['cat_title']);
$categorie->setCat_despription($row['cat_despription']);
return $categorie;
}
}