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


PHP url::dir方法代碼示例

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


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

示例1: render

 public function render()
 {
     $file = url::dir("template_controller") . $this->template . ".tpl";
     if (file_exists($file)) {
         extract($this->data);
         ob_start();
         require $file;
         $output = ob_get_contents();
         ob_end_clean();
         return $output;
     } else {
         exit("not load template {$file} ");
     }
 }
開發者ID:beast21rus,項目名稱:php-core,代碼行數:14,代碼來源:class.template.php

示例2: loadView

 public function loadView($pname, $value = array())
 {
     if (is_array($pname)) {
         $value = $pname['value'];
         $pname = $pname['view'];
     }
     $ex = explode("/", $pname);
     $name = "C" . $ex[0];
     $dir = $pname;
     $fn = "index";
     if (count($ex) == 1 or count($ex) == 2 and empty($ex[1])) {
         $dir = $dir[strlen($dir) - 1] == "/" ? $dir . "index" : $dir . "/index";
         $name .= "index";
     } else {
         if (count($ex) == 3) {
             $fn = end($ex);
             $dir = str_replace("/" . $fn, "", $dir);
             $name .= $ex[1];
         } else {
             $name .= end($ex);
         }
     }
     $file = url::dir("controller") . $dir . '.php';
     if (file_exists($file)) {
         require_once $file;
     } else {
         $this->error->add("Controller/loadView/file", $file, true);
     }
     self::$data[$dir] = new $name();
     if (!empty($value)) {
         self::$data[$dir]->params = $value;
     }
     if (method_exists(self::$data[$dir], $fn)) {
         return self::$data[$dir]->{$fn}();
     } else {
         return $this->error->add("Controller/loadView/method", $fn, true);
     }
 }
開發者ID:beast21rus,項目名稱:php-core,代碼行數:38,代碼來源:class.controller.php

示例3: define

<?php

define("CORE_LOAD", true);
require_once $_SERVER['DOCUMENT_ROOT'] . "/icore/library/class.url.php";
require_once url::dir("library") . "class.controller.php";
require_once url::dir("library") . "class.System.php";
$app = new System();
開發者ID:beast21rus,項目名稱:php-core,代碼行數:7,代碼來源:init.php


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