本文整理匯總了PHP中Pi::engine方法的典型用法代碼示例。如果您正苦於以下問題:PHP Pi::engine方法的具體用法?PHP Pi::engine怎麽用?PHP Pi::engine使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Pi
的用法示例。
在下文中一共展示了Pi::engine方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: define
/*
// Skip engine bootup
define('PI_BOOT_SKIP', 1);
// Disable error_reporting
define('APPLICATION_ENV', 'production');
// Lookup Pi Engine boot
// Pi boot with no engine bootup: current file is located in www/script/...
include '../../../boot.php';
*/
// Pi boot with no engine bootup: current file is located in www/script/...
require __DIR__ . '/../../../boot.php';
// Disable debugger message
Pi::service('log')->mute();
// Load session resource which is required by CKfinder
Pi::engine()->bootResource('session');
//$session = Pi::service('session')->ckfinder;
$session = $_SESSION['PI_CKFINDER'];
/*
* ### CKFinder : Configuration File - Basic Instructions
*
* In a generic usage case, the following tasks must be done to configure
* CKFinder:
* 1. Check the $baseUrl and $baseDir variables;
* 2. If available, paste your license key in the "LicenseKey" setting;
* 3. Create the CheckAuthentication() function that enables CKFinder for authenticated users;
*
* Other settings may be left with their default values, or used to control
* advanced features of CKFinder.
*/
/**
示例2: getRenderer
/**
* Get renderer
*
* @return \Zend\View\Renderer
*/
protected function getRenderer()
{
$renderer = Pi::engine()->application()->getServiceManager()->get('viewRenderer');
return $renderer;
}