PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

uopz_get_mock - Get the current mock for a class | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

uopz_get_mock

(PECL uopz 5)

uopz_get_mockGet the current mock for a class

説明

mixed uopz_get_mock ( string $class )

Returns the current mock for class.

パラメータ

class

The name of the mocked class.

返り値

Either a string containing the name of the mock, or an object, or NULL if no mock has been set.

例1 uopz_get_mock() example

<?php
class {
    public static function 
who() {
        echo 
"A";
    }
}

class 
mockA {
    public static function 
who() {
        echo 
"mockA";
    }
}

uopz_set_mock(A::class, mockA::class);
echo 
uopz_get_mock(A::class);
?>

上の例の出力は、 たとえば以下のようになります。

mockA

参考


忘却曲線を使ってこの関数を確実に記憶に残す

フォーラムで「uopz_get_mock - Get the current mock for a class」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | uopz_get_mock - Get the current mock for a class」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: