PHP中类似C#的扩展方法?

2022-08-30 17:51:41

我喜欢C#中可以编写扩展方法,然后执行如下操作的方式:

string ourString = "hello";
ourString.MyExtension("another");

甚至

"hello".MyExtention("another");

有没有办法在PHP中具有类似的行为?


答案 1

如果您将所有字符串重新实现为对象,则可以这样做。

class MyString {
    ...
    function foo () { ... }
}

$str = new MyString('Bar');
$str->foo('baz');

但你真的不想这样做。PHP的核心不是面向对象的语言,字符串只是基元类型,没有方法。

如果不扩展核心引擎,语法在PHP中是不可能实现的(这不是你想要进入的东西,至少不是为此目的:))。'Bar'->foo('baz')


扩展对象的功能也没有什么比简单地编写一个接受基元的新函数更好的了。换句话说,PHP 相当于

"hello".MyExtention("another");

my_extension("hello", "another");

出于所有意图和目的,它具有相同的功能,只是语法不同。


答案 2

我在PHP中还有另一个实现>= 5.3.0,它就像Northborn Design解释的装饰器。

我们所需要的只是一个用于创建扩展的API和一个用于应用扩展的装饰器。

我们必须记住,在C#扩展方法上,它们不会破坏扩展对象的封装,并且它们不会修改对象(没有意义,相反,实现该方法会更有效)。扩展方法是纯静态的,它们接收对象的实例,如下面的示例所示(C#,来自 MSDN):

public static int WordCount(this String str)
{
    return str.Split(new char[] { ' ', '.', '?' }, 
                     StringSplitOptions.RemoveEmptyEntries).Length;
}

当然,我们在PHP中没有String对象,但是对于所有其他对象,我们可以为这种巫术创建通用装饰器。

让我们看看我的实现:

接口:

<?php

namespace Pattern\Extension;

/**
 * API for extension methods in PHP (like C#).
 */
class Extension
{
    /**
     * Apply extension to an instance.
     *
     * @param object $instance
     * @return \Pattern\Extension\ExtensionWrapper
     */
    public function __invoke($instance)
    {
        return Extension::apply($instance);
    }

    /**
     * Apply extension to an instance.
     *
     * @param object $instance
     * @return \Pattern\Extension\ExtensionWrapper
     */
    public static function apply($instance)
    {
        return new ExtensionWrapper($instance, \get_called_class());
    }

    /**
     * @param mixed $instance
     * @return boolean
     */
    public static function isExtensible($instance)
    {
        return ($instance instanceof Extensible);
    }
}
?>

装饰者:

<?php

namespace Pattern\Extension;

/**
 * Demarcate decorators that resolve the extension.
 */
interface Extensible
{
    /**
     * Verify the instance of the holded object.
     *
     * @param string $className
     * @return bool true if the instance is of the type $className, false otherwise.
     */
    public function holdsInstanceOf($className);

    /**
     * Returns the wrapped object.
     * If the wrapped object is a Extensible the returns the unwrap of it and so on.
     *
     * @return mixed
     */
    public function unwrap();

    /**
     * Magic method for the extension methods.
     *
     * @param string $name
     * @param array $args
     * @return mixed
     */
    public function __call($name, array $args);
}
?>

和通用实现:

<?php

namespace Pattern\Extension;

/**
 * Generic version for the Extensible Interface.
 */
final class ExtensionWrapper implements Extensible
{
    /**
     * @var mixed
     */
    private $that;

    /**
     * @var Extension
     */
    private $extension;

    /**
     * @param object $instance
     * @param string | Extension $extensionClass
     * @throws \InvalidArgumentException
     */
    public function __construct($instance, $extensionClass)
    {
        if (!\is_object($instance)) {
            throw new \InvalidArgumentException('ExtensionWrapper works only with objects.');
        }

        $this->that = $instance;
        $this->extension = $extensionClass;
    }

    /**
     * {@inheritDoc}
     * @see \Pattern\Extension\Extensible::__call()
     */
    public function __call($name, array $args)
    {
        $call = null;
        if (\method_exists($this->extension, '_'.$name)) {
            // this is for abstract default interface implementation
            \array_unshift($args, $this->unwrap());
            $call = array($this->extension, '_'.$name);
        } elseif (\method_exists($this->extension, $name)) {
            // this is for real implementations
            \array_unshift($args, $this->unwrap());
            $call = array($this->extension, $name);
        } else {
            // this is for real call on object
            $call = array($this->that, $name);
        }
        return \call_user_func_array($call, $args);
    }

    /**
     * {@inheritDoc}
     * @see \Pattern\Extension\Extensible::unwrap()
     */
    public function unwrap()
    {
        return (Extension::isExtensible($this->that) ? $this->that->unwrap() : $this->that);
    }

    /**
     * {@inheritDoc}
     * @see \Pattern\Extension\Extensible::holdsInstanceof()
     */
    public function holdsInstanceOf($className)
    {
        return \is_a($this->unwrap(), $className);
    }
}
?>

用途:

假设存在第三方类:

class ThirdPartyHello
{
    public function sayHello()
    {
        return "Hello";
    }
}

创建扩展程序:

use Pattern\Extension\Extension;

class HelloWorldExtension extends Extension
{
    public static function sayHelloWorld(ThirdPartyHello $that)
    {
        return $that->sayHello().' World!';
    }
}

另外:对于接口爱好者,创建一个抽象扩展:

<?php
interface HelloInterfaceExtension
{
    public function sayHelloFromInterface();
}
?>
<?php
use Pattern\Extension\Extension;

abstract class AbstractHelloExtension extends Extension implements HelloInterfaceExtension
{
    public static function _sayHelloFromInterface(ThirdPartyOrLegacyClass $that)
    {
        return $that->sayHello(). ' from Hello Interface';
    }
}
?>

然后使用它:

////////////////////////////
// You can hide this snippet in a Dependency Injection method

$thatClass = new ThirdPartyHello();

/** @var ThirdPartyHello|HelloWorldExtension $extension */
$extension = HelloWorldExtension::apply($thatClass);

//////////////////////////////////////////

$extension->sayHello(); // returns 'Hello'
$extension->sayHelloWorld(); // returns 'Hello World!'

//////////////////////////////////////////
// Abstract extension

$thatClass = new ThirdPartyHello();

/** @var ThirdPartyHello|HelloInterfaceExtension $extension */
$extension = AbstractHelloExtension::apply($instance);

$extension->sayHello(); // returns 'Hello'
$extension->sayHelloFromInterface(); // returns 'Hello from Hello Interface'

优点:

  • PHP中C#扩展方法非常相似的方式;
  • 不能直接测试扩展实例作为扩展对象的实例,但这很好,因为它更安全,因为我们可以有该类的实例未扩展的地方;
  • 作为框架的意图,以提高团队的敏捷性,你必须写得更少;
  • 扩展使用似乎是对象的一部分,但它只是装饰(也许这对团队来说很有趣,可以快速开发,但如果涉及遗留问题,将来会审查该扩展对象的实现);
  • 您可以直接使用扩展的静态方法来提高性能,但这样做会失去模拟部分代码的能力(DI被高度指示)。

缺点:

  • 扩展必须声明给对象,它不仅仅是像C#中的导入,你必须“装饰”所需的实例来为其提供扩展。
  • 无法直接测试扩展实例作为扩展对象的实例,使用API测试更多代码;
  • 由于使用了神奇的方法,性能缺陷(但是当需要性能时,我们会更改语言,重新创建核心,使用极简主义框架,如果需要,可以使用汇编程序);

这里有一个该API的要点:https://gist.github.com/tennaito/9ab4331a4b837f836ccdee78ba58dff8


推荐