摘要:
//对一个二维数组的某个键进行去重private function arr_unset($arr,$key){ $res = array(); foreach ($arr as $value) { ... 阅读全文
摘要:
var _areanoList={"China":"86","Albania":"355","Algeria":"213","Afghanistan":"93","Argentina":"54","United ... 阅读全文
摘要:
1.打开apache的配置文件,conf/httpd.conf :LoadModule rewrite_module modules/mod_rewrite.so把该行前的#去掉。2.搜索 AllowOverri... 阅读全文
摘要:
下载apache2.0安装包,我下的是httpd-2.2.25-win32-x86-openssl-0.9.8y.msi. 下载php的压缩包,我下载的是php-5.4.42-Win32-VC9-x86.zip,... 阅读全文
摘要:
USE mysql;UPDATE mysql.user SET PASSWORD=PASSWORD('newpassword') WHERE USER='root';FLUSH PRIVILEGES; ... 阅读全文
摘要:
wp_loginout():主题中显示“登出”链接。 clean_url():入URL并测试它的结构是否正确。如果链接前面缺少http://它可以自动添加,转换符号为正确的HTML。 wpautop() :这个... 阅读全文
摘要:
wp_mail()基本上是一个超级简单的函数,允许你通过一些简单的代码轻松地向任何人发送电子邮件。 阅读全文
摘要:
functions.php 文件的最后加上下面的代码 /** * 验证码测试 * */function rand_reg_question(){ $register_number=rand(0,1); /... 阅读全文