<?php
//从数组变量$arr中,读取键为apple的值
$arr = array('apple'=>"苹果",'banana'=>"香蕉",'pineapple'=>"菠萝");
$arr0=$arr['apple'];
if( isset($arr0) ) {print_r($arr0);}
?>
//从数组变量$arr中,读取键为apple的值
$arr = array('apple'=>"苹果",'banana'=>"香蕉",'pineapple'=>"菠萝");
$arr0=$arr['apple'];
if( isset($arr0) ) {print_r($arr0);}
?>
2016-08-31
class Truck extends Car
{
public function speedUp()
{
//parent::speedUp();
//$this->speed +=50;
$this->speed=parent::speedUp() +50;
return $this->speed;
}
}
{
public function speedUp()
{
//parent::speedUp();
//$this->speed +=50;
$this->speed=parent::speedUp() +50;
return $this->speed;
}
}
2016-08-29
<?php
$str = "<ul>
<li>item 1</li>
<li>item 2</li>
</ul>";
//在这里补充代码,实现正则匹配所有li中的数据
$p="/<li>(.*)<\/li>/";
preg_match_all($p, $str, $matches);
var_dump( $matches);
print_r($matches[1]);
echo $matches[0][0];
答案,把上面复制,自己看你的提交的内容。
说的太多,不如看看现实。
$str = "<ul>
<li>item 1</li>
<li>item 2</li>
</ul>";
//在这里补充代码,实现正则匹配所有li中的数据
$p="/<li>(.*)<\/li>/";
preg_match_all($p, $str, $matches);
var_dump( $matches);
print_r($matches[1]);
echo $matches[0][0];
答案,把上面复制,自己看你的提交的内容。
说的太多,不如看看现实。
2016-08-29