摘要:
test(); //This is a Constructed method;调用方法成功 //复制(克隆)对象将导致一个 E_USER_ERROR$danli_clone = clone $danli; //Fatal error: Clone is not allow! in... 阅读全文
2015年7月15日
摘要:
cars = array(); //对变量进行初始化 $this->speedLimit = $speedLimit; } public function isStreetLegal($car) { if($car->getMaximumSpeed()... 阅读全文
摘要:
美图秀秀web开发平台 http://open.web.meitu.com/wiki/1、环境配置1.1、设置crossdomain.xml下载crossdomain.xml文件,把解压出来的crossdomain.xml文件放在您保存图片或图片来源的服务器根目录下,比如: http://examp... 阅读全文
摘要:
一、仿淘宝评论购买记录隐藏部分用户名,以下代码亲测可用。function cut_str($string, $sublen, $start = 0, $code = 'UTF-8'){ if($code == 'UTF-8') { $pa = "/[\x01-\x7f]|[... 阅读全文
摘要:
/*** 参数过滤* @param string/array $str * @return string/array */function get_field($str){ if(empty($str)){return;} $string = preg_replace('/selec... 阅读全文
摘要:
/*** 校验是否为手机号码* @param string $mobile* @return boolean*/function is_mobile($mobile) { if(preg_match('#^13[\d]{9}$|14^[0-9]\d{8}|^15[0-9]\d{8}$|^18[0-... 阅读全文
摘要:
/*** 判断是否为邮箱* @param string $email* @param boolean*/function is_email($email) { if(preg_match('/^[0-9a-z_][_.0-9a-z-]{0,32}@([0-9a-z][0-9a-z-]{0,32}\... 阅读全文
摘要:
/*** 生成随机验证码 * @param string $len 验证码长度* @return string**/function GetRandStr($len) { $chars = array( "0", "1", "2", "3", "4", "5", "6", "7", ... 阅读全文
摘要:
/*** 防止基本的XSS攻击 滤掉HTML标签* 将HTML的特殊字符转换为了HTML实体 htmlentities* 将#和%转换为他们对应的实体符号* 加上了$length参数来限制提交的数据的最大长度*/function transform_HTML($stri... 阅读全文