PHP字符串函数相关 strtolower() //将字符串转换为小写形式 strtoupper() //将字符串转换为大写形式 ucfirst() //将字符串的第一个字符转换为大写形式 ucwords() //将字符串中每一个单词的首字母转换为大写形式 substr() //字符串截取 echo substr('a... PHP 2015/07/09 围观:1413人 阅读全文
PHP获取某月有多少天某天是星期几等等 <?php $t=mktime(0,0,0,'11','22','2015'); echo date('t',$t)."<br>"; //某月有多少天 echo date('N',$t)."<br>"; //某天是星期几 $now = strtotime(date("Y... PHP 2015/06/12 围观:1615人 阅读全文
访问PHP当前页面所需的时间 $phprunstime=microtime(true); $phprunetime=microtime(true); $phpruntime=$phprunetime-$phprunstime; ... PHP 2015/05/06 围观:1952人 阅读全文
PHP汉字转拼音案例 index.php文件 <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />... PHP 2015/02/05 围观:2093人 阅读全文
wordpress英文引号变成中文引号问题 在模板functions.php文件中加入 remove_filter('the_content', 'wptexturize'); ... PHP 2013/09/16 围观:1531人 阅读全文
PHP利用smtp类发送邮件范例 index.html文件 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html ... PHP 2013/07/30 围观:2073人 阅读全文
PHP设置页面编码 PHP设置页面编码 header( "Content-type: text/html; charset=utf-8" ); ... PHP 2013/02/12 围观:1390人 阅读全文
PHP域名转向 <?php $url = $_SERVER['HTTP_HOST']; if($url == 'www.web.cn'){ echo"<script>window.location.href='http://www.web.cn/web';</script><a... PHP 2011/08/22 围观:1654人 阅读全文