mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Why it uses split that don't require regular expression?
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4430 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
c5be4a62ba
commit
89cadcee18
1 changed files with 1 additions and 1 deletions
|
|
@ -316,7 +316,7 @@
|
|||
$debug_file = _XE_PATH_."files/_debug_message.php";
|
||||
$bt = debug_backtrace();
|
||||
$first = array_shift($bt);
|
||||
$buff = sprintf("[%s:%d]\n%s\n", array_pop(split(DIRECTORY_SEPARATOR, $first["file"])), $first["line"], print_r($buff,true));
|
||||
$buff = sprintf("[%s:%d]\n%s\n", array_pop(explode(DIRECTORY_SEPARATOR, $first["file"])), $first["line"], print_r($buff,true));
|
||||
|
||||
if($display_line) $buff = "\n====================================\n".$buff."------------------------------------\n";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue