本文整理汇总了PHP中Cliente::getSexo方法的典型用法代码示例。如果您正苦于以下问题:PHP Cliente::getSexo方法的具体用法?PHP Cliente::getSexo怎么用?PHP Cliente::getSexo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cliente
的用法示例。
在下文中一共展示了Cliente::getSexo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: cadCliente
public function cadCliente(Cliente $objCliente)
{
$conexao = $this->abreConexao();
$sql = "INSERT INTO " . TBL_CLIENTES . " SET\n nome = '" . $objCliente->getNome() . "',\n email = '" . $objCliente->getEmail() . "',\n senha = '" . $objCliente->getSenha() . "',\n telefone = '" . $objCliente->getTelefone() . "',\n dataNascimento = '" . $objCliente->getDataNascimento() . "',\n cpf = '" . $objCliente->getCpf() . "',\n sexo = '" . $objCliente->getSexo() . "',\n status = 1\n dataCadastro = NOW()\n ";
$conexao->query($sql) or die($conexao->error);
$idCliente = $conexao->insert_id;
return $idCliente;
}
示例2: filtrarClientes
/**
* Filtrar Cliente por datos
*
* @author Jonathan Sandoval <jonathan_s_pisis@hotmail.com>
* @param Cliente $Cliente Objeto del tipo Cliente con los datos que deben de filtrar
* @return Array(Cliente) Regresa un Arreglo con el conjunto de Clientes filtrados
*/
static function filtrarClientes($Cliente = NULL)
{
$nombreTabla = constant('TABLA_CLIENTE');
$rfc = $Cliente->getRFC();
$nombre = $Cliente->getNombre();
$sexo = $Cliente->getSexo();
$regimen = $Cliente->getRegimen();
$calle = $Cliente->getCalle();
$edificio = $Cliente->getNoEdificio();
$Cliente->getCiudad() !== NULL ? $tipo = $Cliente->getCiudad()->getAbreviatura() : ($tipo = "");
$Clientes = array();
$consult_cad = "SELECT * \n FROM {$nombreTabla}\n WHERE ID LIKE \"%{$id}%\" AND\n RFC LIKE \"%{$rfc}%\" AND\n Nombre LIKE \"%{$nombre}%\" AND\n Sexo LIKE \"%{$sexo}%\" AND\n Regimen LIKE \"%{$regimen}%\" AND\n Calle LIKE \"%{$calle}%\" AND\n Ciudad LIKE \"%{$ciudad}%\" AND\n NoEdificio LIKE \"%{$edificio}%\"";
$res = ControladorBaseDatos::query($consult_cad);
while ($row = $res->fetch_assoc()) {
$Clientes[] = self::array_Cliente($row);
}
return $Clientes;
}