$subject = "my email is spark@imooc.com";
$pattern = '/([\w\s]+)\s+(\w+\@\w+\.com)/';
preg_match($pattern,$subject,$matches);
print_r($matches[2]);
echo "<br >";
print_r($matches[1]);
$pattern = '/([\w\s]+)\s+(\w+\@\w+\.com)/';
preg_match($pattern,$subject,$matches);
print_r($matches[2]);
echo "<br >";
print_r($matches[1]);
2017-07-16
学到6-4的我决定回来把慕课挖的大坑帮大家填上!
这一章的内容都要在本地测试,网页提交没有反应!不要怀疑自己的电脑和浏览器也不用试其他的浏览器了
这一章的内容都要在本地测试,网页提交没有反应!不要怀疑自己的电脑和浏览器也不用试其他的浏览器了
2017-07-16
$a='/<(\w+)>.*<(\/\1)>/';我觉得我这个答案是最好的 如果你能看懂说明这章没白学
2017-07-16
$arr = array("苹果","香蕉");
$arr0 = $arr['0'];
if( isset($arr0) ){print_r($arr0);}
$arr0 = $arr['0'];
if( isset($arr0) ){print_r($arr0);}
2017-07-15