本文整理汇总了PHP中Cliente::getClientByid方法的典型用法代码示例。如果您正苦于以下问题:PHP Cliente::getClientByid方法的具体用法?PHP Cliente::getClientByid怎么用?PHP Cliente::getClientByid使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cliente
的用法示例。
在下文中一共展示了Cliente::getClientByid方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setCreditsForUser
function setCreditsForUser($credits, $cliid)
{
global $config;
$servidor = $config['db']['servidor'];
$usuario = $config['db']['usuario'];
$pwd = $config['db']['pwd'];
$bd = $config['db']['DBGlobal'];
dataIO::conectar($servidor, $usuario, $pwd, $bd);
$cliente = new Cliente();
$query = $cliente->getClientByid($cliid);
try {
$result = dataIO::executeQuery($query);
$fila = mysqli_fetch_assoc($result);
if ($fila != null) {
$cliente = new Cliente($fila);
$credits += $cliente->getCreditos();
$query = $cliente->getUpdateCredits($credits, $cliid);
$result = dataIO::executeQuery($query);
}
return true;
} catch (Exception $e) {
return false;
}
}
示例2: getCliente
public function getCliente()
{
global $config;
$servidor = $config['db']['servidor'];
$usuario = $config['db']['usuario'];
$pwd = $config['db']['pwd'];
$bd = $config['db']['DBGlobal'];
dataIO::conectar($servidor, $usuario, $pwd, $bd);
//no pregunto por pass porq todavia no lo uso
if (isset($_GET['nick'])) {
$nick = (string) $_GET['nick'];
$pass = (string) $_GET['pass'];
} else {
if (isset($_POST['nick'])) {
$nick = (string) $_POST['nick'];
$pass = (string) $_POST['pass'];
}
}
//escapamos el nick y pass para prevenir inyeccion sql ya que son strings
$nick = mysqli_real_escape_string(dataIO::isConnected(), $nick);
$pass = mysqli_real_escape_string(dataIO::isConnected(), $pass);
//fin escape
$usuario = new Usuario();
$cliente = new Cliente();
$query = $usuario->getUserByName($nick);
try {
$result = dataIO::executeQuery($query);
$fila = mysqli_fetch_assoc($result);
$usuario = new Usuario($fila);
$query2 = $cliente->getClientByid($usuario->getId());
$result2 = dataIO::executeQuery($query2);
$fila2 = mysqli_fetch_assoc($result2);
$cliente = new Cliente($fila2);
echo json_encode($cliente->getJSon());
} catch (Exception $e) {
echo json_encode(null);
}
}