`
baiyuxiong
  • 浏览: 179271 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论

【转载】Wordpress源代码分析之settings.php之三

阅读更多
http://hi.baidu.com/wordpressing/blog/item/64b8f538163069f53a87cec7.html

/**
* timer_start() - PHP 4 standard microtime start capture
*
* @access private
* @since 0.71
* @global int $timestart Seconds and Microseconds added together from when function is called
* @return bool Always returns true
*/
function timer_start() {
    global $timestart;
    $mtime = explode(' ', microtime() );
    $mtime = $mtime[1] + $mtime[0];
    $timestart = $mtime;
    return true;
}

microtime -- 返回当前 Unix 时间戳和微秒数。

如果调用时不带可选参数,本函数以 "msec sec" 的格式返回一个字符串,其中 sec 是自 Unix 纪元(0:00:00 January 1, 1970 GMT)起到现在的秒数,msec 是微秒部分。字符串的两部分都是以秒为单位返回的。


/**
* timer_stop() - Return and/or display the time from the page start to when function is called.
*
* You can get the results and print them by doing:
* <code>
* $nTimePageTookToExecute = timer_stop();
* echo $nTimePageTookToExecute;
* </code>
*
* Or instead, you can do:
* <code>
* timer_stop(1);
* </code>
* which will do what the above does. If you need the result, you can assign it to a variable, but
* most cases, you only need to echo it.
*
* @since 0.71
* @global int $timestart Seconds and Microseconds added together from when timer_start() is called
* @global int $timeend   Seconds and Microseconds added together from when function is called
*
* @param int $display Use '0' or null to not echo anything and 1 to echo the total time
* @param int $precision The amount of digits from the right of the decimal to display. Default is 3.
* @return float The "second.microsecond" finished time calculation
*/
function timer_stop($display = 0, $precision = 3) { //if called like timer_stop(1), will echo $timetotal
    global $timestart, $timeend;
    $mtime = microtime();
    $mtime = explode(' ',$mtime);
    $mtime = $mtime[1] + $mtime[0];
    $timeend = $mtime;
    $timetotal = $timeend-$timestart;
    $r = ( function_exists('number_format_i18n') ) ? number_format_i18n($timetotal, $precision) : number_format($timetotal, $precision);
    if ( $display )
        echo $r;
    return $r;
}
timer_start();

时间函数,开始记录时间,结束时间是timer_stop


// Add define('WP_DEBUG',true); to wp-config.php to enable display of notices during development.
/*在 WordPress 2.3.1 版本中,又增加了新的参数,调试参数(WP_DEBUG)。这是一个逻辑参数,也就是只有是(true)和否(false)两个选项。如果设置为是,则 WordPress 发生错误是,会将错误报告给用户。如果你没有在 wp-config.php 中设置此参数,默认参数为否,即不发送错误报告。*/
if (defined('WP_DEBUG') and WP_DEBUG == true) {
     error_reporting(E_ALL);
} else {
     error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE);
}

// For an advanced caching plugin to use, static because you would only want one
if ( defined('WP_CACHE') )
     @include ABSPATH . 'wp-content/advanced-cache.php';

/**
* Stores the location of the WordPress directory of functions, classes, and core content.
*
* @since 1.0.0
*/
define('WPINC', 'wp-includes');

if ( !defined('LANGDIR') ) {
    /**
      * Stores the location of the language directory. First looks for language folder in wp-content
      * and uses that folder if it exists. Or it uses the "languages" folder in WPINC.
      *
      * @since 2.1.0
      */
    if ( file_exists(ABSPATH . 'wp-content/languages') && @is_dir(ABSPATH . 'wp-content/languages') )
        define('LANGDIR', 'wp-content/languages'); // no leading slash, no trailing slash
    else
         define('LANGDIR', WPINC . '/languages'); // no leading slash, no trailing slash
}

关于语言的操作。如果存在wp-content/languages文件夹,就定义常量LANGDIR为wp-content/languages

否则就是wp-includes/languages

/**
* Allows for the plugins directory to be moved from the default location.
*
* This isn't used everywhere. Constant is not used in plugin_basename()
* which might cause conflicts with changing this.
*
* @since 2.1
*/
if ( !defined('PLUGINDIR') )
    define('PLUGINDIR', 'wp-content/plugins'); // no leading slash, no trailing slash

require (ABSPATH . WPINC . '/compat.php');
require (ABSPATH . WPINC . '/functions.php');
require (ABSPATH . WPINC . '/classes.php');

require_wp_db();

if ( !empty($wpdb->error) )
     dead_db();

$prefix = $wpdb->set_prefix($table_prefix);

if ( is_wp_error($prefix) )
     wp_die('<strong>ERROR</strong>: <code>$table_prefix</code> in <code>wp-config.php</code> can only contain numbers, letters, and underscores.');

if ( file_exists(ABSPATH . 'wp-content/object-cache.php') )
    require_once (ABSPATH . 'wp-content/object-cache.php');
else
     require_once (ABSPATH . WPINC . '/cache.php');

wp_cache_init();

require (ABSPATH . WPINC . '/plugin.php');
require (ABSPATH . WPINC . '/default-filters.php');
include_once(ABSPATH . WPINC . '/streams.php');
include_once(ABSPATH . WPINC . '/gettext.php');
require_once (ABSPATH . WPINC . '/l10n.php');

if ( !is_blog_installed() && (strpos($_SERVER['PHP_SELF'], 'install.php') === false && !defined('WP_INSTALLING')) ) {
    if ( defined('WP_SITEURL') )
        $link = WP_SITEURL . '/wp-admin/install.php';
    elseif (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false)
        $link = preg_replace('|/wp-admin/?.*?$|', '/', $_SERVER['PHP_SELF']) . 'wp-admin/install.php';
    else
        $link = preg_replace('|/[^/]+?$|', '/', $_SERVER['PHP_SELF']) . 'wp-admin/install.php';
    require_once(ABSPATH . WPINC . '/kses.php');
    require_once(ABSPATH . WPINC . '/pluggable.php');
     wp_redirect($link);
    die(); // have to die here ~ Mark
}

require (ABSPATH . WPINC . '/formatting.php');
require (ABSPATH . WPINC . '/capabilities.php');
require (ABSPATH . WPINC . '/query.php');
require (ABSPATH . WPINC . '/theme.php');
require (ABSPATH . WPINC . '/user.php');
require (ABSPATH . WPINC . '/general-template.php');
require (ABSPATH . WPINC . '/link-template.php');
require (ABSPATH . WPINC . '/author-template.php');
require (ABSPATH . WPINC . '/post.php');
require (ABSPATH . WPINC . '/post-template.php');
require (ABSPATH . WPINC . '/category.php');
require (ABSPATH . WPINC . '/category-template.php');
require (ABSPATH . WPINC . '/comment.php');
require (ABSPATH . WPINC . '/comment-template.php');
require (ABSPATH . WPINC . '/rewrite.php');
require (ABSPATH . WPINC . '/feed.php');
require (ABSPATH . WPINC . '/bookmark.php');
require (ABSPATH . WPINC . '/bookmark-template.php');
require (ABSPATH . WPINC . '/kses.php');
require (ABSPATH . WPINC . '/cron.php');
require (ABSPATH . WPINC . '/version.php');
require (ABSPATH . WPINC . '/deprecated.php');
require (ABSPATH . WPINC . '/script-loader.php');
require (ABSPATH . WPINC . '/taxonomy.php');
require (ABSPATH . WPINC . '/update.php');
require (ABSPATH . WPINC . '/canonical.php');
require (ABSPATH . WPINC . '/shortcodes.php');
require (ABSPATH . WPINC . '/media.php');

if (strpos($_SERVER['PHP_SELF'], 'install.php') === false) {
    // Used to guarantee unique hash cookies
    $cookiehash = md5(get_option('siteurl'));
    /**
      * Used to guarantee unique hash cookies
      * @since 1.5
      */
    define('COOKIEHASH', $cookiehash);
}

分享到:
评论

相关推荐

    wordpress 代码分析整理

    `【转载】Wordpress源代码分析之settings.php之一.htm` 和 `【转载】Wordpress源代码分析之settings.php之二.htm` 重点关注了WordPress的设置API。这个API允许开发者创建和管理后台设置页面,为用户提供自定义选项...

    wordpress系统源代码简约版

    这个"wordpress系统源代码简约版"很可能是一个精简版的WordPress核心源码,可能是为了教学、研究或定制目的而制作的。 在WordPress中,主要的组成部分包括以下几个方面: 1. **核心框架**:WordPress的核心框架...

    wordpress之wp-settings.php

    在WordPress的源代码中,`wp-settings.php`扮演着至关重要的角色,它负责初始化WordPress环境,处理各种配置,并确保在各种不同的服务器环境中都能正常运行。 首先,我们关注到`wp-settings.php`中的`wp_unregister...

    WordPress.v2.3.1.Simp.Chinese

    《WordPress.v2.3.1.Simp.Chinese:中文版的博客系统与核心功能解析》 WordPress是一款全球广泛使用的开源博客平台,其v2.3.1版本的简体...而作为学习工具,WordPress的源代码也是理解Web开发和PHP编程的宝贵资源。

    构建自己最出色的WordPress主题 源代码

    3. **PHP基础知识**:WordPress主题大部分是用PHP编写的,因为它是WordPress平台的后端语言。理解PHP变量、函数、控制结构以及如何与WordPress API交互至关重要。 4. **WordPress函数和钩子**:WordPress有一套强大...

    基于PHP的WordPress单本小说主题Danxsphp版源码.zip

    【描述】中的信息简洁明了,表明这个压缩文件包含了用于实现这个特定小说主题的源代码。源码是程序的原始形式,程序员可以查看、编辑和修改这些代码,以适应他们的需求或进行自定义开发。 【标签】"PHP"强调了这个...

    校园统一信息平台web版源代码

    3. **wp-* 文件(wp-login.php、wp-signup.php、wp-settings.php、wp-mail.php)**:这些文件名看起来与WordPress相关,WordPress是一种基于PHP的开源内容管理系统。这可能表明该信息平台采用了WordPress的部分组件...

    wordpress 3.7 for BAE

    5. `wp-login.php`:WordPress的登录页面源代码,用户通过这个页面进行登录操作。 6. `wp-signup.php`:允许用户注册新账户的页面源代码。 7. `wp-settings.php`:控制WordPress核心设置的文件,包括站点URL、数据库...

    wordpress3.7.1

    2. `wp-login.php`:这是用户登录页面的源代码,用于验证用户身份并提供登录功能。 3. `wp-signup.php`:这个文件处理新用户的注册流程,允许访客创建账户并成为网站的成员。 4. `wp-settings.php`:设置核心配置的...

    wordpress 插件开发cookbook原书高清pdf及随书代码

    随书代码资源`9781788291187_Code.zip`包含书中所有示例插件的源代码,读者可以直接下载并运行,以便更好地理解书中的理论知识和实际应用。 通过学习《WordPress插件开发Cookbook》,无论是初学者还是有经验的...

    2022最新版去水印小程序源码.rar

    标题中的“2022最新版去水印小程序源码.rar”表明这是一份包含了用于去除图片或视频水印的小程序的源代码。这个压缩包很可能是为开发者提供的,允许他们自定义或集成去水印功能到自己的应用程序中。源码通常包含编程...

    WordPress 的评论黑名单

    "源代码"标签表明我们将深入到WordPress插件开发的层面,通过编写代码来实现这一功能。WordPress Plugin Boilerplate是一个常用的模板,用于快速搭建符合最佳实践的WordPress插件结构。这个模板包含了所有必要的文件...

    sae版本的workpress

    这一描述揭示了这个压缩包包含的是能够在新浪云上运行的WordPress源代码,特别适合于创建个人博客。值得注意的是,它还集成了一款首页摘要显示的插件。这个插件可能允许用户在博客首页预览文章的部分内容,提高用户...

    wordpress:wordpress原始码

    在这个解压后的文件“wordpress-master”中,我们可以看到WordPress的核心源代码结构,它是整个系统的基石。 WordPress的核心组成部分包括以下几个关键部分: 1. **wp-includes**:这个目录包含了WordPress的大...

    tutorial-wp-settings-api:一个基本的WP插件,用于设置和获取通过WordPress设置API保存的设置

    在提供的"tutorial-wp-settings-api-master"压缩包中,你应该能看到插件的源代码,它展示了上述步骤的实际应用。通过研究这些文件,如`plugin.php`,你可以看到如何将这些理论概念转化为实际代码。 9. **学习资源*...

    wordpress-java:Java库使用Wordpress的xml-rpc功能

    在压缩包子文件的文件名称列表中,“wordpress-java-master”很可能代表了项目源代码的主分支或者是一个完整的项目仓库。通常,这样的命名结构意味着它是一个Git仓库的克隆,其中可能包含以下文件和目录: 1. `...

    blog-sharon-master.zip

    这个压缩包很可能包含了整个博客项目的源代码、配置文件、静态资源以及可能的文档,供其他开发者学习、参考或者进行二次开发。在深入讨论相关知识点之前,先了解一下博客系统的一般构成。 博客系统通常包含以下几个...

    ist的matlab代码-wp-video-embed-privacy:Wordpress插件,用于使嵌入视频符合GDPR

    3. **wp-video-embed-privacy.php**:WordPress插件的核心文件,包含PHP代码,用于在WordPress中注册和执行插件功能。 4. **js** 和 **css** 目录:分别存放JavaScript和CSS文件,用于实现前端交互和样式设计。 5. *...

    blog免费下载,欢迎前来下载

    3. 图片和其他媒体文件:博客中常会用到图片、音频或视频来增强内容的表现力。压缩包可能包含一个"images"或"media"文件夹,存储了与博客文章相关的所有媒体资源。 4. 数据库备份:如果博主提供了数据库备份,用户...

    20140402myBlog

    3. **图片和其他媒体**:博客中的图片、音频或视频文件也可能被压缩在一起,用于展示或装饰博客内容。 4. **配置文件**:如.htaccess、config.php、settings.json等,这些文件控制着博客的运行环境和参数设置。 5....

Global site tag (gtag.js) - Google Analytics