mcrypt_encrypt - 使用给定参数加密明文
Warning
This function has been DEPRECATED as of PHP 7.1.0. Relying on this function is highly discouraged
Warning
This function has been DEPRECATED as of PHP 7.1.0. Relying on this function is highly discouraged
2017-11-01
cookie是通过HTTP的标头传递的, 客户端根据服务器返回的Set-Cookie来进行cookie的设置。 总感觉这句话才是重点。
2017-11-01
Cookie 存储在哪?Cookie用来干什么? PHP中如何设置与读取Cookie? PHP中Cookie具体应用在哪些方面? 如何提升Cookie的安全性?
2017-11-01
还是这种方法简洁一些
//将目标字符串$str中的文件名替换后增加em标签
$p = '/(\w+\.\w+)/';
$newStr = preg_replace($p, "<em>$1</em>",$str);
echo $newStr;
//将目标字符串$str中的文件名替换后增加em标签
$p = '/(\w+\.\w+)/';
$newStr = preg_replace($p, "<em>$1</em>",$str);
echo $newStr;
2017-11-01
不推荐这种傻方法
$p = '/\w+\.(php|css|js)/';
preg_match_all($p, $str, $matches);
foreach($matches[0] as $v){
$newStr = preg_replace($p, '<em>'.$v.'</em>', $str);
}
echo $newStr;
$p = '/\w+\.(php|css|js)/';
preg_match_all($p, $str, $matches);
foreach($matches[0] as $v){
$newStr = preg_replace($p, '<em>'.$v.'</em>', $str);
}
echo $newStr;
2017-11-01
看来只有这样写, 这个平台才会让你通过
$p = '/<li>(.*?)<\/li>/';
preg_match_all($p, $str, $matches);
print_r($matches[1]);
$p = '/<li>(.*?)<\/li>/';
preg_match_all($p, $str, $matches);
print_r($matches[1]);
2017-11-01
到底什么样的正则表达式,才算是正确?
$p = '/<[^>]+>(.*?)<\/[^>]+>/i';
preg_match_all($p, $str, $matches);
print_r($matches[1]);
$p = '/<[^>]+>(.*?)<\/[^>]+>/i';
preg_match_all($p, $str, $matches);
print_r($matches[1]);
2017-11-01
function start(){ //默认这个就是公共方法,public可写可不写
$this->speedUp();
}
$this->speedUp();
}
2017-10-31
运行结果:
运行成功,输出错误
20
错误提示:
index.php speedUp之后,速度应该等于20,再试试!直接进入下一节
运行成功,输出错误
20
错误提示:
index.php speedUp之后,速度应该等于20,再试试!直接进入下一节
2017-10-26