静态属性速度为10,调用静态方法加速使静态属性速度为20,再调用方法返回私有静态属性的时候返回20????????、对吧
2017-06-04
数组的下标即键值在调用和赋值时可以不加引号
如:$fruit=array(apple=>"苹果",banana=>"香蕉",pineapple=>"菠萝");
也可在PHP环境中编译通过
如:$fruit=array(apple=>"苹果",banana=>"香蕉",pineapple=>"菠萝");
也可在PHP环境中编译通过
2017-06-04
$car = new Car();
Car::speedUp(); //调用静态方法加速
echo $car->getSpeed(); //调用共有方法输出当前的速度值
实例一个car对象
执行Car::speedUp()时,速度已经变成了20,所以echo $car->getSpeed();应该输出20。
Car::speedUp(); //调用静态方法加速
echo $car->getSpeed(); //调用共有方法输出当前的速度值
实例一个car对象
执行Car::speedUp()时,速度已经变成了20,所以echo $car->getSpeed();应该输出20。
2017-06-03
class Truck extends Car {
function __construct(){
$this->speed = parent::speedUp();
}
public function speedUp() {
$this->speed += 50;
return $this->speed;
}
}
function __construct(){
$this->speed = parent::speedUp();
}
public function speedUp() {
$this->speed += 50;
return $this->speed;
}
}
2017-06-01
在 PHP 中, array() 函数用于创建数组:
array();
在 PHP 中,有三种数组类型:
索引数组 - 带有数字索引的数组
关联数组 - 带有指定键的数组
多维数组 - 包含一个或多个数组的数组
PHP 关联数组
关联数组是使用您分配给数组的指定键的数组。
有两种创建关联数组的方法:
$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
或者:
$age['Peter']="35";
$age['Ben']="37";
$age['Joe']="43";
array();
在 PHP 中,有三种数组类型:
索引数组 - 带有数字索引的数组
关联数组 - 带有指定键的数组
多维数组 - 包含一个或多个数组的数组
PHP 关联数组
关联数组是使用您分配给数组的指定键的数组。
有两种创建关联数组的方法:
$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
或者:
$age['Peter']="35";
$age['Ben']="37";
$age['Joe']="43";
2017-06-01