C:\xampp2_not used\php\tests\parseFile\ignore_functions_match.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
function toFile($filename$data)
{
    if (
function_exists('file_put_contents')) {
        
file_put_contents($filename$data);
    } else {
        
$file fopen($filename'wb');
        
fwrite($file$data);
        
fclose($file);
    }
}

if (
function_exists('debug_backtrace')) {
    
$backtrace debug_backtrace();
} else {
    
$backtrace false;
}

debug_print_backtrace();
?>
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586