本文整理匯總了PHP中DataHandler::objectSort方法的典型用法代碼示例。如果您正苦於以下問題:PHP DataHandler::objectSort方法的具體用法?PHP DataHandler::objectSort怎麽用?PHP DataHandler::objectSort使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類DataHandler
的用法示例。
在下文中一共展示了DataHandler::objectSort方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: init
/**
* para listagem de produtos
*/
public function init()
{
//lista todos produtos vinculados a categoria 2
$returnResult = new HttpResult();
//iniciando o resultado para o html
$retornoDaPaginaHTML = new HttpRoot();
$arrayContentsVO = array();
//se foi passado o id da categoria entao vai buscar todos os contentents vinculados a mesma
//echo Debug::li($this->category_id);exit();
$LinkDAO = LinkDAO::getInstance();
$category_id = 87;
//categoria a que todos os equipes estão vinculados
$returnDataVO = $LinkDAO->select(LinkDAO::RETURN_VO, "category", $category_id, "content", NULL, 1, NULL, NULL, $order_by = "order", $order_type = NULL);
//verifica se o resultado é uma categoryVO
if ($returnDataVO->success && count($returnDataVO->result) > 0) {
foreach ($returnDataVO->result as $LinkVO) {
//Debug::print_r($LinkVO);
$tempReturnDataVO = $LinkVO->getLinkedVO();
//Debug::print_r($tempReturnDataVO);exit();
if ($tempReturnDataVO->success) {
$stdClass = $tempReturnDataVO->result;
//$stdClass->dads
//Debug::print_r($stdClass);
//$stdClass->files = $stdClass->getFiles();
if ($stdClass->active == 1) {
$arrayContentsVO[] = $stdClass;
}
}
}
//exit();
}
//Debug::print_r($arrayContentsVO);
DataHandler::objectSort($arrayContentsVO, "title");
$retornoDaPaginaHTML->arrayContentsVO = $arrayContentsVO;
$retornoDaPaginaHTML->array_segment = $this->getContents(125);
$retornoDaPaginaHTML->array_estrutura = $this->getContents(126);
//salvando o objeto de resultado de html no retorno
$returnResult->setHttpContentResult($retornoDaPaginaHTML);
//Debug::print_r($returnResult);
//exit();
return $returnResult;
}