當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。