本文整理匯總了PHP中util::loadFile方法的典型用法代碼示例。如果您正苦於以下問題:PHP util::loadFile方法的具體用法?PHP util::loadFile怎麽用?PHP util::loadFile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類util
的用法示例。
在下文中一共展示了util::loadFile方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _getDataByFilename
private static function _getDataByFilename($alias)
{
$alias = util::parseFilename($alias);
$fileName = $alias . '.php';
$file = APP_PATH . DS . 'config' . DS . $fileName;
$tmp = util::loadFile($file);
if ($tmp === null && self::$_confPaths) {
foreach (self::$_confPaths as $path) {
$file = $path . DS . $fileName;
$tmp = util::loadFile($file);
if ($tmp !== null) {
break;
}
}
}
return $tmp;
}
示例2: _getDataByFilename
protected static function _getDataByFilename($alias)
{
$alias = util::parseFilename($alias);
$fileName = $alias . '.php';
$file = APP_PATH . DS . 'i18n' . DS . $fileName;
$tmp = util::loadFile($file);
if ($tmp === null && self::$_confPaths) {
foreach (self::$_confPaths as $path) {
$file = $path . DS . $fileName;
$tmp = util::loadFile($file);
if ($tmp !== null) {
break;
}
}
}
if ($tmp === null) {
throw new exception_i18n('language do not exist of:' . $alias, exception_i18n::type_language_not_exist);
}
return $tmp;
}
示例3: array
<?php
require $_SERVER["DOCUMENT_ROOT"] . "/bitrix/header.php";
$APPLICATION->SetTitle("test");
$tFolder = $_SERVER["DOCUMENT_ROOT"] . '/bitrix/templates/.default/components/bitrix/sale.order.ajax/deliveryLiberty';
//$APPLICATION->SetAdditionalCSS($templateFolder."/style_cart.css");
//$APPLICATION->SetAdditionalCSS($templateFolder."/style.css");
require 'util.php';
$arCssScr = array('style_cart', 'style');
?>
<style type="text/css">
<?php
foreach ($arCssScr as $css) {
if (file_exists($tFolder . "/{$css}.css")) {
$cnt = util::loadFile($tFolder . "/{$css}.css");
echo $cnt;
} else {
echo "Not file " . $tFolder . "/{$css}.css<br />";
}
}
?>
.bx-touch .quantity_control{ display: none; }
.bx_ordercart .bx_sort_container a.current {
color: #fff;
background-color: #f58706;
}
.bx_ordercart .bx_sort_container a.current:hover {background:#000;}
.titleMain,.ltTitleMain{
display: inline-block;
text-shadow: 0 0 1px #f6f6f6;