本文整理汇总了PHP中MyClass::getCount方法的典型用法代码示例。如果您正苦于以下问题:PHP MyClass::getCount方法的具体用法?PHP MyClass::getCount怎么用?PHP MyClass::getCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MyClass
的用法示例。
在下文中一共展示了MyClass::getCount方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getCount
{
protected static $cnt = 0;
private $id;
public static function getCount()
{
return static::$cnt;
}
public function __construct()
{
parent::__construct();
$this->id = self::$cnt++;
echo 'Daughter #' . $this->id . PHP_EOL;
}
}
function spawn()
{
$rand = rand(1, 15);
$rand2 = rand(1, 15);
for ($x = 0; $x < $rand; $x++) {
$a[] = new MySon();
}
for ($x = 0; $x < $rand2; $x++) {
$b[] = new MyDaughter();
}
// for($x=0; $x<sizeof($a)+sizeof($b);$x++)
}
spawn();
echo 'Il y a ' . MyClass::getCount() . ' instance de myClass' . PHP_EOL;
echo 'Il y a ' . MyDaughter::getCount() . ' instance de myDaughter' . PHP_EOL;
echo 'Il y a ' . MySon::getCount() . ' instance de mySon' . PHP_EOL;
//echo 'Il y a ' . MyClass::getCount() . ' instance de myClass' . PHP_EOL;
示例2: array
<?php
/**
* White Spaces...
*/
for ($i = 0, $j = 0; $i < 8 && $j > 0; $i++, --$j) {
echo $i . $j;
}
$a = array(1, 2, 3, 4 => 'four');
if ($a[1] >= 5) {
switch ($a[2]) {
case 3:
return !($a[0] > 0);
break;
default:
return $a[0] > 2 ? 10 : 20;
}
}
$s = $a[2];
$c = new MyClass($s, $a);
$c->getCount();
$c = ++$s + $a[0]--;
echo "id = " . MyClass::ID;