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


PHP content::load方法代碼示例

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


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

示例1: js

 function js()
 {
     $output = array();
     $output[] = '<script type="text/javascript">';
     foreach ($this->js as $file) {
         $output[] = content::load($file) . "\n";
     }
     $output[] = '</script>';
     return implode("\n", $output);
 }
開發者ID:nilshendriks,項目名稱:kirbycms-panel,代碼行數:10,代碼來源:form.php

示例2: __autoload

function __autoload($class_name)
{
    $class_load = false;
    if (file_exists('functions/' . $class_name . '.php')) {
        // auto load function
        @(include 'functions/' . $class_name . '.php');
        $class_load = true;
    }
    if (!$class_load) {
        echo "Class: <b>" . $class_name . "</b> can't load..";
        exit;
    }
}
?>
<!DOCTYPE html>
<html lang="ge">
<head>
	<meta charset="utf-8" />
	<title>Invoices</title>
</head>
<body>
	<a href="?page=welcome">Invoices</a> | 
	<a href="?page=csv">CSV</a> <br /><br />
<?php 
$page = isset($_GET['page']) && !empty($_GET['page']) ? $_GET['page'] : "welcome";
$content = new content();
$content->load($page);
?>
</body>
</html>
開發者ID:studio-404,項目名稱:404,代碼行數:30,代碼來源:index.php


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