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


PHP Parse::run方法代碼示例

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


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

示例1: run

 public static function run($line)
 {
     if (preg_match_all('/(?<start>.*){{\\s*foreach\\s*\\((?<array>[\\w|\\.]+)\\s*as\\s*(?<var>\\w+)(\\s*=>\\s*(?<subVar>\\w+))?\\s*\\)\\s*}}(?<end>.*)/', $line, $matches)) {
         return Parse::run($matches);
     }
     return false;
 }
開發者ID:drroach,項目名稱:templator,代碼行數:7,代碼來源:FindForeach.php

示例2: run

 public static function run($line)
 {
     if (preg_match_all('/(?<start>[^\\{]*)\\s*{{(?<startQuickEsc>{)?\\s*(?<echo>\\w+(\\.\\w+)*)(?<escape>[\\|!](e|escape))?\\s*}}(?<endQuickEsc>})?(?<end>.*)/', $line, $match)) {
         return Parse::run($match);
     }
     return false;
 }
開發者ID:drroach,項目名稱:templator,代碼行數:7,代碼來源:FindEcho.php

示例3: run

 public static function run($line)
 {
     if (preg_match('/(?<start>.*){{\\s*endforeach;\\s*}}(?<end>.*)/', $line, $match)) {
         return Parse::run($match);
     }
     return false;
 }
開發者ID:drroach,項目名稱:templator,代碼行數:7,代碼來源:FindEndForeach.php

示例4: run

 public static function run($line)
 {
     if (preg_match_all('/(?<start>.*){{\\s*(?<beforeInc>\\+\\+|--)?(?<variable>\\w+)(?<afterInc>\\+\\+|--)?\\s*}}(?<end>.*)/', $line, $match)) {
         if (!empty($match['beforeInc'][0]) || !empty($match['afterInc'][0])) {
             return Parse::run($match);
         } else {
             return false;
         }
     }
     return false;
 }
開發者ID:drroach,項目名稱:templator,代碼行數:11,代碼來源:FindIncrement.php

示例5: isset

//默認配置
/** @constant 要被處理的源代碼路徑 */
define("CODE_PATH", "./src/obj/");
/** @constant tangram 代碼路徑 */
define("TANGRAM_PATH", "./src/");
/** @constant Tangram-base 所在目錄 */
define("TANGRAM_BASE_DIR", "tangram/");
/** @constant Tangram命名空間 */
define("TANGRAM_NAMESPACE", "baidu");
/** @constant 處理的文件類型 */
define("FILETYPES", ".html,.htm,.js,.tpl");
//處理傳進來的參數
$param = isset($argv) ? $argv : $_REQUEST;
$paramsHandler = new HandleParams($param);
$config = $paramsHandler->run();
//如果用戶是通過瀏覽器訪問,則顯示web界麵。否則為命令行模式
if ($config['type'] == "web") {
    $uiHandler = new Ui($config);
    $uiHandler->run();
}
if (!empty($config["params"]) || $config['type'] == "commandline") {
    //解析用戶的源代碼,提取其中調用Tangram的代碼
    $parseHandler = new Parse($config);
    $parseRes = $parseHandler->run();
    //分析用戶調用的tangram源代碼,得到用戶需要的tangram模塊
    $indexHandler = new Index($parseRes, $config);
    $indexRes = $indexHandler->run();
    //將用戶用到的tangram模塊打包返回給用戶
    $packHandler = new Pack($indexRes, $config);
    $packHandler->run();
}
開發者ID:alpar,項目名稱:Tangram-tools,代碼行數:31,代碼來源:custom.php

示例6: Parse

<?php

require_once "../../lib/parse.php";
define("TANGRAM_PATH", "../../src/tangram/");
define("CODE_PATH", "../../src/obj/");
define("TANGRAM_PREFIX", "baidu");
$obj = new Parse(array("params" => array()));
$obj->run();
開發者ID:alpar,項目名稱:Tangram-tools,代碼行數:8,代碼來源:testParse.php

示例7: run

 public static function run($line)
 {
     if (preg_match_all('/(?<start>.*)\\s*{{\\s*if\\s*\\((?<statement>.*)\\s*\\)\\s*}}(?<end>.*)/', $line, $matches)) {
         return Parse::run($matches);
     }
 }
開發者ID:drroach,項目名稱:templator,代碼行數:6,代碼來源:FindIf.php

示例8: End

 /**
  * Indique la fin du fichier template.
  * Une fois appelé, le script parse le fichier template.
  * 
  * @param integer $no_echo (default: 0) Indique s'il faut afficher le résultat par echo (défault) ou le renvoyer en sortie de fonction
  * 
  * @return string Retourne le résultat du parsage si $no_echo=1
  */
 public function End($no_echo = 0)
 {
     $this->CurrentBlock = '/';
     //On place le chemin à la racine
     $parse = new Parse($this);
     return $parse->run($no_echo);
 }
開發者ID:bulton-fr,項目名稱:bfw-template,代碼行數:15,代碼來源:Template.php


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