本文整理汇总了PHP中Minify::addSource方法的典型用法代码示例。如果您正苦于以下问题:PHP Minify::addSource方法的具体用法?PHP Minify::addSource怎么用?PHP Minify::addSource使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Minify
的用法示例。
在下文中一共展示了Minify::addSource方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: check_files_folders
/**
* check_files_folders
* This checks for filer or folders existence
* If the folder doesn't exists the script will attempt to create it.
*/
function check_files_folders($elements, $type)
{
global $install_errors;
$type = strtolower($type);
foreach ($elements as $element) {
if ($type == 'directory') {
@mkdir($element);
}
if (preg_match('/.+\\.min\\.(js|css)$/i', $element)) {
if (conditional_config('minify') && !file_exists($element)) {
require_once __CHV_PATH_CLASSES__ . 'class.minify.php';
$minify = new Minify();
try {
$minify->addSource(preg_replace('/(.+)\\.min(\\.(js|css))$/i', '$1$2', $element));
$minify->exec();
} catch (MinifyException $e) {
if (conditional_config('error_reporting')) {
debug($e->getMessage());
}
}
}
}
if (!file_exists($element)) {
$install_errors[] = '<code>' . absolute_to_relative($element) . '</code>';
}
}
if (count($install_errors) == 0) {
return true;
}
}