本文整理匯總了PHP中site::init方法的典型用法代碼示例。如果您正苦於以下問題:PHP site::init方法的具體用法?PHP site::init怎麽用?PHP site::init使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類site
的用法示例。
在下文中一共展示了site::init方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: site
<?php
require_once 'core/site.php';
$site = new site();
site::setLink(new mysqli('localhost', 'profile', 'g00gle', 'portfolio'));
$site->init($_REQUEST);
if ($site->getCurClass() == 'services') {
$site->loadPortfolio(0);
}
$obj = $site->getObj();
include_once 'core/ajax.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Jacob Godin | Web Developer</title>
<link rel="stylesheet" href="/style/style.css" type="text/css" media="screen" />
<script type="text/javascript" src="/api/js/prototype.js"></script>
<script type="text/javascript" src="/api/js/scriptaculous.js"></script>
<script type="text/javascript" src="/core/js/<?php
echo $site->getCurClass();
?>
.js"></script>
</head>
<body <?php
if ($site->getCurClass() == 'portfolio') {
?>
onload="site(this, <?php
echo $obj->getCur()->getId();
?>
示例2:
<?php
namespace rude;
require_once 'rude-config.php';
require_once 'src/rude-php/include.php';
site::init();