本文整理汇总了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;
}
//.........这里部分代码省略.........
示例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;
}
}
}
}