當前位置: 首頁>>代碼示例>>PHP>>正文


PHP util::loadFile方法代碼示例

本文整理匯總了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;
 }
開發者ID:gavinjx,項目名稱:autophp,代碼行數:17,代碼來源:config.php

示例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;
 }
開發者ID:hiloy,項目名稱:autophp,代碼行數:20,代碼來源:i18n.php

示例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;
開發者ID:Okhremchuk,項目名稱:Ingenum,代碼行數:31,代碼來源:index.php


注:本文中的util::loadFile方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。