PHP implements log recording method based on custom functions

墨辰丷
Release: 2023-03-26 19:52:01
Original
1208 people have browsed it

This article mainly introduces the method of php recording logs based on custom functions, involving php related operating skills for files, directories and error logs. Friends in need can refer to it

/**
 * 记录错误日志
 * @param 日志内容 $res
 */
function save_log($res) {
  $err_date = date("Ym", time());
  //$address = '/var/log/error';
  $address = './error';
  if (!is_dir($address)) {
    mkdir($address, 0700, true);
  }
  $address = $address.'/'.$err_date . '_error.log';
  $error_date = date("Y-m-d H:i:s", time());
  if(!empty($_SERVER['HTTP_REFERER'])) {
    $file = $_SERVER['HTTP_REFERER'];
  } else {
    $file = $_SERVER['REQUEST_URI'];
  }
  if(is_array($res)) {
    $res_real = "$error_date\t$file\n";
    error_log($res_real, 3, $address);
    $res = var_export($res,true);
    $res = $res."\n";
    error_log($res, 3, $address);
  } else {
    $res_real = "$error_date\t$file\t$res\n";
    error_log($res_real, 3, $address);
  }
}
Copy after login

var_export() Method details:

var_export – Output or return a string representation of a variable

Description:

mixed var_export (mixed expression, bool)

This function returns structural information about the variables passed to the function. It is similar to var_dump(), except that the representation returned is Legal PHP code.

You can return a representation of a variable by setting the second parameter of the function to TRUE.

EG:

var_export(array('a','b',array('aa','bb','cc'))) This kind There is no difference from VAR_DUMP;

$var =var_export(array('a','b',array('aa','bb','cc')),TRUE)
Copy after login

After TRUE is added, it will not be printed out anymore,

but a variable is given, so that It can be output directly;

echo $var;
Copy after login

The output form at this time is similar to that printed by var_dump().

Related recommendations:

PHP custom functionDetailed explanation of the method to determine whether it is submitted by Get/Post/Ajax

PHP custom functionMethods to determine whether it is Get, Post and Ajax submission

About php custom function Explanation of defining functions and internal functions

The above is the detailed content of PHP implements log recording method based on custom functions. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template