本文整理汇总了PHP中Lista::getParametros方法的典型用法代码示例。如果您正苦于以下问题:PHP Lista::getParametros方法的具体用法?PHP Lista::getParametros怎么用?PHP Lista::getParametros使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Lista
的用法示例。
在下文中一共展示了Lista::getParametros方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: enviarPacote
public function enviarPacote($de = '', $html = false)
{
Email::$msg = $this->getTexto()->texto;
if ($html) {
Email::$html = $html;
}
if ($de) {
Email::$de = $de;
}
Email::$assunto = $this->getTexto()->titulo;
if ($this->getStatus() == self::PARADO) {
self::criarListaParaEnvio($this);
}
$l = new Lista('mailing_pacotes_envio');
$l->condicoes('', $this->getId(), 'mailing');
$total = $l->getTotal();
if ($total > Sistema::$emailsPorHora) {
$l->setParametros(Sistema::$emailsPorHora, 'limite');
$this->setStatus(self::ENVIANDO);
} else {
$this->setStatus(self::PARADO);
}
$lM = new ListaMailings();
$lM->alterar($this);
$con = BDConexao::__Abrir();
while ($rs = $l->listar()) {
Email::$para = $rs['email'];
Email::enviar();
$con->executar("DELETE FROM " . Sistema::$BDPrefixo . "mailing_pacotes_envio WHERE mailing = '" . $this->getId() . "' AND email = '" . $rs['email'] . "'");
$l->setParametros(0);
$l->setParametros($l->getParametros('limite') - 1, 'limite');
}
}
示例2: Lista
$iTCL->enterRepeticao()->trocar("nome.Estado", $rs['nome']);
$iTCL->enterRepeticao()->trocar("uf.Estado", $rs['uf']);
if($rs['id'] == $estado)
$iTCL->enterRepeticao()->trocar("selected.Estado", 'selected');
}
*/
$con = new Lista("cidade");
$iTCL->createRepeticao("repetir->Cidade");
if (!empty($_GET['estado'])) {
$con->condicoes('', $_GET['estado'], "estado");
if (isset($_GET['json'])) {
$a = array('lista' => true);
while ($rs = $con->listar()) {
$a[$con->getParametros()] = array('id' => $rs['id'], 'nome' => $rs['nome']);
}
$ajax = new Ajax();
echo $ajax->getJSON()->converter($a);
exit;
}
}
/*
while($rs = $con->listar()){
$iTCL->repetir();
$iTCL->enterRepeticao()->trocar("id.Cidade", $rs['id']);
$iTCL->enterRepeticao()->trocar("nome.Cidade", $rs['nome']);
if($rs['id'] == $cidade)
$iTCL->enterRepeticao()->trocar("selected.Cidade", 'selected');