本文整理汇总了PHP中QDateTime::DefaultFormat方法的典型用法代码示例。如果您正苦于以下问题:PHP QDateTime::DefaultFormat方法的具体用法?PHP QDateTime::DefaultFormat怎么用?PHP QDateTime::DefaultFormat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QDateTime
的用法示例。
在下文中一共展示了QDateTime::DefaultFormat方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
<?php
if (!defined('__PREPEND_INCLUDED__')) {
define('__PREPEND_INCLUDED__', 1);
require dirname(__FILE__) . '/configuration.qcubed.inc.php';
if (get_magic_quotes_gpc()) {
require __QCUBED_CORE__ . '/framework/DisableMagicQuotes.inc.php';
}
require __QCUBED_CORE__ . '/qcubed.inc.php';
require_once dirname(__FILE__) . '/QApplication.class.php';
QDateTime::$DefaultFormat = QDateTime::FormatIso;
function t($strText)
{
return QApplication::Translate($strText);
}
///////////////////////
// Setup Error Handling
///////////////////////
if (array_key_exists('SERVER_PROTOCOL', $_SERVER)) {
set_error_handler('QcodoHandleError', error_reporting());
set_exception_handler('QcodoHandleException');
}
spl_autoload_register(array('QApplication', 'Autoload'));
QApplication::Initialize();
QApplication::InitializeDatabaseConnections();
QApplication::$EncodingType = 'UTF-8';
NarroUser::GetDatabase()->NonQuery("SET NAMES 'utf8'");
NarroUser::RegisterPreference('Items per page', 'number', t('How many items are displayed per page'), 10);
NarroUser::RegisterPreference('Font size', 'option', t('The application font size'), 'medium', array('x-small', 'small', 'medium', 'large', 'x-large'));
NarroUser::RegisterPreference('Language', 'option', t('The language you are translating to'), QApplication::QueryString('l'), array(QApplication::QueryString('l')));
NarroUser::RegisterPreference('Application language', 'option', t('The language you want to see Narro in'), isset(QApplication::$TargetLanguage) ? QApplication::$TargetLanguage->LanguageCode : NarroLanguage::SOURCE_LANGUAGE_CODE, array(isset(QApplication::$TargetLanguage) ? QApplication::$TargetLanguage->LanguageCode : NarroLanguage::SOURCE_LANGUAGE_CODE));