You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
393 B
20 lines
393 B
<?php
|
|
|
|
// should be named as config.php
|
|
|
|
$charset = "UTF-8";
|
|
// $include_paths = array("/www/my-php-project/");
|
|
// $exclude_paths = array("/www/my-php-project/tmp/");
|
|
$syntaxhiglight = true;
|
|
$usecache = false;
|
|
//// $datadir is default to ini_get("xcache.coveragedump_directory")
|
|
// $datadir = '';
|
|
|
|
function ob_filter_path_nicer($o)
|
|
{
|
|
$o = str_replace("/home/", "{H}/", $o);
|
|
return $o;
|
|
}
|
|
|
|
?>
|