略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: uopz_get_mock

2024-04-29

uopz_get_mock

(PECL uopz 5, PECL uopz 6, PECL uopz 7)

uopz_get_mockGet the current mock for a class

说明

uopz_get_mock(string $class): mixed

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

参见

add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/function.uopz-get-mock.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3