本文整理汇总了PHP中Unit::getStrength方法的典型用法代码示例。如果您正苦于以下问题:PHP Unit::getStrength方法的具体用法?PHP Unit::getStrength怎么用?PHP Unit::getStrength使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Unit
的用法示例。
在下文中一共展示了Unit::getStrength方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getStrength
<?php
class Army
{
public static $strength = 20;
public static function getStrength()
{
return static::$strength;
// this is late static binding
// this says if child classes have the property, use child, if not, use parent
}
}
class Battalion extends Army
{
public static $strength = 10;
}
class Unit extends Battalion
{
public static $strength = 5;
}
echo 'Army strength: ' . Army::getStrength() . '<br>';
echo 'Battalion strength: ' . Battalion::getStrength() . '<br>';
echo 'Unit strength: ' . Unit::getStrength() . '<br>';
示例2: getStrength
<?php
class Army
{
public static $strength = 20;
public static function getStrength()
{
return static::$strength;
// will check child class first then parent class
//This is called late static binding
//return self::$strength; will renter 20 for battalion
}
}
class Battalion extends Army
{
public static $strength = 10;
}
echo 'Army strength: ' . Army::getStrength() . "<br/>";
echo 'Battalion strength: ' . Battalion::getStrength() . "<br/>";
//Batallion str is 10 but it will render 20 because it will render the parent static as the default
//
class Unit extends Battalion
{
public static $strength = 5;
}
echo 'Unit strength: ' . Unit::getStrength() . "<br/>";