mirror of
https://github.com/mrclay/minify.git
synced 2025-02-24 08:52:50 +01:00
62 lines
1.6 KiB
PHP
62 lines
1.6 KiB
PHP
<?php
|
|
|
|
require dirname(__FILE__) . '/../min/config.php';
|
|
|
|
require "$min_libPath/Minify/Loader.php";
|
|
Minify_Loader::register();
|
|
|
|
// set cache path and doc root if configured
|
|
$minifyCachePath = isset($min_cachePath)
|
|
? $min_cachePath
|
|
: '';
|
|
if ($min_documentRoot) {
|
|
$_SERVER['DOCUMENT_ROOT'] = $min_documentRoot;
|
|
}
|
|
|
|
// default log to FirePHP
|
|
if ($min_errorLogger && true !== $min_errorLogger) { // custom logger
|
|
Minify_Logger::setLogger($min_errorLogger);
|
|
} else {
|
|
Minify_Logger::setLogger(FirePHP::getInstance(true));
|
|
}
|
|
|
|
error_reporting(E_ALL | E_STRICT);
|
|
ini_set('display_errors', 1);
|
|
|
|
header('Content-Type: text/plain;charset=utf-8');
|
|
|
|
$thisDir = dirname(__FILE__);
|
|
|
|
/**
|
|
* pTest - PHP Unit Tester
|
|
* @param mixed $test Condition to test, evaluated as boolean
|
|
* @param string $message Descriptive message to output upon test
|
|
* @url http://www.sitepoint.com/blogs/2007/08/13/ptest-php-unit-tester-in-9-lines-of-code/
|
|
*/
|
|
function assertTrue($test, $message)
|
|
{
|
|
static $count;
|
|
if (!isset($count)) $count = array('pass'=>0, 'fail'=>0, 'total'=>0);
|
|
|
|
$mode = $test ? 'pass' : 'fail';
|
|
$outMode = $test ? 'PASS' : '!FAIL';
|
|
printf("%s: %s (%d of %d tests run so far have %sed)\n",
|
|
$outMode, $message, ++$count[$mode], ++$count['total'], $mode);
|
|
|
|
return (bool)$test;
|
|
}
|
|
|
|
/**
|
|
* Get number of bytes in a string regardless of mbstring.func_overload
|
|
*
|
|
* @param string $str
|
|
* @return int
|
|
*/
|
|
function countBytes($str)
|
|
{
|
|
return (function_exists('mb_strlen') && ((int)ini_get('mbstring.func_overload') & 2))
|
|
? mb_strlen($str, '8bit')
|
|
: strlen($str);
|
|
}
|
|
|
|
ob_start(); |