
本帖最后由 Adrai 于 2014-12-17 21:55 编辑
仿照easyUI验证规则写的一套验证框架,底层实现不一样,效率比EasyUI高
说明:
EJS是我自己平时写代码时慢慢封装的一些常用的方法,基于seajs和Jquery, 以后慢慢就会是一个大的控件库(自家用).
现在已经有很多组件了(本demo中删除其他组件,只保留了验证组件需要用到的核心组件, 即util, 以免展示核心代码时混淆).
本Demo主要用来展示我最近花一天时间仿照EasyUI的规则写的一个验证组件.效率比EasyUI要高.
html核心代码在---- vaild_demo/index.html
js核心代码在---- vaild_demo/js/index/index.js
组件的核心代码在---- vaild_demo/EJS/src/
建议读一下vaild_demo/EJS/src/valid/valid.js的源代码. bindValid方法.
最近更新到1.3版,增加了异步验证的功能.
第一个验证框使用了异步验证, 不妨输入admin试试.
因为是写出来解决自己问题的. 暂时还没写文档.. 内置的验证规则也不多. -0 -
不过验证规则很容易扩展, 不妨看看源码.
下面放出下载地址:

首先:我们来使用一个经常见到的函数getip()来实现IP的获取:
[mw_shl_code=php,true] function getip(){
if (getenv(“HTTP_CLIENT_IP”) && strcasecmp(getenv(“HTTP_CLIENT_IP”), “unknown”))
{ $ip = getenv(“HTTP_CLIENT_IP”);
} else if (
getenv(“HTTP_X_FORWARDED_FOR”) && strcasecmp(getenv(“HTTP_X_FORWARDED_FOR”), “unknown”))
{ $ip = getenv(“HTTP_X_FORWARDED_FOR”);
} else if (getenv(“REMOTE_ADDR”) && strcasecmp(getenv(“REMOTE_ADDR”), “unknown”))
{ $ip = getenv(“REMOTE_ADDR”);
} else if (isset ($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && strcasecmp($_SERVER['REMOTE_ADDR'], “unknown”))
{ $ip = $_SERVER['REMOTE_ADDR']; } else { $ip = “unknown”; } return $ip;
} [/mw_shl_code]
第二步:将获取到的IP地址传递个新浪IP接口 利用一个常用的函数file_get_contents来获取其json格式的返回值,这样我们就可以实现IP地址与对应省份城市的转换;
[mw_shl_code=php,true]function getLocation($ip=”)
{ empty($ip) && $ip = getip();
if($ip==”127.0.0.1″) return “本机地址”; $api = “http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json& ip=$ip”; $json = @file_get_contents($api);//调用新浪IP地址库
$arr = json_decode($json,true);//解析json $country = $arr['country']; //取得国家
$province = $arr['province'];//获取省份 $city = $arr['city']; //取得城市
if((string)$country == “中国”){ if((string)($province) != (string)$city){ $_location = $province.$city; }else{ $_location = $country.$city; } }else{ $_location = $country; } return $_location;} [/mw_shl_code]
第三步:功能的实现
[mw_shl_code=php,true]echo getLocation(); //或者 echo getLocation(“222.210.4.66″);[/mw_shl_code]

本帖最后由 VOID001 于 2014-9-1 12:03 编辑
看这个文章前需要掌握的一些东西
1.C语言或者任何一门语言的编程基础
2.PHP的基本语法
3.没了 因为是新人教程,所以我会尽量详细的介绍WP的源码以及PHP的知识
这个文章是LZ用来学习PHP 以及Web开发的业余时间写的自己的源码学习笔记,由于本人第一次制作这种东西,难免有很多地方会给大家造成困惑。希望大家多多指出和批评
#22xHalo~ 本人技宅新人一枚,属于完全IT向 = =在搞ACM的业余也会学学PHP ,最近用WordPress搭了个blog ,感觉很不错~对于技术控来说,有一个好看的自己的blog神马的最幸福了,在享受WP的同时#22x 我就突然想到#28x我是不是可以通过学习WP的开源代码来学习PHP技术呢~~ 于是乎 ,就有了下面的这些文章 ,本人PHP新人 ,学生党,希望大神们多多指教,文中有不正确的地方,希望大家能给我指出来,批评也好提醒也好~你们的关注与指导就是给我最好的礼物~ 大家如果有没看懂的地方,欢迎提问 ,本人一定保证在看到提问后尽快回答 好了进入正题 PS:本文原文在我的blog 欢迎大家去坐坐~
开始学习研究开源代码 ,不过自己的PHP技术还很差 ,但是只要是有强大的搜索能力~ 以及一定的理解力 就可以呢{*≧∀≦}参考一下这个文章那就从根目录的index.php开始解析代码~~index.php[mw_shl_code=php,true]<?php/**
* Front to the WordPress application. This file doesn't do anything, but loads
* wp-blog-header.php which does and tells WordPress to load the theme.
*
* @package WordPress
*/
/**
* Tells WordPress to load the WordPress theme and output it.
*
* @var bool
*/
define('WP_USE_THEMES', true);
/** Loads the WordPress Environment and Template */
require('./wp-blog-header.php');[/mw_shl_code]
[color=rgb(98, 98, 98) !important]index.php只有两句代码: 我们分别来看一下~~define是PHP的定义常量的语法define函数的用法 : define(NAME,VAL,CASE_SENSITIVE); 没有什么需要过多说明的地方 ,define函数就是定义一个常量 然后参数列表也很明确 ,注意的是 常量不需要加美元符号 ($)require函数 : require(‘FILENAME’) 语句包含并运行指定文件。 如果文件不存在 ,报Fatal Error 也就是说 ,如果文件不存在 这个函数的报错会导致这个网页无法加载 ,这个特性在很多时候还会用到 与它功能差不多的还有一个 include函数 不同的是如果文件不存在,只会报一个WARNING。这两个看情况使用当一个文件被包含时,其中所包含的代码继承了 include 所在行的变量范围。从该处开始,调用文件在该行处可用的任何变量在被调用的文件中也都可用。不过所有在包含文件中定义的函数和类都具有全局作用域。上面的代码既然调用了wp-blog-header.php那么我们下来就看这个代码~wp-blog-header.php[mw_shl_code=php,true]<?php/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( !isset($wp_did_header) ) {
$wp_did_header = true;
require_once( dirname(__FILE__) . '/wp-load.php' );
wp();
require_once( ABSPATH . WPINC . '/template-loader.php' );
}[/mw_shl_code]
[color=rgb(98, 98, 98) !important]wp-blog-header.php这个代码也不是很难理解 一行一行一个函数一个函数分析~isset函数 isset函数可以检测这个变量是否被定义了 用法 isset(var1,var2,var3…);其中第一个必须填require_once函数 require_once(‘FILENAME’);require_once 语句和 require 语句完全相同,唯一区别是 PHP 会检查该文件是否已经被包含过,如果是则不会再次包含。dirname()函数 函数用法 dirname(string $path)给出一个文件的路径 ,返回这个文件所在的目录的绝对路径 而__FILE__这个常量 ,是 预定义常量 也叫 魔术常量 详细介绍在这里 这里就理解为wp-blog-header这个文件的绝对路径就好~dirname(__FILE__) 取到的是当前文件的绝对路径,也就是说,比起相对路径,查找速度是最快的。上面的代码通过require_once函数把wp-load.php的代码包含进来了~ 我们一会儿再去看那个代码 下面先继续看 :下一个部分是wp()函数 ,这是自定义的函数,而且这个函数多的定义不存在与当前的这个文件里(wp-blog-header.php),是定义在其它文件里的
VOID001 发表于 2014-10-2 11:47感谢! 实际情况是我自己在学WordPress 于是就想用一个开源的代码来学习一下,但是没多少人看,,, 而且 ...
哎,大二啊,真好,这么早就开始学大三大四过完就会积攒很多东西的。像我就起步晚了
[查看全文]
漆黑的小白 发表于 2014-9-22 14:16说实话wordpress不太适合当入门的来参考,比较乱,这东西本来就是为了懒人搭自己博客用的。个人认为拿个框 ...
感谢! 实际情况是我自己在学WordPress 于是就想用一个开源的代码来学习一下,但是没多少人看,,, 而且自己也是用业余时间在学这个,毕竟还是大二学生功课很多的Orz还有ACM Orz所以停止更新了很长时间,不过,我会坚持把它写完的,这也是我今年的一个目标吧,虽然有些困难,不过还是想写出自己的体会
[查看全文]
说实话wordpress不太适合当入门的来参考,比较乱,这东西本来就是为了懒人搭自己博客用的。个人认为拿个框架从头搭,或者干脆全手写学得更快。
不过楼主这样的原创帖还是很支持,持续关注ing......
[查看全文]
我们向上看一行,说一下 global这个变量作用域标识符的作用 , 如果在全局和某个函数里都存在一个变量 $foo那么,如果$foo在函数里前面不用global对标识符进行限定 ,那么 这个$foo就是与全局的$foo完全不同的一个变量,而如果采用global 那么这个$foo的值就和全局的foo值一样,这也与我们学习C语言时候的变量定义和声明的区别一致
如果版本不符合的话,就要调用 php_load_translations_early函数来解决 这个函数看来是用来处理错误用的 ,我们下一次来继续看这个函数
[查看全文]
继续学习WP源码 每天都保证2h来学习它 这里先来说一下 注释里面 的那个 @**** 使用 @号是一种标准的注释格式,是对这个程序的功能的一个很清晰的说明和解释 ,在自己写PHP代码的时候也要会用这种注释。
下面继续 version.php中,也没有什么东西,只是一些对版本变量的定义和一些必要的配置 ,语言 以及manifest ver之类的 为了格式一致,这里也放上它的代码
[mw_shl_code=php,true]<?php
/**
* The WordPress version string
*
* @global string $wp_version
*/
$wp_version = '3.4.1';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
*
* @global int $wp_db_version
*/
$wp_db_version = 21115;
/**
* Holds the TinyMCE version
*
* @global string $tinymce_version
*/
$tinymce_version = '349-20805';
/**
* Holds the cache manifest version
*
* @global string $manifest_version
*/
$manifest_version = '20111113';
/**
* Holds the required PHP version
*
* @global string $required_php_version
*/
$required_php_version = '5.2.4';
/**
* Holds the required MySQL version
*
* @global string $required_mysql_version
*/
$required_mysql_version = '5.0';
$wp_local_package = 'zh_CN';[/mw_shl_code]
继续回来看 wp-settings.php,代码参见前文 ,下面, 调用了wp_initial_constants()函数,这个函数的作用是将WP的一些常量诸如内存限制 调试模式之类的 设置好。
[mw_shl_code=php,true]/**
* Defines initial WordPress constants
*
* @see wp_debug_mode()
*
* @since 3.0.0
*/
function wp_initial_constants( ) {
global $blog_id;
// set memory limits
if ( !defined('WP_MEMORY_LIMIT') ) {
if( is_multisite() ) {
define('WP_MEMORY_LIMIT', '64M');
} else {
define('WP_MEMORY_LIMIT', '32M');
}
}
if ( ! defined( 'WP_MAX_MEMORY_LIMIT' ) ) {
define( 'WP_MAX_MEMORY_LIMIT', '256M' );
}
/**
* The $blog_id global, which you can change in the config allows you to create a simple
* multiple blog installation using just one WordPress and changing $blog_id around.
*
* @global int $blog_id
* @since 2.0.0
*/
if ( ! isset($blog_id) )
$blog_id = 1;
// set memory limits.
if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < abs(intval(WP_MEMORY_LIMIT)) ) )
@ini_set('memory_limit', WP_MEMORY_LIMIT);
if ( !defined('WP_CONTENT_DIR') )
define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); // no trailing slash, full paths only - WP_CONTENT_URL is defined further down
// Add define('WP_DEBUG', true); to wp-config.php to enable display of notices during development.
if ( !defined('WP_DEBUG') )
define( 'WP_DEBUG', false );
// Add define('WP_DEBUG_DISPLAY', null); to wp-config.php use the globally configured setting for
// display_errors and not force errors to be displayed. Use false to force display_errors off.
if ( !defined('WP_DEBUG_DISPLAY') )
define( 'WP_DEBUG_DISPLAY', true );
// Add define('WP_DEBUG_LOG', true); to enable error logging to wp-content/debug.log.
if ( !defined('WP_DEBUG_LOG') )
define('WP_DEBUG_LOG', false);
if ( !defined('WP_CACHE') )
define('WP_CACHE', false);
/**
* Private
*/
if ( !defined('MEDIA_TRASH') )
define('MEDIA_TRASH', false);
if ( !defined('SHORTINIT') )
define('SHORTINIT', false);
}[/mw_shl_code]
这个函数主要就是对还没有定义的常量进行定义,并且根据不同的情况赋予不同的值,下首先 ,会根据是否支持多站点而来决定内存限制的大小, WordPress可以支持多个人创建博客 ,通过很方便的 blog id这个变量来标明不同的blog 设置内存大小的时候,还考虑了如果MemroyLimit大于了PHP配置文件里分配的大小,那么就修改配置文件里的memory limit 然后定义wp-content路径的名称常量 等等一系列的定义 ,看代码就能明白,不再过多赘述
回到 wp-settings.php文件 然后又调用了wp_check_php_mysql_versions()函数 ,这个函数也包含在load.php里了,我们来看一下
[mw_shl_code=php,true]/**
* Check for the required PHP version, and the MySQL extension or a database drop-in.
*
* Dies if requirements are not met.
*
* @Access private
* @since 3.0.0
*/
function wp_check_php_mysql_versions() {
global $required_php_version, $wp_version;
$php_version = phpversion();
if ( version_compare( $required_php_version, $php_version, '>' ) ) {
wp_load_translations_early();
wp_die( sprintf( __( 'Your server is running PHP version %1$s but WordPress %2$s requires at least %3$s.' ), $php_version, $wp_version, $required_php_version ) );
}
if ( ! extension_loaded( 'mysql' ) && ! file_exists( WP_CONTENT_DIR . '/db.php' ) ) {
wp_load_translations_early();
wp_die( __( 'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.' ) );
}
}[/mw_shl_code]
phpversion函数就是一个获取系统的PHP版本并返回的函数,这里不做过多介绍 ,version_compare函数倒有些意思 , 标准的说明是这样的
version_compare() compares two "PHP-standardized" version number strings
mixed version_compare ( string $version1 , string $version2 [, string $operator ] )
其实,这个功能实现很简单,只不过这个语法很有趣 ,PHP还有这样的函数 ,可以直接比较两个版本 ,这是我学C语言的时候没遇到过的 ,而且,相比较什么关系只要加上一个比较运符就可以了十分方便呢
version_compare() compares two "PHP-standardized" version number strings.
[查看全文]
本帖最后由 VOID001 于 2014-9-1 11:57 编辑
刚刚配置了好久Linux下的Zend 耽误了时间 现在继续放教程
继续研究WP的源码 ,在继续之前解释一下昨天的wp-config里面的前面几个常量的定义 由于我用的是SAE 所以 数据库名 ,用户名 神码的都是SAE预设的 常量 就不用我自己去[mw_shl_code=php,true]<?php
/**
* Used to set up and fix common variables and include
* the WordPress procedural and class library.
*
* Allows for some configuration in wp-config.php (see default-constants.php)
*
* @internal This file must be parsable by PHP4.
*
* @modified Elmer Zhang <freeboy6716@gmail.com>
* @package WordPress
*/
/**
* Stores the location of the WordPress directory of functions, classes, and core content.
*
* @since 1.0.0
*/
define( 'WPINC', 'wp-includes' );
// Include files required for initialization.
require( ABSPATH . WPINC . '/load.php' );
require( ABSPATH . WPINC . '/default-constants.php' );
require( ABSPATH . WPINC . '/version.php' );
// Set initial default constants including WP_MEMORY_LIMIT, WP_MAX_MEMORY_LIMIT, WP_DEBUG, WP_CONTENT_DIR and WP_CACHE.
wp_initial_constants( );
// Check for the required PHP version and for the MySQL extension or a database drop-in.
wp_check_php_mysql_versions();
// Disable magic quotes at runtime. Magic quotes are added using wpdb later in wp-settings.php.
@ini_set( 'magic_quotes_runtime', 0 );
@ini_set( 'magic_quotes_sybase', 0 );
// Set default timezone in PHP 5.
if ( function_exists( 'date_default_timezone_set' ) )
date_default_timezone_set( 'UTC' );
// Turn register_globals off.
wp_unregister_GLOBALS();
// Ensure these global variables do not exist so they do not interfere with WordPress.
unset( $wp_filter, $cache_lastcommentmodified );
// 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();
// Set the database table prefix and the format specifiers for database table columns.
$GLOBALS['table_prefix'] = $table_prefix;
wp_set_wpdb_vars();
// Start the WordPress object cache, or an external object cache if the drop-in is present.
wp_start_object_cache();
// Attach the default filters.
require( ABSPATH . WPINC . '/default-filters.php' );
// Initialize multisite if enabled.
if ( is_multisite() ) {
require( ABSPATH . WPINC . '/ms-blogs.php' );
require( ABSPATH . WPINC . '/ms-settings.php' );
} elseif ( ! defined( 'MULTISITE' ) ) {
define( 'MULTISITE', false );
}
register_shutdown_function( 'shutdown_action_hook' );
// Stop most of WordPress from being loaded if we just want the basics.
if ( SHORTINIT )
return false;
// Load the L10n library.
require_once( ABSPATH . WPINC . '/l10n.php' );
// Run the installer if WordPress is not installed.
wp_not_installed();
// Load most of WordPress.
require( ABSPATH . WPINC . '/class-wp-walker.php' );
require( ABSPATH . WPINC . '/class-wp-ajax-response.php' );
require( ABSPATH . WPINC . '/formatting.php' );
require( ABSPATH . WPINC . '/capabilities.php' );
require( ABSPATH . WPINC . '/query.php' );
require( ABSPATH . WPINC . '/theme.php' );
require( ABSPATH . WPINC . '/class-wp-theme.php' );
require( ABSPATH . WPINC . '/template.php' );
require( ABSPATH . WPINC . '/user.php' );
require( ABSPATH . WPINC . '/meta.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 . '/post-thumbnail-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 . '/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' );
require( ABSPATH . WPINC . '/http.php' );
require( ABSPATH . WPINC . '/class-http.php' );
require( ABSPATH . WPINC . '/widgets.php' );
require( ABSPATH . WPINC . '/nav-menu.php' );
require( ABSPATH . WPINC . '/nav-menu-template.php' );
require( ABSPATH . WPINC . '/admin-bar.php' );
// Load multisite-specific files.
if ( is_multisite() ) {
require( ABSPATH . WPINC . '/ms-functions.php' );
require( ABSPATH . WPINC . '/ms-default-filters.php' );
require( ABSPATH . WPINC . '/ms-deprecated.php' );
}
// Define constants that rely on the API to obtain the default value.
// Define must-use plugin directory constants, which may be overridden in the sunrise.php drop-in.
wp_plugin_directory_constants( );
// Load must-use plugins.
foreach ( wp_get_mu_plugins() as $mu_plugin ) {
include_once( $mu_plugin );
}
unset( $mu_plugin );
// Load network activated plugins.
if ( is_multisite() ) {
foreach( wp_get_active_network_plugins() as $network_plugin ) {
include_once( $network_plugin );
}
unset( $network_plugin );
}
do_action( 'muplugins_loaded' );
if ( is_multisite() )
ms_cookie_constants( );
// Define constants after multisite is loaded. Cookie-related constants may be overridden in ms_network_cookies().
wp_cookie_constants( );
// Define and enforce our SSL constants
wp_ssl_constants( );
// Create common globals.
require( ABSPATH . WPINC . '/vars.php' );
// Make taxonomies and posts available to plugins and themes.
// @plugin authors: warning: these get registered again on the init hook.
create_initial_taxonomies();
create_initial_post_types();
// Register the default theme directory root
register_theme_directory( get_theme_root() );
// Load active plugins.
foreach ( wp_get_active_and_valid_plugins() as $plugin )
include_once( $plugin );
unset( $plugin );
// Load pluggable functions.
require( ABSPATH . WPINC . '/pluggable.php' );
require( ABSPATH . WPINC . '/pluggable-deprecated.php' );
// Set internal encoding.
wp_set_internal_encoding();
// Run wp_cache_postload() if object cache is enabled and the function exists.
if ( WP_CACHE && function_exists( 'wp_cache_postload' ) )
wp_cache_postload();
do_action( 'plugins_loaded' );
// Define constants which affect functionality if not already defined.
wp_functionality_constants( );
// Add magic quotes and set up $_REQUEST ( $_GET + $_POST )
wp_magic_quotes();
do_action( 'sanitize_comment_cookies' );
/**
* WordPress Query object
* @global object $wp_the_query
* @since 2.0.0
*/
$wp_the_query = new WP_Query();
/**
* Holds the reference to @See $wp_the_query
* Use this global for WordPress queries
* @global object $wp_query
* @since 1.5.0
*/
$wp_query =& $wp_the_query;
/**
* Holds the WordPress Rewrite object for creating pretty URLs
* @global object $wp_rewrite
* @since 1.5.0
*/
$GLOBALS['wp_rewrite'] = new WP_Rewrite();
/**
* WordPress Object
* @global object $wp
* @since 2.0.0
*/
$wp = new WP();
/**
* WordPress Widget Factory Object
* @global object $wp_widget_factory
* @since 2.8.0
*/
$GLOBALS['wp_widget_factory'] = new WP_Widget_Factory();
do_action( 'setup_theme' );
// Define the template related constants.
wp_templating_constants( );
// Load the default text localization domain.
load_default_textdomain();
$locale = get_locale();
$locale_file = WP_LANG_DIR . "/$locale.php";
if ( ( 0 === validate_file( $locale ) ) && is_readable( $locale_file ) )
require( $locale_file );
unset( $locale_file );
// Pull in locale data after loading text domain.
require_once( ABSPATH . WPINC . '/locale.php' );
/**
* WordPress Locale object for loading locale domain date and various strings.
* @global object $wp_locale
* @since 2.1.0
*/
$GLOBALS['wp_locale'] = new WP_Locale();
// Load the functions for the active theme, for both parent and child theme if applicable.
if ( ! defined( 'WP_INSTALLING' ) || 'wp-activate.php' === $pagenow ) {
if ( TEMPLATEPATH !== STYLESHEETPATH && file_exists( STYLESHEETPATH . '/functions.php' ) )
include( STYLESHEETPATH . '/functions.php' );
if ( file_exists( TEMPLATEPATH . '/functions.php' ) )
include( TEMPLATEPATH . '/functions.php' );
}
do_action( 'after_setup_theme' );
// Set up current user.
$wp->init();
/**
* Most of WP is loaded at this stage, and the user is authenticated. WP continues
* to load on the init hook that follows (e.g. widgets), and many plugins instantiate
* themselves on it for all sorts of reasons (e.g. they need a user, a taxonomy, etc.).
*
* If you wish to plug an action once WP is loaded, use the wp_loaded hook below.
*/
do_action( 'init' );
// Check site status
if ( is_multisite() ) {
if ( true !== ( $file = ms_site_check() ) ) {
require( $file );
die();
}
unset($file);
}
/**
* This hook is fired once WP, all plugins, and the theme are fully loaded and instantiated.
*
* AJAX requests should use wp-admin/admin-ajax.php. admin-ajax.php can handle requests for
* users not logged in.
*
* @Link http://codex.wordpress.org/AJAX_in_Plugins
*
* @since 3.0.0
*/
do_action('wp_loaded');
代码比较复杂,实现的功能也很多,不过代码的注释很清晰 ,我们一点点看
这个代码的作用就是设定好WP常量 以及包含WP的类库和过程库(函数库)
为了更好的研究PHP代码安装了Zend Studio这里给一个好用的下载地址 首先 ,加载了初始化需要的文件位于wp-includes文件夹下的 load default-constants version 三个PHP文件 我们先去看看 load.php这个文件
下面是load.php这个文件的代码:
<?php
/**
* These functions are needed to load WordPress.
*
* @internal This file must be parsable by PHP4.
*
* @package WordPress
*/
/**
* Turn register globals off.
*
* @Access private
* @since 2.1.0
* @Return null Will return null if register_globals PHP directive was disabled
*/
function wp_unregister_GLOBALS() {
if ( !ini_get( 'register_globals' ) )
return;
if ( isset( $_REQUEST['GLOBALS'] ) )
die( 'GLOBALS overwrite attempt detected' );
// Variables that shouldn't be unset
$no_unset = array( 'GLOBALS', '_GET', '_POST', '_COOKIE', '_REQUEST', '_SERVER', '_ENV', '_FILES', 'table_prefix' );
$input = array_merge( $_GET, $_POST, $_COOKIE, $_SERVER, $_ENV, $_FILES, isset( $_SESSION ) && is_array( $_SESSION ) ? $_SESSION : array() );
foreach ( $input as $k => $v )
if ( !in_array( $k, $no_unset ) && isset( $GLOBALS[$k] ) ) {
$GLOBALS[$k] = null;
unset( $GLOBALS[$k] );
}
}
/**
* Fix $_SERVER variables for various setups.
*
* @access private
* @since 3.0.0
*/
function wp_fix_server_vars() {
global $PHP_SELF;
$default_server_values = array(
'SERVER_SOFTWARE' => '',
'REQUEST_URI' => '',
);
$_SERVER = array_merge( $default_server_values, $_SERVER );
// Fix for IIS when running with PHP ISAPI
if ( empty( $_SERVER['REQUEST_URI'] ) || ( php_sapi_name() != 'cgi-fcgi' && preg_match( '/^Microsoft-IIS\//', $_SERVER['SERVER_SOFTWARE'] ) ) ) {
// IIS Mod-Rewrite
if ( isset( $_SERVER['HTTP_X_ORIGINAL_URL'] ) ) {
$_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL'];
}
// IIS Isapi_Rewrite
else if ( isset( $_SERVER['HTTP_X_REWRITE_URL'] ) ) {
$_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_REWRITE_URL'];
} else {
// Use ORIG_PATH_INFO if there is no PATH_INFO
if ( !isset( $_SERVER['PATH_INFO'] ) && isset( $_SERVER['ORIG_PATH_INFO'] ) )
$_SERVER['PATH_INFO'] = $_SERVER['ORIG_PATH_INFO'];
// Some IIS + PHP configurations puts the script-name in the path-info (No need to append it twice)
if ( isset( $_SERVER['PATH_INFO'] ) ) {
if ( $_SERVER['PATH_INFO'] == $_SERVER['SCRIPT_NAME'] )
$_SERVER['REQUEST_URI'] = $_SERVER['PATH_INFO'];
else
$_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . $_SERVER['PATH_INFO'];
}
// Append the query string if it exists and isn't null
if ( ! empty( $_SERVER['QUERY_STRING'] ) ) {
$_SERVER['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
}
}
}
// Fix for PHP as CGI hosts that set SCRIPT_FILENAME to something ending in php.cgi for all requests
if ( isset( $_SERVER['SCRIPT_FILENAME'] ) && ( strpos( $_SERVER['SCRIPT_FILENAME'], 'php.cgi' ) == strlen( $_SERVER['SCRIPT_FILENAME'] ) - 7 ) )
$_SERVER['SCRIPT_FILENAME'] = $_SERVER['PATH_TRANSLATED'];
// Fix for Dreamhost and other PHP as CGI hosts
if ( strpos( $_SERVER['SCRIPT_NAME'], 'php.cgi' ) !== false )
unset( $_SERVER['PATH_INFO'] );
// Fix empty PHP_SELF
$PHP_SELF = $_SERVER['PHP_SELF'];
if ( empty( $PHP_SELF ) )
$_SERVER['PHP_SELF'] = $PHP_SELF = preg_replace( '/(\?.*)?$/', '', $_SERVER["REQUEST_URI"] );
}
/**
* Check for the required PHP version, and the MySQL extension or a database drop-in.
*
* Dies if requirements are not met.
*
* @access private
* @since 3.0.0
*/
function wp_check_php_mysql_versions() {
global $required_php_version, $wp_version;
$php_version = phpversion();
if ( version_compare( $required_php_version, $php_version, '>' ) ) {
wp_load_translations_early();
wp_die( sprintf( __( 'Your server is running PHP version %1$s but WordPress %2$s requires at least %3$s.' ), $php_version, $wp_version, $required_php_version ) );
}
if ( ! extension_loaded( 'mysql' ) && ! file_exists( WP_CONTENT_DIR . '/db.php' ) ) {
wp_load_translations_early();
wp_die( __( 'Your PHP installation appears to be missing the MySQL extension which is required by WordPress.' ) );
}
}
/**
* Don't load all of WordPress when handling a favicon.ico request.
* Instead, send the headers for a zero-length favicon and bail.
*
* @since 3.0.0
*/
function wp_favicon_request() {
if ( '/favicon.ico' == $_SERVER['REQUEST_URI'] ) {
header('Content-Type: image/vnd.microsoft.icon');
header('Content-Length: 0');
exit;
}
}
/**
* Dies with a maintenance message when conditions are met.
*
* Checks for a file in the WordPress root directory named ".maintenance".
* This file will contain the variable $upgrading, set to the time the file
* was created. If the file was created less than 10 minutes ago, WordPress
* enters maintenance mode and displays a message.
*
* The default message can be replaced by using a drop-in (maintenance.php in
* the wp-content directory).
*
* @access private
* @since 3.0.0
*/
function wp_maintenance() {
if ( !file_exists( ABSPATH . '.maintenance' ) || defined( 'WP_INSTALLING' ) )
return;
global $upgrading;
include( ABSPATH . '.maintenance' );
// If the $upgrading timestamp is older than 10 minutes, don't die.
if ( ( time() - $upgrading ) >= 600 )
return;
if ( file_exists( WP_CONTENT_DIR . '/maintenance.php' ) ) {
require_once( WP_CONTENT_DIR . '/maintenance.php' );
die();
}
wp_load_translations_early();
$protocol = $_SERVER["SERVER_PROTOCOL"];
if ( 'HTTP/1.1' != $protocol && 'HTTP/1.0' != $protocol )
$protocol = 'HTTP/1.0';
header( "$protocol 503 Service Unavailable", true, 503 );
header( 'Content-Type: text/html; charset=utf-8' );
header( 'Retry-After: 600' );
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"<?php if ( is_rtl() ) echo ' dir="rtl"'; ?>>
*本站禁止HTML标签噢*
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
*本站禁止HTML标签噢* <?php _e( 'Maintenance' ); ?></title>
</head>
*本站禁止HTML标签噢*
*本站禁止HTML标签噢* <?php _e( 'Briefly unavailable for scheduled maintenance. Check back in a minute.' ); ?></h1>
</body>
</html>
<?php
die();
}
/**
* PHP 5 standard microtime start capture.
*
* @access private
* @since 0.71
* @global float $timestart Seconds from when function is called.
* @return bool Always returns true.
*/
function timer_start() {
global $timestart;
$timestart = microtime( true );
return true;
}
/**
* 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:
* *本站禁止HTML标签噢*
* $nTimePageTookToExecute = timer_stop();
* echo $nTimePageTookToExecute;
* </code>
*
* Or instead, you can do:
* *本站禁止HTML标签噢*
* timer_stop(1);
* </code>
* which will do what the above does. If you need the result, you can assign it to a variable, but
* in most cases, you only need to echo it.
*
* @since 0.71
* @global float $timestart Seconds from when timer_start() is called
* @global float $timeend Seconds 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;
$timeend = microtime( true );
$timetotal = $timeend - $timestart;
$r = ( function_exists( 'number_format_i18n' ) ) ? number_format_i18n( $timetotal, $precision ) : number_format( $timetotal, $precision );
if ( $display )
echo $r;
return $r;
}
/**
* Sets PHP error handling and handles WordPress debug mode.
*
* Uses three constants: WP_DEBUG, WP_DEBUG_DISPLAY, and WP_DEBUG_LOG. All three can be
* defined in wp-config.php. Example: *本站禁止HTML标签噢* define( 'WP_DEBUG', true ); </code>
*
* WP_DEBUG_DISPLAY and WP_DEBUG_LOG perform no function unless WP_DEBUG is true.
* WP_DEBUG defaults to false.
*
* When WP_DEBUG is true, all PHP notices are reported. WordPress will also display
* notices, including one when a deprecated WordPress function, function argument,
* or file is used. Deprecated code may be removed from a later version.
*
* It is strongly recommended that plugin and theme developers use WP_DEBUG in their
* development environments.
*
* When WP_DEBUG_DISPLAY is true, WordPress will force errors to be displayed.
* WP_DEBUG_DISPLAY defaults to true. Defining it as null prevents WordPress from
* changing the global configuration setting. Defining WP_DEBUG_DISPLAY as false
* will force errors to be hidden.
*
* When WP_DEBUG_LOG is true, errors will be logged to wp-content/debug.log.
* WP_DEBUG_LOG defaults to false.
*
* @access private
* @since 3.0.0
*/
function wp_debug_mode() {
if ( WP_DEBUG ) {
// E_DEPRECATED is a core PHP constant in PHP 5.3. Don't define this yourself.
// The two statements are equivalent, just one is for 5.3+ and for less than 5.3.
if ( defined( 'E_DEPRECATED' ) )
error_reporting( E_ALL & ~E_DEPRECATED & ~E_STRICT );
else
error_reporting( E_ALL );
if ( WP_DEBUG_DISPLAY )
ini_set( 'display_errors', 1 );
elseif ( null !== WP_DEBUG_DISPLAY )
ini_set( 'display_errors', 0 );
if ( WP_DEBUG_LOG ) {
ini_set( 'log_errors', 1 );
ini_set( 'error_log', WP_CONTENT_DIR . '/debug.log' );
}
} else {
error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR );
}
}
/**
* Sets the location of the language directory.
*
* To set directory manually, define *本站禁止HTML标签噢* WP_LANG_DIR</code> in wp-config.php.
*
* If the language directory exists within WP_CONTENT_DIR, that is used.
* Otherwise if the language directory exists within WPINC, that's used.
* Finally, if neither of the preceding directories are found,
* WP_CONTENT_DIR/languages is used.
*
* The WP_LANG_DIR constant was introduced in 2.1.0.
*
* @access private
* @since 3.0.0
*/
function wp_set_lang_dir() {
if ( !defined( 'WP_LANG_DIR' ) ) {
if ( file_exists( WP_CONTENT_DIR . '/languages' ) && @is_dir( WP_CONTENT_DIR . '/languages' ) || !@is_dir(ABSPATH . WPINC . '/languages') ) {
define( 'WP_LANG_DIR', WP_CONTENT_DIR . '/languages' ); // no leading slash, no trailing slash, full path, not relative to ABSPATH
if ( !defined( 'LANGDIR' ) ) {
// Old static relative path maintained for limited backwards compatibility - won't work in some cases
define( 'LANGDIR', 'wp-content/languages' );
}
} else {
define( 'WP_LANG_DIR', ABSPATH . WPINC . '/languages' ); // no leading slash, no trailing slash, full path, not relative to ABSPATH
if ( !defined( 'LANGDIR' ) ) {
// Old relative path maintained for backwards compatibility
define( 'LANGDIR', WPINC . '/languages' );
}
}
}
}
/**
* Load the correct database class file.
*
* This function is used to load the database class file either at runtime or by
* wp-admin/setup-config.php. We must globalize $wpdb to ensure that it is
* defined globally by the inline code in wp-db.php.
*
* @since 2.5.0
* @global $wpdb WordPress Database Object
*/
function require_wp_db() {
global $wpdb;
require_once( ABSPATH . WPINC . '/wp-db.php' );
if ( file_exists( WP_CONTENT_DIR . '/db.php' ) )
require_once( WP_CONTENT_DIR . '/db.php' );
if ( isset( $wpdb ) )
return;
$wpdb = new wpdb( DB_USER, DB_PASSWORD, DB_NAME, DB_HOST );
}
/**
* Sets the database table prefix and the format specifiers for database table columns.
*
* Columns not listed here default to %s.
*
* @see wpdb::$field_types Since 2.8.0
* @see wpdb::prepare()
* @see wpdb::insert()
* @see wpdb::update()
* @see wpdb::set_prefix()
*
* @access private
* @since 3.0.0
*/
function wp_set_wpdb_vars() {
global $wpdb, $table_prefix;
if ( !empty( $wpdb->error ) )
dead_db();
$wpdb->field_types = array( 'post_author' => '%d', 'post_parent' => '%d', 'menu_order' => '%d', 'term_id' => '%d', 'term_group' => '%d', 'term_taxonomy_id' => '%d',
'parent' => '%d', 'count' => '%d','object_id' => '%d', 'term_order' => '%d', 'ID' => '%d', 'commment_ID' => '%d', 'comment_post_ID' => '%d', 'comment_parent' => '%d',
'user_id' => '%d', 'link_id' => '%d', 'link_owner' => '%d', 'link_rating' => '%d', 'option_id' => '%d', 'blog_id' => '%d', 'meta_id' => '%d', 'post_id' => '%d',
'user_status' => '%d', 'umeta_id' => '%d', 'comment_karma' => '%d', 'comment_count' => '%d',
// multisite:
'active' => '%d', 'cat_id' => '%d', 'deleted' => '%d', 'lang_id' => '%d', 'mature' => '%d', 'public' => '%d', 'site_id' => '%d', 'spam' => '%d',
);
$prefix = $wpdb->set_prefix( $table_prefix );
if ( is_wp_error( $prefix ) ) {
wp_load_translations_early();
wp_die( __( ' *本站禁止HTML标签噢* ERROR</strong>: *本站禁止HTML标签噢* $table_prefix</code> in *本站禁止HTML标签噢* wp-config.php</code> can only contain numbers, letters, and underscores.' ) );
}
}
/**
* Starts the WordPress object cache.
*
* If an object-cache.php file exists in the wp-content directory,
* it uses that drop-in as an external object cache.
*
* @access private
* @since 3.0.0
*/
function wp_start_object_cache() {
global $_wp_using_ext_object_cache;
$first_init = false;
if ( ! function_exists( 'wp_cache_init' ) ) {
if ( file_exists( WP_CONTENT_DIR . '/object-cache.php' ) ) {
require_once ( WP_CONTENT_DIR . '/object-cache.php' );
$_wp_using_ext_object_cache = true;
} else {
require_once ( ABSPATH . WPINC . '/cache.php' );
$_wp_using_ext_object_cache = false;
}
$first_init = true;
} else if ( !$_wp_using_ext_object_cache && file_exists( WP_CONTENT_DIR . '/object-cache.php' ) ) {
// Sometimes advanced-cache.php can load object-cache.php before it is loaded here.
// This breaks the function_exists check above and can result in $_wp_using_ext_object_cache
// being set incorrectly. Double check if an external cache exists.
$_wp_using_ext_object_cache = true;
}
// If cache supports reset, reset instead of init if already initialized.
// Reset signals to the cache that global IDs have changed and it may need to update keys
// and cleanup caches.
if ( !$first_init && function_exists('wp_cache_reset') )
wp_cache_reset();
else
wp_cache_init();
if ( function_exists( 'wp_cache_add_global_groups' ) ) {
wp_cache_add_global_groups( array( 'users', 'userlogins', 'usermeta', 'user_meta', 'site-transient', 'site-options', 'site-lookup', 'blog-lookup', 'blog-details', 'rss', 'global-posts' ) );
wp_cache_add_non_persistent_groups( array( 'comment', 'counts', 'plugins' ) );
}
}
/**
* Redirects to the installer if WordPress is not installed.
*
* Dies with an error message when multisite is enabled.
*
* @access private
* @since 3.0.0
*/
function wp_not_installed() {
if ( is_multisite() ) {
if ( ! is_blog_installed() && ! defined( 'WP_INSTALLING' ) )
wp_die( __( 'The site you have requested is not installed properly. Please contact the system administrator.' ) );
} elseif ( ! is_blog_installed() && false === strpos( $_SERVER['PHP_SELF'], 'install.php' ) && !defined( 'WP_INSTALLING' ) ) {
//$link = wp_guess_url() . '/wp-admin/install.php';
$link = 'http://'.$_SERVER["HTTP_HOST"].'/wp-admin/install.php?'.$_SERVER['QUERY_STRING'];
require( ABSPATH . WPINC . '/kses.php' );
require( ABSPATH . WPINC . '/pluggable.php' );
require( ABSPATH . WPINC . '/formatting.php' );
wp_redirect( $link );
die();
}
}
/**
* Returns array of must-use plugin files to be included in global scope.
*
* The default directory is wp-content/mu-plugins. To change the default directory
* manually, define *本站禁止HTML标签噢* WPMU_PLUGIN_DIR</code> and *本站禁止HTML标签噢* WPMU_PLUGIN_URL</code>
* in wp-config.php.
*
* @access private
* @since 3.0.0
* @return array Files to include
*/
function wp_get_mu_plugins() {
$mu_plugins = array();
if ( !is_dir( WPMU_PLUGIN_DIR ) )
return $mu_plugins;
if ( ! $dh = opendir( WPMU_PLUGIN_DIR ) )
return $mu_plugins;
while ( ( $plugin = readdir( $dh ) ) !== false ) {
if ( substr( $plugin, -4 ) == '.php' )
$mu_plugins[] = WPMU_PLUGIN_DIR . '/' . $plugin;
}
closedir( $dh );
sort( $mu_plugins );
return $mu_plugins;
}
/**
* Returns array of plugin files to be included in global scope.
*
* The default directory is wp-content/plugins. To change the default directory
* manually, define *本站禁止HTML标签噢* WP_PLUGIN_DIR</code> and *本站禁止HTML标签噢* WP_PLUGIN_URL</code>
* in wp-config.php.
*
* @access private
* @since 3.0.0
* @return array Files to include
*/
function wp_get_active_and_valid_plugins() {
$plugins = array();
$active_plugins = (array) get_option( 'active_plugins', array() );
// Check for hacks file if the option is enabled
if ( get_option( 'hack_file' ) && file_exists( ABSPATH . 'my-hacks.php' ) ) {
_deprecated_file( 'my-hacks.php', '1.5' );
array_unshift( $plugins, ABSPATH . 'my-hacks.php' );
}
if ( empty( $active_plugins ) || defined( 'WP_INSTALLING' ) )
return $plugins;
$network_plugins = is_multisite() ? wp_get_active_network_plugins() : false;
foreach ( $active_plugins as $plugin ) {
if ( ! validate_file( $plugin ) // $plugin must validate as file
&& '.php' == substr( $plugin, -4 ) // $plugin must end with '.php'
&& file_exists( WP_PLUGIN_DIR . '/' . $plugin ) // $plugin must exist
// not already included as a network plugin
&& ( ! $network_plugins || ! in_array( WP_PLUGIN_DIR . '/' . $plugin, $network_plugins ) )
)
$plugins[] = WP_PLUGIN_DIR . '/' . $plugin;
}
return $plugins;
}
/**
* Sets internal encoding using mb_internal_encoding().
*
* In most cases the default internal encoding is latin1, which is of no use,
* since we want to use the mb_ functions for utf-8 strings.
*
* @access private
* @since 3.0.0
*/
function wp_set_internal_encoding() {
if ( function_exists( 'mb_internal_encoding' ) ) {
if ( !@mb_internal_encoding( get_option( 'blog_charset' ) ) )
mb_internal_encoding( 'UTF-8' );
}
}
/**
* Add magic quotes to $_GET, $_POST, $_COOKIE, and $_SERVER.
*
* Also forces $_REQUEST to be $_GET + $_POST. If $_SERVER, $_COOKIE,
* or $_ENV are needed, use those superglobals directly.
*
* @access private
* @since 3.0.0
*/
function wp_magic_quotes() {
// If already slashed, strip.
if ( get_magic_quotes_gpc() ) {
$_GET = stripslashes_deep( $_GET );
$_POST = stripslashes_deep( $_POST );
$_COOKIE = stripslashes_deep( $_COOKIE );
}
// Escape with wpdb.
$_GET = add_magic_quotes( $_GET );
$_POST = add_magic_quotes( $_POST );
$_COOKIE = add_magic_quotes( $_COOKIE );
$_SERVER = add_magic_quotes( $_SERVER );
// Force REQUEST to be GET + POST.
$_REQUEST = array_merge( $_GET, $_POST );
}
/**
* Runs just before PHP shuts down execution.
*
* @access private
* @since 1.2.0
*/
function shutdown_action_hook() {
do_action( 'shutdown' );
wp_cache_close();
}
/**
* Copy an object.
*
* @since 2.7.0
* @deprecated 3.2
*
* @param object $object The object to clone
* @return object The cloned object
*/
function wp_clone( $object ) {
// Use parens for clone to accommodate PHP 4. See #17880
return clone( $object );
}
/**
* Whether the current request is for a network or blog admin page
*
* Does not inform on whether the user is an admin! Use capability checks to
* tell if the user should be accessing a section or not.
*
* @since 1.5.1
*
* @return bool True if inside WordPress administration pages.
*/
function is_admin() {
if ( defined( 'WP_ADMIN' ) )
return WP_ADMIN;
return false;
}
/**
* Whether the current request is for a blog admin screen /wp-admin/
*
* Does not inform on whether the user is a blog admin! Use capability checks to
* tell if the user should be accessing a section or not.
*
* @since 3.1.0
*
* @return bool True if inside WordPress network administration pages.
*/
function is_blog_admin() {
if ( defined( 'WP_BLOG_ADMIN' ) )
return WP_BLOG_ADMIN;
return false;
}
/**
* Whether the current request is for a network admin screen /wp-admin/network/
*
* Does not inform on whether the user is a network admin! Use capability checks to
* tell if the user should be accessing a section or not.
*
* @since 3.1.0
*
* @return bool True if inside WordPress network administration pages.
*/
function is_network_admin() {
if ( defined( 'WP_NETWORK_ADMIN' ) )
return WP_NETWORK_ADMIN;
return false;
}
/**
* Whether the current request is for a user admin screen /wp-admin/user/
*
* Does not inform on whether the user is an admin! Use capability checks to
* tell if the user should be accessing a section or not.
*
* @since 3.1.0
*
* @return bool True if inside WordPress user administration pages.
*/
function is_user_admin() {
if ( defined( 'WP_USER_ADMIN' ) )
return WP_USER_ADMIN;
return false;
}
/**
* Whether Multisite support is enabled
*
* @since 3.0.0
*
* @return bool True if multisite is enabled, false otherwise.
*/
function is_multisite() {
if ( defined( 'MULTISITE' ) )
return MULTISITE;
if ( defined( 'SUBDOMAIN_INSTALL' ) || defined( 'VHOST' ) || defined( 'SUNRISE' ) )
return true;
return false;
}
/**
* Attempts an early load of translations.
*
* Used for errors encountered during the initial loading process, before the locale has been
* properly detected and loaded.
*
* Designed for unusual load sequences (like setup-config.php) or for when the script will then
* terminate with an error, otherwise there is a risk that a file can be double-included.
*
* @since 3.4.0
* @access private
*/
function wp_load_translations_early() {
global $text_direction, $wp_locale;
static $loaded = false;
if ( $loaded )
return;
$loaded = true;
if ( function_exists( 'did_action' ) && did_action( 'init' ) )
return;
// We need $wp_local_package
require ABSPATH . WPINC . '/version.php';
// Translation and localization
require_once ABSPATH . WPINC . '/pomo/mo.php';
require_once ABSPATH . WPINC . '/l10n.php';
require_once ABSPATH . WPINC . '/locale.php';
// General libraries
require_once ABSPATH . WPINC . '/functions.php';
require_once ABSPATH . WPINC . '/plugin.php';
$locales = $locations = array();
while ( true ) {
if ( defined( 'WPLANG' ) ) {
if ( '' == WPLANG )
break;
$locales[] = WPLANG;
}
if ( isset( $wp_local_package ) )
$locales[] = $wp_local_package;
if ( ! $locales )
break;
if ( defined( 'WP_LANG_DIR' ) && @is_dir( WP_LANG_DIR ) )
$locations[] = WP_LANG_DIR;
if ( defined( 'WP_CONTENT_DIR' ) && @is_dir( WP_CONTENT_DIR . '/languages' ) )
$locations[] = WP_CONTENT_DIR . '/languages';
if ( @is_dir( ABSPATH . 'wp-content/languages' ) )
$locations[] = ABSPATH . 'wp-content/languages';
if ( @is_dir( ABSPATH . WPINC . '/languages' ) )
$locations[] = ABSPATH . WPINC . '/languages';
if ( ! $locations )
break;
$locations = array_unique( $locations );
foreach ( $locales as $locale ) {
foreach ( $locations as $location ) {
if ( file_exists( $location . '/' . $locale . '.mo' ) ) {
load_textdomain( 'default', $location . '/' . $locale . '.mo' );
if ( defined( 'WP_SETUP_CONFIG' ) && file_exists( $location . '/admin-' . $locale . '.mo' ) )
load_textdomain( 'default', $location . '/admin-' . $locale . '.mo' );
break 2;
}
}
}
break;
}
$wp_locale = new WP_Locale();
}
[/mw_shl_code]
这里又有很多新的函数了 ,我们一个个来研究,首先 定义了wp_unregister_GLOBALS这个函数,
(PS:刚刚弄Zend11的安装和破解弄了一会儿 ,现在先说明一下zend11.0.0的破解方法 Linux版 首先 在刚刚的网址下载Zend 11.0.0然后直接解压到指定目录 ,就可以运行了,然后 下载这个文件)然后 把这个文件解压 ,里面的com.***.***那个文件复制到zend的plugin目录下覆盖原文件,然后打开终端 输入 java -jar 你的破解文件夹所在路径 /keygen.jar 就能运行zend11的注册机了 之后只要把注册码粘贴到框里就可以了 )
这个函数的作用是 设置register globals 为 off ,这个的作用 就是保证网页的安全性,下面是对 register globals如果为 ON的时候 安全隐患的一个解释 摘自 PHP.net CN
当 register_globals 打开以后,各种变量都被注入代码,例如来自 HTML 表单的请求变量。再加上 PHP 在使用变量之前是无需进行初始化的,这就使得更容易写出不安全的代码。这是个很艰难的抉择,但 PHP 社区还是决定默认关闭此选项。当打开时,人们使用变量时确实不知道变量是哪里来的,只能想当然。但是 register_globals 的关闭改变了这种代码内部变量和客户端发送的变量混杂在一起的糟糕情况。下面举一个错误使用 register_globals 的例子:Example #1 错误使用 register_globals = on 的例子[mw_shl_code=php,true]<?php// 当用户合法的时候,赋值 $authorized = true
if (authenticated_user()) {
$authorized = true;
}
// 由于并没有事先把 $authorized 初始化为 false,
// 当 register_globals 打开时,可能通过GET auth.php?authorized=1 来定义该变量值
// 所以任何人都可以绕过身份验证
if ($authorized) {
include "/highly/sensitive/data.php";
}
?> [/mw_shl_code]
当 register_globals = on 的时候,上面的代码就会有危险了。如果是 off,$authorized 就不能通过如 URL 请求等方式来改变,这样就好多了,尽管初始化变量是一个良好的编程习惯。比如说,如果在上面的代码执行之前加入 $authorized = false 的话,无论 register_globals 是 on 还是 off 都可以,因为用户状态被初始化为未经认证。这仅仅是 register globals的隐患之一 还有更多的介绍参见这个页面 以及更详细的来自PHP外变量的信息参见这个页面ini_get 函数 的作用是返回一个PHP配置项目的值 用法ini_get(STRING) 这里,代码检测了register globals的状态 如果是OFF 那么就直接返回 否则 先检查是否有全局变量输入的企图 ,有的话就会退出当前脚本 ,并且输出一条错误信息,然后 下面的代码先定义了一个 不被取消全局变量值的数组 ,也就是说,这里的变量都保留 ,其他的global变量全部取消
我们再来看一下 这里的函数 array者都不用说了,是新建一个array no_unset数组 ,array_merge就是合并这些数组为 input 数组 ,准备一起来遍历 。然后就是 unset的过程了 前面已经说过了 。
个人感觉这么来解释代码不太好理解 ,按照函数的调用顺序来继续解释吧,每当调用一个函数的时候 再对那个函数进行解释 下面 就按照这个方式继续了
[查看全文]

本帖最后由 Mr_Alex 于 2013-3-25 16:48 编辑
额,开头先扯点别的。。。
大家都知道在项目中过多的使用存储过程会降低应用程序的可移植性,但是为了一些这样那样的的原因,我们很多时候会不得不用到存储过程以获得较高的执行效率。虽然目前hibernate 已经添加了很多关于调用存储过程的支持,但是不得不说,还是有一些不尽人意的地方,对于对hibernate还不是很熟悉的童靴来说,这还有点难度~~所以今天跟大家分享一些关于 Hibernate调用Oracle的存储过程 的知识~
第一个存储过程:
[mw_shl_code=sql,true]
create Procedure proc()
begin
select * from proctab;
end;
[/mw_shl_code]
第二个存储过程:
[mw_shl_code=sql,true]
create procedure proc1(v_no number(4))
begin
select * from proc1
where id=v_no;
end;
[/mw_shl_code]
调用方法1:传统的 xml映射文件调用
[mw_shl_code=xml,true]
<!--xml映射文件 -->
<class name="com.test.User" table="proctab">
<id name="id" column="id">
<generator class="native"/>
</id>
<property name="name" column="name" type="string" />
<property name="age" column="age" type="integer" />
</class>
<sql-query name="getUser" callable="true">
<return alias="user" class="com.test.User">
<return-property name="id" column="id" />
<return-property name="name" column="name" />
<return-property name="age" column="age" />
</return>
{call proc()}
</sql-query>
[/mw_shl_code]
通过hibernate的API来调用以上的存储过程
[mw_shl_code=java,true]
// Hibernate API code
Session ss= HibernateSessionFactory.getSession()
List li=ss.getNamedQuery("getUser").list();
ss.close();
[/mw_shl_code]
调用方法2:通过JAVA的JDBC的API来调用
[mw_shl_code=java,true]
//jdbc 调用
Session session =HibernateSessionFactory.getSession();
Connection conn = session.connection();
ResultSet rs =null;
CallableStatement call = conn.prepareCall("{Call proc()}");
rs = call.executeQuery();
rs.close();
session.close();
[/mw_shl_code]
传递参数:
[mw_shl_code=java,true]
//传参1
CallableStatement call = conn.prepareCall("{Call proc(?)}");
call.setString(1, 参数);
rs = call.executeQuery(); [/mw_shl_code]
值得注意的是,因为这种方法是直接通过JAVA的JDBC来调用,这就破坏的hibernate的封装性,因此不被hibernate所支持,在hibernate3.3.2之前的版本中还可以通过getSession().connection()来获取一个Session对象,从而实现JDBC的调用。但是在hibernate3.3.2开始以后的版本中,hibernate就完全的丢弃了对这个方法的支持。
不过所幸的是它又提供了一个替代的方法doWork(Work work);Work是一个接口,我们可以通过实现此接口的方法,从而在其内部实现对存储过程的调用。
其实现代码如下:
[mw_shl_code=java,true]
public interface Work {
//直接通过JDBC API来访问数据库的操作
public void execute(Connection connection) throws SQLException;
}
//Session的doWork(Work work)方法用于执行Work对象指定的操作,即调用Work对象的execute()方法。Session会把当前使用的数据库连接传给execute()方法。
//过程如下:
Transaction tx=session.beginTransaction();
//定义一个匿名类,实现了Work接口
Work work=new Work(){
public void execute(Connection conn)throws SQLException{
//在这里写用JAVA的JDBC调用存储过程的方法
CallableStatement proc = null;
proc = conn.prepareCall("{ call procName(?,?,?) }");
proc.setInt(1, 100);
......
proc.execute();
......
}
};
//执行work
session.doWork(work);
tx.commit();
[/mw_shl_code]
调用方法3:直接使用hibernate的createSqlQuery调用
[mw_shl_code=java,true]
Session session =HibernateSessionFactory.getSession();
SQLQuery query = session.createSQLQuery("{Call proc()}");
List list =query.list();
session.close();
[/mw_shl_code]
hibernate的API调用时候传递参数
[mw_shl_code=java,true]
SQLQuery query = session.createSQLQuery("{Call proc(?)}");
query.setString(0, 参数);
List list =query.list();
[/mw_shl_code]
声明: 以上代码部分转自互联网,原文地址: http://www.cnblogs.com/jerryxing/archive/2012/04/28/2475762.html
写了这么多,有木有糖吃哇 @Whisper1166 @。咯咯君
该贴已经同步到 Mr_Alex的微博

本帖最后由 ApfelZaft 于 2013-2-4 07:59 编辑
PHP基础全民入门普及教程第一弹!
Hi,电脑前的小盆友们大家好! 我是技术卖萌群的三味=。=
大家每天都上网,难道就不好奇为神马我们能看到如此多姿多彩的网页呢?为什么我点一下发布帖子就发出去了呢? etc.
作为主业是和网络打交道的苦逼码农,觉得普及普及网络相关的姿势还是很有意思的事情。
于是顶着压力准备从最基础入门开始,慢慢到后期一个一个具体的网页功能模块,来具体写一个PHP入门系列的教学。
虽然很多大神眼里PHP就是一个简单到不屑一顾的语言=。=嘛~我们是做实际应用的,实用,简单,易上手,成本低才是最优先考虑的,所以目前来说php无论在海内外还是使用率非常高的一款服务端脚本语言。 比如人所皆知的wordpress博客框架就是用咱们的php写滴~技术宅这个论坛用的Discuz论坛框架也是基于PHP~关于这些具体功能和框架怎么自己架设着玩,我以后会陆续的都讲到,那么,在不多说废话了,咱们开始我们的PHP之旅吧!
==================================================================
第一讲:PHP基本背景和相关概念
咳咳,我知道一上来就搞概念很多大小朋友们就想跳过了。不过想做网络应用的基础就是这些看似无聊的协议和概念~因为是基础,咱们从简来说说。
首先我要来讲一下网络应用(这里具体指网站)的基本原理。
现在的网络应用几乎都是基于分布式多层应用结构(因为我学的都不是中文的教材=。=所以一些专业术语都是自己随便翻过来的,有错误务必指出,以后亦是如此),也就是把抽象的网络在逻辑上分了几个层次,每一个层都有自己的特定功能。这里我就粗略说一下。
一般一个网络应用分为3或4层架构(N-tier Architectures),分别是:
1. 呈现层(Presentation Layer), 也就是我们在自己电脑上看到的用户界面,一般指的是咱们的浏览器。负责收取咱们用户输入的信息,还有在屏幕上现实从服务器返回过来的结果。HTML就是在这一层使用的技术~
2. Business Logical Layer(商业逻辑层):这一层是整个网络应用的中枢系统,应用程序的主体和逻辑都布置在这一层(比如在购物网站购物车的功能,登录的功能,等等),一般就是网络服务器。我们要学习的PHP就是运行在这一层的脚本语言。
3. 数据层: 顾名思义,这一层主要是数据的管理,一般用到的就是数据库。比如Mysql。
下面我举个栗子来说明一下具体这三层是怎么运用在实际中的,还有咱们上网的真相是什么(篇幅原因,从简,有问题可以跟帖我具体解释)~
================我是栗子==================================
咱们打开浏览器,输入地址上了技术宅论坛(这一步涉及到地址解析等知识,在此不作详叙),第一件事就是要登录。
可以这么看,我们的浏览器就是一个客户端,技术宅论坛在租用的服务器上部署了服务端和数据库。
首先我们点击登录按钮,“登录”按钮包含的URL(统一资源定位符,也就是链接)信息通过HTTP协议给服务器发送了一个请求(实际的网络链接是通过传输层的TCP进行,HTTP为高一层的协议),服务器一直在通过一个固定端口(比如80)监听着有没有客户发来服务请求。如今服务器收到了来自我这个IP的请求,它知道了咱们想要登录,于是生成了一个登录页面(HTML语言),再通过HTTP协议和TCP把结果返回给客户端。客户端,也就是咱们的浏览器翻译出来这段HTML语言展示给我们,于是我们成功看到了登录的页面。
================我是栗子==================================
这就是一个最简单的网络应用的栗子,就想象成客户呼叫,服务端提供服务就好了~
为什么要说这些呢?因为PHP就是一个用在服务端的脚本语言(相对于javascript这种运用的客户端的脚本语言)。通过写PHP,我们可以动态控制用户看到的页面,给用户提供各种服务。可以说,你在这个论坛用到的几乎所有功能都可以用PHP来实现~
============================================================
结束了理论基础,我们终于开始进入正题了!!
PHP 是一种创建动态交互性站点的强有力的服务器端脚本语言。
PHP 是免费的,并且使用非常广泛。同时,对于像微软 ASP 这样的竞争者来说,PHP 无疑是另一种高效率的选项。PHP 极其适合网站开发,其代码可以直接嵌入 HTML 代码。
PHP 语法非常类似于 Perl 和 C。PHP 常常搭配 Apache (web 服务器) 一起使用。不过它也支持 ISAPI,并且可以运行于 Windows 的微软 IIS 平台。
PHP 文件可包含文本、HTML 标签以及脚本。PHP 文件中的脚本可在服务器上执行。
您应当具备的基础知识在继续学习之前,您需要对下面的知识有基本的了解:
- HTML / XHTML
- 基础的脚本知识
这两个内容太基础了。。要是真有需要的同学可以提出来再开个教程=。=
那么,我们开始吧!
首先,是一些需要知道的东西。
什么是 PHP?
- PHP 指 PHP:超文本预处理器(译者注:PHP: Hypertext Preprocessor,递归命名)
- PHP 是一种服务器端的脚本语言,类似 ASP
- PHP 脚本在服务器上执行
- PHP 支持很多数据库(MySQL、Informix、Oracle、Sybase、Solid、PostgreSQL、Generic ODBC 等等)
- PHP 是一个开源的软件(open source software,OSS)
- PHP 可免费下载使用
什么是 PHP 文件?
- PHP 文件可包含文本、HTML 标签以及脚本
- PHP 文件向浏览器返回纯粹的 HTML
- PHP 文件的文件后缀是 ".php"、".php3" 或 ".phtml"
什么是 MySQL?
- MySQL 是一种数据库服务器
- MySQL 支持标准的 SQL
- MySQL 可在许多平台上编译
- MySQL 可免费下载使用
- PHP 与 MySQL 的组合是跨平台的(意思是您可以在 Windows 环境进行开发,而在 Unix 平台上提供服务)
从何处开始?
- 在 Windows 或者 Linux 机器上安装 Apache 服务器
- 在 Windows 或者 Linux 机器上安装 PHP
- 在 Windows 或者 Linux 机器上安装 MySQL
为了即学即用,我推荐大家使用整合了PHP+Mysql+Apache的便携式环境。比如我使用的就是WampServer。只要简单的安装,就可以使用PHP+Mysql+Apache的环境了。不用自己分开下载安装以及配置。对新手来说配置就可以纠结很久了=。=
一. 下载安装WampServer
大家可以在http://www.wampserver.com/en/#download-wrapper 下载最新版本的WampServer。软件里自带中文,所以大家有福了~
1. 首先根据自己的实际需要选择版本下载,注意64位和32位系统区别。之后安装,这里就不截图了=。=
2. 安装完之后咱们双击运行~在系统小图标栏就会出现这个: 图标。 右键点击它可以选择语言和帮助文件,请选择中文吧~
3. 之后鼠标左键我们可以看到许多的选项,我们点击启动所有服务。图标就会变为绿色。(离线是指服务器变为本地状态,不对外开放)
附:如果Apache无法启动,请先退出占用80端口的软件,启动workstation和DNS Client服务,网络协议安装Microsoft网络客户端,如果还不能启动,就到你的连接名-属性-网络-Internet协议-属性-高级-WINS-导入LMHOSTS—你的apache的httpd.exe地址(一般为wamp\bin\apache\bin\httpd.exe)就可以了
(根据X-Force的经验,迅雷、电驴、QQ音乐等程序均会占用80端口哟)
好了~到这一步为止,咱们就算是成功架设并且开启了服务器环境,接下来只要写好PHP程序,放到wamp的www目录下,就可以在浏览器中通过http://localhost 的方式来本地访问了~
基本的 PHP 语法PHP 的脚本块以 <?php 开始,以 ?> 结束。您可以把 PHP 的脚本块放置在文档中的任何位置。
当然,在支持简写的服务器上,您可以使用 <? 和 ?> 来开始和结束脚本块。
不过,为了达到最好的兼容性,我们推荐您使用标准形式 (<?php),而不是简写形式。
接下来我们进入刚才Wamp安装目录下面的www文件夹,新建一个.php文件,然后用自己喜欢的文本编辑器打开~(新手可以使用Notepad++,我后天会教大家配置使用IDE,虽然我自己不喜欢=。=)
PHP 文件通常会包含 HTML 标签,就像一个 HTML 文件,以及一些 PHP 脚本代码。
在下面,我们提供了一段简单的 PHP 脚本,它可以向浏览器输出文本 "Hello World":
[mw_shl_code=php,true] *本站禁止HTML标签噢*
*本站禁止HTML标签噢*
<?php
echo "Hello World";
?>
</body>
</html>[/mw_shl_code]
PHP 中的每个代码行都必须以分号结束。分号是一种分隔符,用于把指令集区分开来。
有两种通过 PHP 来输出文本的基础指令:echo 和 print。在上面的例子中,我们使用了 echo 语句来输出文本 "Hello World"。
把这段hello world写入你的php文件,保存。
然后打开浏览器(确保你已经运行了WampServer并且启动了服务),输入http://localhost/ 看看是不是这样~
Your Projects里面就是你www目录下所有可以运行的项目和程序,应该可以看到你刚才自己写的php文件,点击它看看~
或者直接浏览器输入
http://localhost/{你的文件名}.php 也是一样的效果。
有没有看到Hello World呢? 恭喜你已经运行了第一个php程序~
php还需要控制数据库,Wamp使用的是Mysql~咱们来给自己加建立一个数据库账号吧。
还是左键那个Wamp的图标。
控制Mysql数据库,选择PHPmyAdmin(一款网页版的用于管理MySQL数据库的程序)
点击添加新用户,我们增加一个数据库的用户
按照我的设置,用户名和密码随意,我的就是123 123。这时我们就可以在本机安装一些常用的PHP程序来玩玩了,例如WordPress,又或者一个Discuz论坛。现在我们以discuz为榜样,试验一下,Discuz安装前还要小小的设置一下,Php-php设置-勾选short open tag
下载Discuz http://www.discuz.net/,解压,将discuz的upload文件夹里的所有文件复制到wamp的www目录下(直接复制upload就可),在浏览器访问 http://localhost/upload/install/index.php,这时就会出现discuz的安装界面了,点击我同意-检测通过,出现:
数据库用户名和密码按照上面的设置,下面的是Discuz管理员用户名,密码随便,点击“填写完毕,进行下一步”。就会出现安装完成的界面,好了!我们成功地在Windows本机上建立起一个自己的论坛了,总体的步骤都是非常简单的。
大家有兴趣可以试试看~
尽管可能新手朋友并不了解里面所有东西都是些什么,有什么作用,但我们起码能通过WAMP搭起一个论坛了。有点成就感后再慢慢深入学习也不错的嘛。WAMP类软件对于懒人、对于初入门者的意义还是不轻的,起码,对于初入门者,它能把入门的路铺平一点了。
另外补充一些WAMP的应用:除了用于学习PHP开发外,你还可以在本机搭建一个WordPress写自己的私人日记,建一个私人/局域网的论坛或者博客用作资料储存库,建立用于折腾的试验网站,如专门用来测试WordPress插件、皮肤的博客,又或者测试任何PHP网站程序……
==============================================================
看了一下时间已经凌晨一点了=。=才写到这里。。效率啊效率=。=明后天还有考试,我先缩下水,大后天补回来。
这是第一次写这样的教程,必须有各种问题…嘛…有什么欢迎跟帖指正!
我发现这是个大坑#38t~~要花时间慢慢写了~~
这一期主要是讲一点最最最基本的网络应用概念还有让大家熟悉一下,亲手跑几个PHP的程序感受感受。
下节课开始进入正题,从语法开始(语法和其他面向对象语言差不多,不会特别详述~),把PHP几个最基本和最常用的功能讲一下。
在大概3次左右的入门贴之后,就准备分功能模块来讲PHP。比如网上博客文章那么多,分页浏览是怎么实现的;留言板怎么做;怎么用PHP上传处理图片或多媒体之类~~我也正在学习,所以大家一起教学相长吧!!
PS:纯手工土制教程。。才发现写个贴好累=。=里面一些图片是我偷懒直接网上截的~还有少部分的概念也就不用自己的话写了~大家有问题欢迎提问~
我们下节课再见!


本帖最后由 基叔 于 2013-10-12 20:12 编辑
填坑向.
三,开始我们的项目
删掉 Asteroid 目录 res 中所有的文件,复制并黏贴 Asteroid.png进去
↘ 这一步是为了将我们所用的图片等资源声明
修改src目录下的resource.js文件,如下
[mw_shl_code=javascript,true]var s_Asteroid = "res/Asteroid.png"; //小行星
var s_Ship1 = "res/Ship1.png";
var s_Ship2 = "res/Ship2.png";
var g_ressources = [
{src:s_Asteroid},
{src:s_Ship1},
{src:s_Ship2}
];[/mw_shl_code]
在 src 目录 删除 myApp.js .并新建 GameScene.js ,AsteroidSprite.js
↘ 这一步是为了将我们所用的GameScene.js等加载
在cocos2d.js 文件中 找到 appFiles 几行,并修改如下
[mw_shl_code=javascript,true]appFiles:[
'src/resource.js',
'src/GameScene.js',
'src/AsteroidSprite.js'
][/mw_shl_code]
再将main.js 最后一行改为
[mw_shl_code=javascript,true]var myApp = new cocos2dApp(GameScene);[/mw_shl_code]
#将主场景设定为我们需要的场景
最近又有空了,来填坑

本帖最后由 wis 于 2013-2-12 20:56 编辑
今天本来想写个php脚本通过键入中文来获取指定词条的内容,却发现实现起来并不太简单。#36m
百度百科词条的URL都是为 http://baike.baidu.com/view/数字.htm ,URL跟词条内容并无直接联系;而通过百度搜索获取到的都是 http://www.baidu.com/link?url=iigPGJqjJ4zBBpC8yDF8xDhiqDSn1JZjFWsHhEoSNd85PkV8Xil-wx2n0K 之类的URL,显然是被加密过的,百度的防抓取工作还做的挺充分。
上网找了下资料,发现可以对百度百科 searchword.php 的这个搜索程序入手。对 searchword.php 输入要搜索的字符(词条标题),而指定的词条存在时,它就会自动跳转到词条的真实地址。
[mw_shl_code=php,true]<?php
/*
** 以下代码适合脚本在UTF-8编码下执行,若在其它编码下执行请依照注释作出适当修改
*/
function geturl($string){
$string = iconv('utf-8', 'gbk', $string); //将字符转换成GBK编码,若文件为GBK编码可去掉本行
$encode = urlencode($string); //对字符进行URL编码
$url = 'http://baike.baidu.com/list-php/dispose/searchword.php?word=' .$encode. '&pic=1';
$get_contents = file_get_contents($url); //获取跳转页内容
$get_contents = iconv('gbk', 'utf-8', $get_contents); //将获取的网页转换成UTF-8编码,若文件为GBK编码可去掉本行
preg_match("/URL=(\S+)'>/s", $get_contents, $out); //获取跳转后URL
$real_link = 'http://baike.baidu.com' .$out[1];
return $real_link; //输出真实地址
}
echo geturl('互动百科'); //输出http://baike.baidu.com/view/1466380.htm
?>[/mw_shl_code]
运行上面的代码,脚本就会自动获取到词条的真实地址,即可接着进行抓取词条内容或其他的操作了。
同时也欢迎到我的博客http://wislab.net/参观指导噢~~37!


先预览一下最后的大家成功的结果图吧~本地的一个初始简单的wordpress、#7126!原谅我的渣UC~
Linux大神请灰过吧~@@25!!整个过程很简单、很多代码脚本都已经编写完毕了、大家要做的只是输入终端模拟器命令进行安装即可~
LZ只是从别的地方淘来的并作了亲测感觉不错拿来分享而以哦~@@22!!
为了防止分页造成的杯具、先把附件贴出来~
首先下载附件、解压出来会看到以下几个文件~把这几个货扔到爪机(平板)的SDcard根目录里(扔到其他地方也可以、我是为了方便~)
里面有很多东西、我先大概说明一下@@16!!
ddns.apk→DDNS、动态域名服务~适用于自己建服务器解析域名~不过本地调试一般就127.0.0.1或者localhost了吧、(这里顺嘴提一句有的无节操浏览器不支持解析localhost哦、)
install.sh→喜闻乐见的安装脚本
lmp.tar.bz2→Linux里常用的压缩格式、是安装必需文件(糗、、落个a、意思意思就行了)
remove.sh→顾名思义、卸载用的
sshserver.apk→远程登录。。在此教程里没啥用、不过你可以干别的、wifi局网里什么的。。。
Term.........apk→太长不打了、终端模拟器不解释了。
打开终端模拟器(PS:事先要安装“BusyBox”的说。。。)
输入以下命令:
[mw_shl_code=applescript,true]$ su
# cd /
# mount -o remount,rw /system
# tar xf /mnt/sdcard/lmp.tar.bz2
# mount -o remount,ro /system
# exit
$ exit[/mw_shl_code]
前提要有root权限啊~
安装完毕、再次打开终端模拟器、准备开启服务环境
输入以下代码
[mw_shl_code=applescript,true]$ su
# almp-start.sh
# exit
$ exit[/mw_shl_code]
要关闭环境时、把上面的start换成stop就行了
好了、打开浏览器吧(不推荐自带那货)@@20!!
输入127.0.0.1或者localhost
即可出现一个php小指针~详细参数如下二图~
接下来就是管理MySql了。。。软件本身不自带phpMyAdmin、因为那货版本更新快、自己到官网下载即可。。。
注意、phpMyAdmin默认不支持空密码登录、自己到目录里的library文件夹里的config.default.php修改空密码为true即可、或者直接添加密码也可、具体的配置文件怎么配置不在这里说了、自己谷歌百度去。。。。。@@21!!
然后从电脑里顺手拖出wordpress这萌货~放上去~很好~没有傲娇~
最后网站效果见1L图。。。
====================
鉴于手机浏览器对HTML5和CSS3的渲染效果远次于桌面版本、所以下载个php编辑器自己捅咕php得了。。。@@30!!
====================
顺嘴说一句、那个config.default.php文件修改建议先改后缀txt再用别的文本编辑器代开编辑、RE管理器自带的卡出翔了哦!@@14!!
2013年手机屏幕进入5寸时代、再加上intel也要在移动领域掺上一脚~相信未来终端会更加强大!mobile和desktop的距离在一步步缩进~#7069!
好~到这里先收工吧~这里的大神比较多~再加上俺才疏学浅、如有疏漏之处前请多多见谅~#6956!说到底我还是个新人啦啦啦~