当前位置: 首页>>代码示例>>PHP>>正文


PHP MyClass::getCount方法代码示例

本文整理汇总了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;
开发者ID:DennisdeBest,项目名称:CoursPHP,代码行数:31,代码来源:Vehicule.php

示例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;
开发者ID:MyDreamMyWay,项目名称:HBuilder-opensource,代码行数:23,代码来源:white-spaces-preview.php


注:本文中的MyClass::getCount方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。