本文整理匯總了PHP中Zend_Db_Table_Select::assemble方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Db_Table_Select::assemble方法的具體用法?PHP Zend_Db_Table_Select::assemble怎麽用?PHP Zend_Db_Table_Select::assemble使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Zend_Db_Table_Select
的用法示例。
在下文中一共展示了Zend_Db_Table_Select::assemble方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: assemble
public function assemble()
{
$assembled = parent::assemble();
/** @var $logger Logger_Application_Logger */
$logger = Zend_Registry::get('logger');
$logger->log(__CLASS__ . ":: " . $assembled, "system", Zend_log::DEBUG);
return $assembled;
}
示例2: assemble
/**
* Performs a validation on the select query before passing back to the parent class.
* Ensures that only columns from the primary Zend_Db_Table are returned in the result.
*
* @return string|null This object as a SELECT string (or null if a string cannot be produced)
*/
public function assemble()
{
$fields = $this->getPart(Zend_Db_Table_Select::COLUMNS);
$primary = $this->_info[Zend_Db_Table_Abstract::NAME];
$schema = $this->_info[Zend_Db_Table_Abstract::SCHEMA];
if (count($this->_parts[Zend_Db_Table_Select::UNION]) == 0) {
// If no fields are specified we assume all fields from primary table
if (!count($fields)) {
$prefix = $this->_info[Axis_Db_Table_Abstract::PREFIX];
$shortPrimary = substr($primary, strlen($prefix));
$this->from($shortPrimary, Zend_Db_Table_Select::SQL_WILDCARD, $schema);
$fields = $this->getPart(Zend_Db_Table_Select::COLUMNS);
}
$from = $this->getPart(Zend_Db_Table_Select::FROM);
if ($this->_integrityCheck !== false) {
foreach ($fields as $columnEntry) {
list($table, $column) = $columnEntry;
// Check each column to ensure it only references the primary table
if ($column) {
if (!isset($from[$table]) || $from[$table]['tableName'] != $primary) {
require_once 'Zend/Db/Table/Select/Exception.php';
throw new Zend_Db_Table_Select_Exception('Select query cannot join with another table');
}
}
}
}
}
return parent::assemble();
}
示例3: assemble
/**
* Standard Zend_Db_Select assemble
*
* @return string
*/
public function assemble()
{
return $this->select->assemble();
}