本文整理汇总了PHP中wp_debug_mode函数的典型用法代码示例。如果您正苦于以下问题:PHP wp_debug_mode函数的具体用法?PHP wp_debug_mode怎么用?PHP wp_debug_mode使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wp_debug_mode函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: wp_debug_mode
function wp_debug_mode()
{
if (\WP_CLI::get_config('debug')) {
if (!defined('WP_DEBUG')) {
define('WP_DEBUG', true);
}
error_reporting(E_ALL & ~E_DEPRECATED & ~E_STRICT);
} else {
\wp_debug_mode();
}
// XDebug already sends errors to STDERR
ini_set('display_errors', function_exists('xdebug_debug_zval') ? false : 'STDERR');
}
开发者ID:dleatherman,项目名称:timbangular-js,代码行数:13,代码来源:utils-wp.php
示例2: date_default_timezone_set
@ini_set('magic_quotes_runtime', 0);
@ini_set('magic_quotes_sybase', 0);
// WordPress calculates offsets from UTC.
date_default_timezone_set('UTC');
// Turn register_globals off.
wp_unregister_GLOBALS();
// Standardize $_SERVER variables across setups.
wp_fix_server_vars();
// Check if we have received a request due to missing favicon.ico
wp_favicon_request();
// Check if we're in maintenance mode.
wp_maintenance();
// Start loading timer.
timer_start();
// Check if we're in WP_DEBUG mode.
wp_debug_mode();
// For an advanced caching plugin to use. Uses a static drop-in because you would only want one.
if (WP_CACHE) {
WP_DEBUG ? include WP_CONTENT_DIR . '/advanced-cache.php' : @(include WP_CONTENT_DIR . '/advanced-cache.php');
}
// Define WP_LANG_DIR if not set.
wp_set_lang_dir();
// Load early WordPress files.
require ABSPATH . WPINC . '/compat.php';
require ABSPATH . WPINC . '/functions.php';
require ABSPATH . WPINC . '/class-wp.php';
require ABSPATH . WPINC . '/class-wp-error.php';
require ABSPATH . WPINC . '/plugin.php';
require ABSPATH . WPINC . '/pomo/mo.php';
// Include the wpdb class and, if present, a db.php database drop-in.
require_wp_db();
开发者ID:openify,项目名称:wordpress-composer,代码行数:31,代码来源:wp-settings.php
注:本文中的wp_debug_mode函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论