當前位置: 首頁>>代碼示例>>PHP>>正文


PHP clsPmieducarBiblioteca::existe方法代碼示例

本文整理匯總了PHP中clsPmieducarBiblioteca::existe方法的典型用法代碼示例。如果您正苦於以下問題:PHP clsPmieducarBiblioteca::existe方法的具體用法?PHP clsPmieducarBiblioteca::existe怎麽用?PHP clsPmieducarBiblioteca::existe使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在clsPmieducarBiblioteca的用法示例。


在下文中一共展示了clsPmieducarBiblioteca::existe方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: clsPmieducarExemplarEmprestimo

 /**
  * Construtor (PHP 4)
  *
  * @return object
  */
 function clsPmieducarExemplarEmprestimo($cod_emprestimo = null, $ref_usuario_devolucao = null, $ref_usuario_cad = null, $ref_cod_cliente = null, $ref_cod_exemplar = null, $data_retirada = null, $data_devolucao = null, $valor_multa = null, $ref_cod_biblioteca = null)
 {
     $db = new clsBanco();
     $this->_schema = "pmieducar.";
     $this->_tabela = "{$this->_schema}exemplar_emprestimo";
     $this->_campos_lista = $this->_todos_campos = "ee.cod_emprestimo, ee.ref_usuario_devolucao, ee.ref_usuario_cad, ee.ref_cod_cliente, ee.ref_cod_exemplar, ee.data_retirada, ee.data_devolucao, ee.valor_multa";
     if (is_numeric($ref_usuario_devolucao)) {
         if (class_exists("clsPmieducarUsuario")) {
             $tmp_obj = new clsPmieducarUsuario($ref_usuario_devolucao);
             if (method_exists($tmp_obj, "existe")) {
                 if ($tmp_obj->existe()) {
                     $this->ref_usuario_devolucao = $ref_usuario_devolucao;
                 }
             } else {
                 if (method_exists($tmp_obj, "detalhe")) {
                     if ($tmp_obj->detalhe()) {
                         $this->ref_usuario_devolucao = $ref_usuario_devolucao;
                     }
                 }
             }
         } else {
             if ($db->CampoUnico("SELECT 1 FROM pmieducar.usuario WHERE cod_usuario = '{$ref_usuario_devolucao}'")) {
                 $this->ref_usuario_devolucao = $ref_usuario_devolucao;
             }
         }
     }
     if (is_numeric($ref_usuario_cad)) {
         if (class_exists("clsPmieducarUsuario")) {
             $tmp_obj = new clsPmieducarUsuario($ref_usuario_cad);
             if (method_exists($tmp_obj, "existe")) {
                 if ($tmp_obj->existe()) {
                     $this->ref_usuario_cad = $ref_usuario_cad;
                 }
             } else {
                 if (method_exists($tmp_obj, "detalhe")) {
                     if ($tmp_obj->detalhe()) {
                         $this->ref_usuario_cad = $ref_usuario_cad;
                     }
                 }
             }
         } else {
             if ($db->CampoUnico("SELECT 1 FROM pmieducar.usuario WHERE cod_usuario = '{$ref_usuario_cad}'")) {
                 $this->ref_usuario_cad = $ref_usuario_cad;
             }
         }
     }
     if (is_numeric($ref_cod_cliente)) {
         if (class_exists("clsPmieducarCliente")) {
             $tmp_obj = new clsPmieducarCliente($ref_cod_cliente);
             if (method_exists($tmp_obj, "existe")) {
                 if ($tmp_obj->existe()) {
                     $this->ref_cod_cliente = $ref_cod_cliente;
                 }
             } else {
                 if (method_exists($tmp_obj, "detalhe")) {
                     if ($tmp_obj->detalhe()) {
                         $this->ref_cod_cliente = $ref_cod_cliente;
                     }
                 }
             }
         } else {
             if ($db->CampoUnico("SELECT 1 FROM pmieducar.cliente WHERE cod_cliente = '{$ref_cod_cliente}'")) {
                 $this->ref_cod_cliente = $ref_cod_cliente;
             }
         }
     }
     if (is_numeric($ref_cod_exemplar)) {
         if (class_exists("clsPmieducarExemplar")) {
             $tmp_obj = new clsPmieducarExemplar($ref_cod_exemplar);
             if (method_exists($tmp_obj, "existe")) {
                 if ($tmp_obj->existe()) {
                     $this->ref_cod_exemplar = $ref_cod_exemplar;
                 }
             } else {
                 if (method_exists($tmp_obj, "detalhe")) {
                     if ($tmp_obj->detalhe()) {
                         $this->ref_cod_exemplar = $ref_cod_exemplar;
                     }
                 }
             }
         } else {
             if ($db->CampoUnico("SELECT 1 FROM pmieducar.exemplar WHERE cod_exemplar = '{$ref_cod_exemplar}'")) {
                 $this->ref_cod_exemplar = $ref_cod_exemplar;
             }
         }
     }
     if (is_numeric($cod_emprestimo)) {
         $this->cod_emprestimo = $cod_emprestimo;
     }
     if (is_string($data_retirada)) {
         $this->data_retirada = $data_retirada;
     }
     if (is_string($data_devolucao)) {
         $this->data_devolucao = $data_devolucao;
     }
//.........這裏部分代碼省略.........
開發者ID:secteofilandia,項目名稱:ieducar,代碼行數:101,代碼來源:clsPmieducarExemplarEmprestimo.inc.php

示例2: clsPmieducarPagamentoMulta

 /**
  * Construtor (PHP 4)
  *
  * @return object
  */
 function clsPmieducarPagamentoMulta($cod_pagamento_multa = null, $ref_usuario_cad = null, $ref_cod_cliente = null, $valor_pago = null, $data_cadastro = null, $ref_cod_biblioteca = null)
 {
     $db = new clsBanco();
     $this->_schema = "pmieducar.";
     $this->_tabela = "{$this->_schema}pagamento_multa";
     $this->_campos_lista = $this->_todos_campos = "cod_pagamento_multa, ref_usuario_cad, ref_cod_cliente, valor_pago, data_cadastro, ref_cod_biblioteca";
     if (is_numeric($ref_usuario_cad)) {
         if (class_exists("clsPmieducarUsuario")) {
             $tmp_obj = new clsPmieducarUsuario($ref_usuario_cad);
             if (method_exists($tmp_obj, "existe")) {
                 if ($tmp_obj->existe()) {
                     $this->ref_usuario_cad = $ref_usuario_cad;
                 }
             } else {
                 if (method_exists($tmp_obj, "detalhe")) {
                     if ($tmp_obj->detalhe()) {
                         $this->ref_usuario_cad = $ref_usuario_cad;
                     }
                 }
             }
         } else {
             if ($db->CampoUnico("SELECT 1 FROM pmieducar.usuario WHERE cod_usuario = '{$ref_usuario_cad}'")) {
                 $this->ref_usuario_cad = $ref_usuario_cad;
             }
         }
     }
     if (is_numeric($ref_cod_cliente)) {
         if (class_exists("clsPmieducarCliente")) {
             $tmp_obj = new clsPmieducarCliente($ref_cod_cliente);
             if (method_exists($tmp_obj, "existe")) {
                 if ($tmp_obj->existe()) {
                     $this->ref_cod_cliente = $ref_cod_cliente;
                 }
             } else {
                 if (method_exists($tmp_obj, "detalhe")) {
                     if ($tmp_obj->detalhe()) {
                         $this->ref_cod_cliente = $ref_cod_cliente;
                     }
                 }
             }
         } else {
             if ($db->CampoUnico("SELECT 1 FROM pmieducar.cliente WHERE cod_cliente = '{$ref_cod_cliente}'")) {
                 $this->ref_cod_cliente = $ref_cod_cliente;
             }
         }
     }
     if (is_numeric($cod_pagamento_multa)) {
         $this->cod_pagamento_multa = $cod_pagamento_multa;
     }
     if (is_numeric($valor_pago)) {
         $this->valor_pago = $valor_pago;
     }
     if (is_string($data_cadastro)) {
         $this->data_cadastro = $data_cadastro;
     }
     if (is_numeric($ref_cod_biblioteca)) {
         if (class_exists("clsPmieducarBiblioteca")) {
             $tmp_obj = new clsPmieducarBiblioteca($ref_cod_biblioteca);
             if ($tmp_obj->existe()) {
                 $this->ref_cod_biblioteca = $ref_cod_biblioteca;
             }
         }
     }
 }
開發者ID:secteofilandia,項目名稱:ieducar,代碼行數:69,代碼來源:clsPmieducarPagamentoMulta.inc.php


注:本文中的clsPmieducarBiblioteca::existe方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。