當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Foo::getInstance方法代碼示例

本文整理匯總了PHP中Foo::getInstance方法的典型用法代碼示例。如果您正苦於以下問題:PHP Foo::getInstance方法的具體用法?PHP Foo::getInstance怎麽用?PHP Foo::getInstance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Foo的用法示例。


在下文中一共展示了Foo::getInstance方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: bar

<?php

require_once '../odmconfig.php';
// Foo class
class Foo extends \Utility\Singleton
{
    // Bar method
    public function bar()
    {
        echo __CLASS__ . PHP_EOL;
    }
}
// Returns a single instance of Foo class
$foo = Foo::getInstance();
// Prints: Foo
$foo->bar();
開發者ID:JasonOcean,項目名稱:iOS_Interest_Group,代碼行數:16,代碼來源:singleton_ut.php

示例2: __destruct

 public function __destruct()
 {
     Foo::getInstance();
 }
開發者ID:gleamingthecube,項目名稱:php,代碼行數:4,代碼來源:Zend_tests_bug68652.php

示例3: getInstance

<?php

class Foo
{
    public $foo = 1;
    public function getInstance()
    {
        return $this;
    }
}
$objFoo = new Foo();
$objFoo->getInstance()->foo = 2;
echo $objFoo->foo;
開發者ID:andy0010,項目名稱:phpfetcher,代碼行數:13,代碼來源:return_this_test.php

示例4: testCallStackWithTwoMiddlewares

 /**
  * Test call stack with two middleware
  */
 public function testCallStackWithTwoMiddlewares()
 {
     $stack = new Mnlg\Kanda\Stack();
     $stack->add('Foo', '123')->add('Foo2');
     $stack->call();
     $called = new \ReflectionProperty($stack, 'called');
     $called->setAccessible(true);
     $this->assertTrue($called->getValue($stack));
     $foo = Foo::getInstance();
     $foo2 = Foo2::getInstance();
     $this->assertEquals($foo->param, '123');
     $this->assertEquals($foo->next, $stack);
     $this->assertEquals($foo2->next, $foo);
 }
開發者ID:mnlg,項目名稱:Kanda,代碼行數:17,代碼來源:StackTest.php

示例5: var_dump

    {
        var_dump($this);
    }
}
class Foo extends Singleton
{
}
class Bar extends Singleton
{
}
class Baz extends Bar
{
}
$u = Foo::getInstance();
$v = Bar::getInstance();
$w = Baz::getInstance();
$u->identify();
$v->identify();
$w->identify();
$x = Foo::getInstance();
$y = Bar::getInstance();
$z = Baz::getInstance();
$u->identify();
$v->identify();
$w->identify();
$x->identify();
$y->identify();
$z->identify();
?>
===DONE===
開發者ID:badlamer,項目名稱:hhvm,代碼行數:30,代碼來源:lsb_018.php

示例6: getInstance

<?php

class Foo
{
    public static function getInstance() : self
    {
        return new static();
    }
}
class Bar extends Foo
{
}
var_dump(Foo::getInstance());
var_dump(Bar::getInstance());
開發者ID:gleamingthecube,項目名稱:php,代碼行數:14,代碼來源:Zend_tests_return_types_021.php


注:本文中的Foo::getInstance方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。