看不懂的可以先到这里学一下正则表达式,解释的很清楚。http://deerchao.net/tutorials/regex/regex.htm#greedyandlazy 不要以为我这哪来的,我也是复制的,懵逼……&…………………………8地方感到了76………………
2017-03-09
类还是别叫难的 其他的看到好快 看第3节 居然看了 一天 迷迷糊糊的…………………… 没基础的怎么活
!!!!!!!!!!!!!
!!!!!!!!!!!!!
2017-03-09
$p = '/\w+\s[0-9]/';
preg_match_all($p, $str, $matches);
print_r($matches[0]);
这样也是可以的
preg_match_all($p, $str, $matches);
print_r($matches[0]);
这样也是可以的
2017-03-08
class Truck extends Car{
public function speedUp() {
parent::speedUp();
$this->speed += 50;
}
}
public function speedUp() {
parent::speedUp();
$this->speed += 50;
}
}
2017-03-08
有三点:第一,提供免费学习的机会真的很感激,谢谢默默付出的人,常怀感恩的心,不喜勿喷
第二,学面向对象的要点基础,比如C++或者Java
第三,这节貌似题目没说清楚,正确的确实像网友说的那样
第二,学面向对象的要点基础,比如C++或者Java
第三,这节貌似题目没说清楚,正确的确实像网友说的那样
2017-03-06
class Truck extends Car{
public function __construct(){
parent::speedUp();
}
public function speedUp() {
$this->speed += 50;
return $this->speed;
}
}
public function __construct(){
parent::speedUp();
}
public function speedUp() {
$this->speed += 50;
return $this->speed;
}
}
2017-03-06