<?php
class Car {
public $speed = 0;
//增加speedUp方法,使speed加10
public function speedUp() {
$this->speed += 10;
}
}
$car = new Car();
while ($car->speed<100){
$car->speedUp();
echo $car->speed.'<br/ >';
}
class Car {
public $speed = 0;
//增加speedUp方法,使speed加10
public function speedUp() {
$this->speed += 10;
}
}
$car = new Car();
while ($car->speed<100){
$car->speedUp();
echo $car->speed.'<br/ >';
}
2016-06-03
<?php
//创建一个关联数组,关联数组的键“orange”,值是“橘子”
$fruit = array(
'orange' => '橘子'
);
echo $fruit['orange'];
?>
赋值不可以用双引号“”,必须用单引号‘’。有报错。
//创建一个关联数组,关联数组的键“orange”,值是“橘子”
$fruit = array(
'orange' => '橘子'
);
echo $fruit['orange'];
?>
赋值不可以用双引号“”,必须用单引号‘’。有报错。
2016-06-03
<?php
$fruit=array('苹果','香蕉','菠萝');
for($index=0; $index<3; $index++){
echo '<br>数组第'.$index.'值是:';
echo $fruit[$index];
}
?>
$fruit=array('苹果','香蕉','菠萝');
for($index=0; $index<3; $index++){
echo '<br>数组第'.$index.'值是:';
echo $fruit[$index];
}
?>
2016-06-03
$pattern = '/(\w+)(\.)(\w+)/';
$replace = '<em>$1$2$3</em>';
echo preg_replace($pattern,$replace,$str);
$replace = '<em>$1$2$3</em>';
echo preg_replace($pattern,$replace,$str);
2016-06-02
$p = '/\d{3,4}-\d{8}/';
这样写也可以
\d表示数字 {3,4}表示匹配3或者4次 {8}匹配8次
这样写也可以
\d表示数字 {3,4}表示匹配3或者4次 {8}匹配8次
2016-06-02
文档上的解释为:如果提供了参数 matches ,它将被填充为搜索结果。 $matches[0] 将包含完整模式匹配到的文本, $matches[1] 将包含第一个捕获子组匹配到的文本,以此类推。
文档上对于子组的说明为:子组通过圆括号分隔界定,并且它们可以嵌套。
如果正则表达式写为$p = '/\w+\s\w+/';,则没有子组,$matches[1]为空,而$matches[0]包含所匹配的文本;但是将表达式加上括号写为$p = '/(\w+\s\w+)/';,则有了子组,此时$matches[1]与$matches[0]相同。
文档上对于子组的说明为:子组通过圆括号分隔界定,并且它们可以嵌套。
如果正则表达式写为$p = '/\w+\s\w+/';,则没有子组,$matches[1]为空,而$matches[0]包含所匹配的文本;但是将表达式加上括号写为$p = '/(\w+\s\w+)/';,则有了子组,此时$matches[1]与$matches[0]相同。
2016-06-02