[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
xampp182
/
php
/
tests
/
parseFile
/
[
Home
]
File: ignore_functions_match.php
<?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(); ?>