本文整理汇总了PHP中Read::ExeRead方法的典型用法代码示例。如果您正苦于以下问题:PHP Read::ExeRead方法的具体用法?PHP Read::ExeRead怎么用?PHP Read::ExeRead使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Read
的用法示例。
在下文中一共展示了Read::ExeRead方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Read
function __construct($FamiliaId, $EducandoId)
{
$this->FamiliaId = $FamiliaId;
$this->EducandoId = $EducandoId;
$read = new Read();
$read->ExeRead(DB_FAMILIA, "WHERE familia_id = :id", "id={$this->FamiliaId}");
if ($read->getResult()) {
$this->DadosPai = ['nome' => $read->getResult()[0]['familia_pai_nome'], 'telefone' => $read->getResult()[0]['familia_pai_telefonefixo']];
$this->DadosMae = ['nome' => $read->getResult()[0]['familia_mae_nome'], 'telefone' => $read->getResult()[0]['familia_mae_telefonefixo']];
$read->ExeRead(DB_EDUCANDOS, "WHERE educando_id = :id", "id={$this->EducandoId}");
if ($read->getResult()) {
$this->DadosEducando = ['nome' => $read->getResult()[0]['educando_nome']];
$this->Result = true;
$read->ExeRead(DB_SAUDE, "WHERE educando_id = :id", "id={$this->EducandoId}");
if ($read->getResult()) {
$this->ExistRecord = true;
$this->Data = $read->getResult()[0];
} else {
$this->ExistRecord = false;
$this->Data = null;
}
} else {
$this->Result = false;
$this->Error = ['Erro. Não existe cadastro para esse educando no sistema', TW_ERROR];
}
} else {
$this->Result = false;
$this->Error = ['Erro. Não existe cadastro para essa família no sistema', TW_ERROR];
}
}
示例2: getSyntax
private function getSyntax()
{
$read = new Read();
$read->ExeRead($this->tabela, $this->termos, $this->places);
$this->rows = $read->getRowCount();
if ($this->rows > $this->limit) {
$paginas = ceil($this->rows / $this->limit);
$maxLinks = $this->maxLinks;
$this->paginator = "<ul class=\"paginator\">";
$this->paginator .= "<li><a title=\"{$this->first}\" href=\"{$this->link}1\">{$this->first}</a></li>";
for ($iPag = $this->page - $maxLinks; $iPag <= $this->page - 1; $iPag++) {
if ($iPag >= 1) {
$this->paginator .= "<li><a title=\"Página {$iPag}\" href=\"{$this->link}{$iPag}\">{$iPag}</a></li>";
}
}
$this->paginator .= "<li><span=\"active\">{$this->page}</li>";
for ($dPag = $this->page + 1; $dPag <= $this->page + $maxLinks; $dPag++) {
if ($dPag <= $paginas) {
$this->paginator .= "<li><a title=\"Página {$dPag}\" href=\"{$this->link}{$dPag}\">{$dPag}</a></li>";
}
}
$this->paginator .= "<li><a title=\"{$this->last}\" href=\"{$this->link}{$paginas}\">{$this->last}</a></li>";
$this->paginator .= "</ul>";
}
}
示例3: getSyntax
private function getSyntax()
{
$read = new Read();
$read->ExeRead($this->Tabela, $this->Termos, $this->Places);
$this->Rows = $read->getRowCount();
if ($this->Rows > $this->Limite) {
$Paginas = ceil($this->Rows / $this->Limite);
$MaxLinks = $this->MaxLinks;
$this->Paginator = "<ul class=\"paginator\">";
$this->Paginator .= "<li><a title=\"{$this->First}\" href=\"{$this->Link}1\">{$this->First}</a></li>";
for ($iPag = $this->Page - $MaxLinks; $iPag <= $this->Page - 1; $iPag++) {
if ($iPag >= 1) {
$this->Paginator .= "<li><a title=\"Página {$iPag}\" href=\"{$this->Link}{$iPag}\">{$iPag}</a></li>";
}
}
$this->Paginator .= "<li><span class=\"active\">{$this->Page}</span></li>";
for ($dPag = $this->Page + 1; $dPag <= $this->Page + $MaxLinks; $dPag++) {
if ($dPag <= $Paginas) {
$this->Paginator .= "<li><a title=\"Página {$dPag}\" href=\"{$this->Link}{$dPag}\">{$dPag}</a></li>";
}
}
$this->Paginator .= "<li><a title=\"{$this->Last}\" href=\"{$this->Link}{$Paginas}\">{$this->Last}</a></li>";
$this->Paginator .= "</ul>";
}
}
示例4: getSyntax
private function getSyntax()
{
$read = new Read();
$read->ExeRead($this->Table, $this->Terms, $this->Places);
$this->Rows = $read->getRowCount();
// Verifica se tem resultados para que se faça a paginação
if ($this->Rows > $this->Limit) {
// Divide a quantidade de resultados (Rows) pelo limite para obter a quantidade de páginas
$Paginas = ceil($this->Rows / $this->Limit);
$MaxLinks = $this->MaxLinks;
$this->Paginator = "<ul class=\"paginator\">";
$this->Paginator .= "<li><a title=\"{$this->First}\" href=\"{$this->Link}1\">{$this->First}</a></li>";
for ($iPag = $this->Page - $MaxLinks; $iPag <= $this->Page - 1; $iPag++) {
if ($iPag >= 1) {
$this->Paginator .= "<li><a title=\"Página {$iPag}\" href=\"{$this->Link}{$iPag}\">{$iPag}</a></li>";
}
}
$this->Paginator .= "<li><span class=\"active\">{$this->Page}</span></li>";
for ($dPag = $this->Page + 1; $dPag <= $this->Page + $MaxLinks; $dPag++) {
if ($dPag <= $Paginas) {
$this->Paginator .= "<li><a title=\"Página {$dPag}\" href=\"{$this->Link}{$dPag}\">{$dPag}</a></li>";
}
}
$this->Paginator .= "<li><a title=\"{$this->Last}\" href=\"{$this->Link}{$Paginas}\">{$this->Last}</a></li>";
$this->Paginator .= "</ul>";
}
}
示例5: setName
private function setName()
{
$Where = isset($this->Post) ? "post_id != {$this->Post} and" : '';
$readName = new Read();
$readName->ExeRead(self::Entity, "where {$Where} post_title = :t", "t={$this->Data['post_title']}");
if ($readName->getResult()) {
$this->Data['post_name'] = $this->Data['post_name'] . '-' . $readName->getRowCount();
}
}
示例6: Trabalho
public function Trabalho($parametro)
{
include_once 'app/View/header.php';
$tipoAtividade = new Read();
$tipoAtividade->ExeRead('tipo_atividades');
include_once 'app/View/form-trabalho.php';
$parametro = $parametro;
include_once 'app/View/footer.php';
}
示例7: UserOnline
public static function UserOnline()
{
$now = Date('Y-m-d H:i:s');
$deleteUserOnline = new Delete();
$deleteUserOnline->ExeDelete('ws_siteviews_online', "WHERE online_endview < :now", "now={$now}");
$readUserOnline = new Read();
$readUserOnline->ExeRead('ws_siteviews_online');
return $readUserOnline->getRowCount();
}
示例8: select
private function select()
{
$ReadBanco = new Read();
$ReadBanco->ExeRead(self::entidade, ($this->id != 0 ? 'WHERE id = :id' : null) . ' ORDER BY sigla', $this->id != 0 ? "id={$this->id}" : null);
if ($ReadBanco->getRowCount() > 0) {
$this->result = $ReadBanco->getResult();
} else {
$this->result = null;
}
}
示例9: select
private function select()
{
$read = new Read();
$read->ExeRead(self::entidade, ($this->id != 0 ? 'WHERE id = :id' : '') . ' ORDER BY nome', $this->id != 0 ? "id={$this->id}" : null);
if ($read->getRowCount() > 0) {
$this->result = $read->getResult();
} else {
$this->result = null;
}
}
示例10: GetAccountId
/**
* Obtem o player com o id tal
* @return $Array [] de player
*/
public static function GetAccountId($id)
{
$Read = new Read();
$Read->ExeRead('players', "WHERE id = :id", "id={$id}");
$Result = $Read->getResult();
if ($Result) {
return $Result;
} else {
return false;
}
}
示例11: getUser
private function getUser()
{
$read = new Read();
$read->ExeRead('pessoas', "WHERE email = :e AND senha = :p", "e={$this->Email}&p={$this->Senha}");
if ($read->getResult()) {
$this->Result = $read->getResult()[0];
return true;
} else {
return false;
}
}
示例12: setName
private function setName()
{
$email = $this->Data['email'];
$readName = new Read();
$readName->ExeRead(self::Entity, "WHERE cpf = {$this->Data['cpf']} or email = '{$email}'");
if ($readName->getResult()) {
$this->Msg = "<script>alert('Ja possui Cadastrado em Nosso Sitema!');</script>";
} else {
$this->Create();
}
}
示例13: getUser
private function getUser()
{
$this->Senha = md5($this->Senha);
$read = new Read();
$read->ExeRead("ws_users", "WHERE user_email = :e AND user_password = :p", "e={$this->Email}&p={$this->Senha}");
if ($read->getResult()) {
$this->Result = $read->getResult()[0];
return TRUE;
} else {
return FALSE;
}
}
示例14: setName
private function setName()
{
$Where = !empty($this->CatId) ? "category_id != {$this->CatId} AND" : '';
$categoria = $this->Data['category_title'];
$readName = new Read();
$readName->ExeRead(self::Entity, "WHERE {$Where} category_title = :t", "t={$this->Data['category_title']}");
if ($readName->getResult()) {
$this->Error = ["<b>Erro ao Cadastrar:</b> Categoria ja está cadastrada", WS_ERROR];
} else {
$this->Create();
}
}
示例15: GetUser
private function GetUser()
{
$this->Pass = md5($this->Pass);
$read = new Read();
$read->ExeRead('user', "WHERE email = :e AND password = :p", "e={$this->Email}&p={$this->Pass}");
if ($read->getResult()) {
$this->Result = $read->getResult()[0];
return true;
} else {
return FALSE;
}
}