php html
青春燃烧的岁月
开发向架构转型中
展开
-
php处理标题过长,用.....代替省略的方法
$sourcestr 需要修改的字符串 $cutlength限制在多少位长度内 function cut_str($sourcestr,$cutlength) { $returnstr=''; $i=0; $n=0; $str_length=strlen($sourcestr);//字符串的字节数 while (($n { $temp_str=substr($sources转载 2014-02-26 16:05:04 · 2506 阅读 · 0 评论 -
常用表单数据的验证方法
1.姓名验证 ereg("[a-zA-Z_]",$_POST['username']) 2.日期验证 ereg("[0-9]{4}-[0-9]{2}-[0-9]{2}",$_POST['birthday']) 3.E-mail地址验证 ereg("^[a-zA-Z0-9_.]+@([a-zA-Z0-9_]+.)+[a-zA-Z]{2,3}$",$_POST['email'])原创 2014-06-24 18:34:35 · 789 阅读 · 0 评论