当前位置: 首页>>代码示例>>PHP>>正文


PHP Cliente::getClientByid方法代码示例

本文整理汇总了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;
    }
}
开发者ID:rodrigogk87,项目名称:djme,代码行数:24,代码来源:order_confirm.php

示例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);
     }
 }
开发者ID:rodrigogk87,项目名称:djme,代码行数:38,代码来源:globalServer.php


注:本文中的Cliente::getClientByid方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。