本文整理匯總了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);
}
示例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>