本文整理汇总了PHP中RedBeanPHP\OODBBean::getPropertiesAndType方法的典型用法代码示例。如果您正苦于以下问题:PHP OODBBean::getPropertiesAndType方法的具体用法?PHP OODBBean::getPropertiesAndType怎么用?PHP OODBBean::getPropertiesAndType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RedBeanPHP\OODBBean
的用法示例。
在下文中一共展示了OODBBean::getPropertiesAndType方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: storeBean
/**
* Stores a cleaned bean; i.e. only scalar values. This is the core of the store()
* method. When all lists and embedded beans (parent objects) have been processed and
* removed from the original bean the bean is passed to this method to be stored
* in the database.
*
* @param OODBBean $bean the clean bean
*
* @return void
*/
protected function storeBean(OODBBean $bean)
{
if ($bean->getMeta('tainted')) {
list($properties, $table) = $bean->getPropertiesAndType();
$id = $properties['id'];
unset($properties['id']);
$updateValues = array();
$k1 = 'property';
$k2 = 'value';
foreach ($properties as $key => $value) {
$updateValues[] = array($k1 => $key, $k2 => $value);
}
$bean->id = $this->writer->updateRecord($table, $updateValues, $id);
$bean->setMeta('tainted', FALSE);
}
}