PHP implementation of the debug log log Operation class instance _php skills

Source: Internet
Author: User
Tags exception handling log log php error

The example in this article describes the debug log action class for PHP implementation. Share to everyone for your reference, specific as follows:

<?php
class Tool {public
  static function log ($info) {
    $time = date (' m-d h:i:s ');
    $backtrace = Debug_backtrace ();
    $backtrace _line = Array_shift ($backtrace); Which row calls the log method
    $backtrace _call = Array_shift ($backtrace);//Who calls the log
    method $file = substr ($backtrace _line[' file ') , strlen ($_server[' document_root '));
    $line = $backtrace _line[' line '];
    $class = isset ($backtrace _call[' class ')? $backtrace _call[' class ']: ';
    $type = isset ($backtrace _call[' type ')? $backtrace _call[' type ']: ';
    $func = $backtrace _call[' function '];
    File_put_contents ($_server[' document_root '). ' /debug.log ', "$time $file: $line $class $type$func: $info \ n", file_append)
  ;
}
Class Action {public
  function A () {
    $this->b ();
  }
  Public Function B () {
    $this->c ();
  }
  Public Function C () {
    tool::log (' sdfsdf ');
  }
$action = new Action ();
$action->a ();

Here's another function to add:

function Loginfo ($format) {
  $args = Func_get_args ();
  Array_shift ($args);
  $d = Debug_backtrace (debug_backtrace_provide_object, 1) [0];
  $info = vsprintf ($format, $args);
  $data = sprintf ("%s%s,%d:%s\n", Date ("Ymd he"), $d ["File"], $d ["line"], $info);
  File_put_contents (__dir__.) /log.txt ", $data, File_append);
}

More interested in PHP related content readers can view the site topics: "PHP error and Exception handling method summary", "PHP string (String) Usage summary", "PHP Array" Operation Techniques Encyclopedia, "PHP operation and operator Usage Summary", " PHP Network Programming Skills Summary, "Introduction to PHP Basic Grammar", "PHP object-oriented Programming Introductory Course", "Php+mysql Database Operation Introduction" and "PHP common database Operation Skills Summary"

I hope this article will help you with the PHP program design.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.