<?php
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,
$pattern ='/([\w]+\@[\w]+\.[\w]+)/';
preg_match($pattern,$subject,$matches);
print_r($matches[1]);
$subject = "my email is spark@imooc.com";
//在这里补充代码,实现正则匹配,
$pattern ='/([\w]+\@[\w]+\.[\w]+)/';
preg_match($pattern,$subject,$matches);
print_r($matches[1]);
2017-02-14
class Truck extends Car{
public function speedUp(){
parent::speedUp();
$this->speed += 50;
}
}
public function speedUp(){
parent::speedUp();
$this->speed += 50;
}
}
2017-02-12
这是进阶教程,不懂就是教程垃圾?不懂就去看初级教程呀,没必要骂呀。谢谢作者的无私贡献,辛苦了。现在社会浮躁的人多,这些做贡献的人难能可贵。喷子好好反思。
2017-02-11
这里的重载指当调用的函数不存在的时候,默认调用__call($name,$value)方法(两个参数不能少);同样 对于__set,__get,__isset,__unset等方法 也是当对不存在的属性操作时,对属性的操作。
2017-02-11
class Truck extends Car{
public function speedUp() {
$speed=parent::speedUp();
$this->speed += 50;
return $this->speed;
}
}
public function speedUp() {
$speed=parent::speedUp();
$this->speed += 50;
return $this->speed;
}
}
2017-02-11