Warning: Undefined array key "topic_id" in /usr/home/yyn/domains/11jn.com/public_html/mobi/list.php on line 5
Warning: Undefined variable $forum_ in /usr/home/yyn/domains/11jn.com/public_html/mobi/list.php on line 21
Warning: Undefined variable $file in /usr/home/yyn/domains/11jn.com/public_html/mobi/list.php on line 35
分类:PHP工具与代码
11-05-22
在我们用php开发网站的时候,经常会用到对表单的验证,如email格式是否合法,只允许输入数字等等。以下是一些在服务器端常用到的表单验证函数,可以直接使用
[code:1y5uqge6]function is_email($str){
//检验email
return preg_match(...
11-05-22
是不是email,是不是数字等的正则表达式,直接可以用
[code:hwhi2lvx]function is_email($str){
//检验email
return preg_match("/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/&quo...
11-05-22
//去除尾部空格
[code:3vi71qk7]$title = preg_replace("/[\s]+$/", "", $title); [/code:3vi71qk7]
//去除尾部小数点
[code:3vi71qk7]$title = preg_replace("/[\.]+$/", "&quo...
11-05-22
转载自http://xuebingnanmm.iteye.com/blog/699901
本文介绍PHP常用正则匹配函数间的区别,主要有str_replace、str_ireplace、substr_replace、preg_replace、preg_match、preg_match_all、preg_quote、preg_split、ereg_replace、eregi...
11-05-22
转载自httphtm
1. strstr: 返回一个从被判断字符开始到结束的字符串,如果没有返回值,则不包含
代码如下:
[code:3vvu7ay6]
< ?php /*如手册上的举例*/ $email = 'user@example.com'; $domain = strstr($email, '@'); ech...
11-05-21
[code:30qsmsdq]$pattern="|../soft/['\"]?([^ '\"]+)['\" ]|U";//匹配所有../soft/
$pattern="!<td>(.+)</td>!isU";//定义获取从<td&g...
11-05-21
转载自http://s.yanghao.org/program/viewdetail.php?i=20375
[code:2khj6938]$str = '<dd>dadadfadf</dd>';
$p = '|<dd.*?>(.*?)</dd>|ims';
if(preg_match($p,$str,$match)){
print_r($match);
}[/co...
11-05-10
转载自httphtml
[code:2991fob1]
<?php
$Shortcut = "[InternetShortcut]
URL=http://www.11jn.com/
IDList=
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2";
Header("Con...
11-04-16
一种是:直接改IIS设置
第二种是:直接在ASP头部加了头部申明
下面是第二种方案
ASP:在页面头加上
<%Response.AddHeader "P3P", "CP=CAO PSA OUR"%>
php:
header('P3P: CP=CAO PSA OUR');
ASP.NET
通过在代...
11-04-16
转载自httphtml
A站iframe引用其它站(B站)的内容时,B站的页面获取不到B站种下的Cookies。如果页面是来自框架的,而框架的父页和框架不是一个站点的话,客户端默认是禁止向页面附加头信息的,这样服务器端就无法识别客户端框架里面的页面...