File "ignore_functions_match.php"

Full path: E:/sites/Single15/tinmung2007/webroot/XAMMP/php/tests/parseFile/ignore_functions_match.php
File size: 391 B
MIME-type:
Charset: utf-8

Download   Open   Back

<?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();
?>

PHP File Manager