(只能说这是可以通过的。。。)
<?php
$str = "<ul>
<li>item 1</li>
<li>item 2</li>
</ul>";
//在这里补充代码,实现正则匹配所有li中的数据
$pattern='/<li>(\w+\s\w+)<\/li>/';
preg_match_all($pattern,$str,$matches);
print_r($matches[1]);
<?php
$str = "<ul>
<li>item 1</li>
<li>item 2</li>
</ul>";
//在这里补充代码,实现正则匹配所有li中的数据
$pattern='/<li>(\w+\s\w+)<\/li>/';
preg_match_all($pattern,$str,$matches);
print_r($matches[1]);
2017-06-18
我还是喜欢用for,别问为什么因为js写多了 注意一下array的length 在php里用count来计算
2017-06-15
array("","","")[index] 类比["","",""][index]
2017-06-15
这玩意要是支持js的数组方法就给力了 支持构造函数也行啊 我自己给他封装一个
new Array()
function Array(){}
Array.prototype.XXX=function(){
alert("我是方法哈哈")
}
new Array()
function Array(){}
Array.prototype.XXX=function(){
alert("我是方法哈哈")
}
2017-06-15
new Array(苹果","香蕉","菠萝")["苹果","香蕉","菠萝"] 情不自禁把php当js处理了
2017-06-15
class Truck extends Car{
public function speedUp(){
parent::speedUp();
$this->speed += 50;
return $this->speed;
}
}
public function speedUp(){
parent::speedUp();
$this->speed += 50;
return $this->speed;
}
}
2017-06-15