The example in this article describes the debug related function usage of PHP. Share to everyone for your reference, specific as follows:
Loginfo function:
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.