本文整理匯總了PHP中debug::write_log方法的典型用法代碼示例。如果您正苦於以下問題:PHP debug::write_log方法的具體用法?PHP debug::write_log怎麽用?PHP debug::write_log使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類debug
的用法示例。
在下文中一共展示了debug::write_log方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __construct
/**
* Construtor da classe
* @return void
*/
function __construct()
{
debug::write_log(get_class($this), "construct");
// controller::$db_string = $string;
/**
* O construtor eh resposavel por identificar se alguma funcao foi escolhida
* pelo usuario e chamar o metodo especifico
* A variavel 'op' possui o nome da funcao escolhida pelo usuario
*/
if (!$_REQUEST[op]) {
$metodo = 'index';
} else {
$metodo = $_REQUEST[op];
}
$this->classe = get_class($this);
//retorna o nome da classe atual. mesmo se for uma subclasse
$ar = array($this->classe, $metodo);
call_user_func($ar);
//executa o metodo chamado
}
示例2: showMessage
static function showMessage($msg)
{
debug::write_log(get_class($this) . "error::showMessage()", $msg);
include "error_view.php";
}
示例3: delete
/**
* Funcao que faz a exclusao dos dados na tabela/entidade
* @param string $where Parametros SQL para a exclusao
* @return void
*/
public function delete($where = null)
{
debug::write_log(get_class($this), "delete " . " - {$where}");
// $this->db->BeginTrans( );
$sql = "delete from " . $this->entity;
if ($where) {
$sql .= " where " . stripslashes($where);
}
//echo $sql;
try {
$this->result = $this->dbconn->queryWithErrors($sql);
} catch (Exception $e) {
error::showMessage("Erro excluindo registro: " . $e->getMessage());
debug::write_log(get_class($this), "Erro excluindo registro: " . $e->getMessage() . "\n SQL: " . $sql);
// echo "Erro na exclusao:".$e->getMessage().'<br><a href="javascript:history.go(-1)">Voltar</a>';
// exit;
}
}