<?php
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '/(\w+@\w+.(com|cn))/';
preg_match($pattern, $subject, $matches);
print_r($matches[0]);
利用上节课所学的东西 现学现卖~~正则好抽象,同意的点赞。
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,并输出邮箱地址
$pattern = '/(\w+@\w+.(com|cn))/';
preg_match($pattern, $subject, $matches);
print_r($matches[0]);
利用上节课所学的东西 现学现卖~~正则好抽象,同意的点赞。
2016-12-30
静态方法中,$this伪变量不允许使用。可以使用self,parent,static在内部调用静态方法与属性。
2016-12-29
相当于js中的这样 <script>
var a = 10;
function add(){
a+=10;
return a;
}
alert(a);
alert(add());
alert(a);
</script>
var a = 10;
function add(){
a+=10;
return a;
}
alert(a);
alert(add());
alert(a);
</script>
2016-12-29
imagestring 使用的是点阵字体 ,想要输中文 常用的方法是 使用imagettftext 函数
例子
$textcolor = imagecolorallocate($im,255,255,255);
$font = "C://windows/fonts/simhei.ttf";
$text='中国';
$text = mb_convert_encoding($text,'UTF-8','GB2312');
imagettftext($im,10,4,20,20,$textcolor,$font,$text);
imagejpeg($im);
例子
$textcolor = imagecolorallocate($im,255,255,255);
$font = "C://windows/fonts/simhei.ttf";
$text='中国';
$text = mb_convert_encoding($text,'UTF-8','GB2312');
imagettftext($im,10,4,20,20,$textcolor,$font,$text);
imagejpeg($im);
2016-12-28
$contents .= fread($fp, 4096);等同于$contents = $contents.fread($fp, 4096);
2016-12-28