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


PHP string::filter方法代碼示例

本文整理匯總了PHP中string::filter方法的典型用法代碼示例。如果您正苦於以下問題:PHP string::filter方法的具體用法?PHP string::filter怎麽用?PHP string::filter使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在string的用法示例。


在下文中一共展示了string::filter方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: error_reporting

<?php

//css,js文件合並,隻能合並static目錄下麵的文件
// @author: yubing
error_reporting(0);
ob_start();
include_once '../include/string.php';
$files = explode(';', trim($_SERVER['QUERY_STRING'], ';'));
strpos($_SERVER['QUERY_STRING'], '.css') !== false && header('Content-Type: text/css');
$a = array();
foreach ($files as $fn) {
    $fn = string::filter($fn);
    $a[] = "\n/* -- {$fn} ---*/";
    //判斷要合並的文件是否存在
    if (!file_exists($fn)) {
        //get_cfg_var('jjr.online') || header("HTTP/1.1 404 ".$fn);
    } else {
        $a[] = file_get_contents($fn);
    }
}
$s = implode('', $a);
//header('Last-Modified: Wed, 28 Oct 2015 07:26:35 GMT');
//header(sprintf('ETag: "%x"',crc32($s)) );
echo $s;
開發者ID:robinhunan,項目名稱:coolphp,代碼行數:24,代碼來源:index.php

示例2: get

<?php

//應用入口文件
//包含通用的配置文件
include_once '../include/config.php';
include_once SYS_PATH . 'include/string.php';
$control = get($_GET, 'c', 'app1_user');
$action = get($_GET, 'a', 'home');
try {
    //包含控製層文件
    include_once SYS_PATH . 'controller/' . str_replace('_', '/', string::filter($control)) . '.php';
    $name = 'c_' . $control;
    $c = new $name();
    method_exists($c, $action) && $c->{$action}();
} catch (Exception $e) {
    print $e->getMessage();
    exit;
}
開發者ID:robinhunan,項目名稱:coolphp,代碼行數:18,代碼來源:index.php


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