本文整理汇总了PHP中Cliente::getNombre方法的典型用法代码示例。如果您正苦于以下问题:PHP Cliente::getNombre方法的具体用法?PHP Cliente::getNombre怎么用?PHP Cliente::getNombre使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cliente
的用法示例。
在下文中一共展示了Cliente::getNombre方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: guardarCliente
function guardarCliente(Cliente $cliente)
{
$nombre = $cliente->getNombre();
$email = $cliente->getEmail();
$arrayRuta = $cliente->getRutaImagen();
$imagen = $arrayRuta['name'];
$tmp = $arrayRuta['tmp_name'];
if ($imagen != "") {
$destino = "../imagenes/" . $imagen;
if (copy($tmp, $destino)) {
if (empty($nombre) || empty($email)) {
return "No hay datos que guardar";
} else {
$sql = "insert into cliente2 values(0,'{$nombre}','{$email}','{$destino}')";
if ($this->conexion->conexion->query($sql)) {
$myId = $this->conexion->conexion->insert_id;
return $myId;
$this->conexion->conexion->close();
} else {
return "Error al guardar el usuario";
}
$this->conexion->conexion->close();
}
} else {
return "Error al subir Imagen";
}
} else {
return "Error en el nombre de la imagen";
}
}
示例2: updateCliente
function updateCliente(Cliente $c)
{
require_once '../conexion.php';
require_once '../model.business/Cliente.php';
try {
$conexion = new conexion();
$conn = $conexion->conn();
$rut = $c->getRut();
$nombre = $c->getNombre();
$apellido = $c->getApellido();
$email = $c->getEmail();
$telefono = $c->getTelefono();
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$sql = $conn->prepare("UPDATE clientes SET nombre = :nombre, apellido = :apellido, email = :email, telefono = :telefono WHERE rut = :rut;");
$sql->bindParam(':rut', $rut);
$sql->bindParam(':nombre', $nombre);
$sql->bindParam(':apellido', $apellido);
$sql->bindParam(':email', $email);
$sql->bindParam(':telefono', $telefono);
return $sql->execute();
} catch (PDOException $exc) {
echo $exc->getMessage();
}
}
示例3: 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;
}