本文整理匯總了PHP中Logs::procesa方法的典型用法代碼示例。如果您正苦於以下問題:PHP Logs::procesa方法的具體用法?PHP Logs::procesa怎麽用?PHP Logs::procesa使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Logs
的用法示例。
在下文中一共展示了Logs::procesa方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Peticion
<?php
#------------------------------
#-- NO TOCAR
#------------------------------
#Desde aqui se invoca la carga de elementos del framework
#de las librerias y todo lo relacionado con la APP
#------------------------------
require_once './_frame/_boot.php';
#Carga de rutinas del framework
try {
Arranque::ejecuta(new Peticion());
#Se lanza la petici�n
} catch (FrameworkException $e) {
#Se detect� un error en el framework
Logs::procesa($e);
} catch (Exception $e) {
#Cualquier otro error en el sistema
Logs::procesa($e);
}
示例2: insertRAW
public function insertRAW($consulta)
{
$resultado = false;
if ($statement = self::$PDOInstance->prepare($consulta)) {
try {
if (!$statement->execute()) {
$_error = $statement->errorInfo();
throw new PDOException("[SQLSTATE] " . $_error[2], $_error[1]);
}
$resultado = self::$PDOInstance->lastInsertId();
} catch (PDOException $e) {
Logs::procesa($e);
return false;
}
return $resultado;
}
}