在每个函数之前调用函数

Call function before each function

是否可以创建一个在调用每个函数时自动调用的函数? 我希望结果是这样的:

before_functions()
function_1()
before_functions()
function_2()
before_functions()
function_3()

但我想要一个具有以下功能的文件:

function before_functions(){} -> call before each function

和我调用函数的另一个文件:

function_1()
function_2()
function_3()

但是我不会在每个函数中调用before_functions..

有多种方法可以解决您的问题。其中一些已经在评论中提到了。让我们用最简单的方法来解决您的问题。

神奇的方法__call()

正如 lovelace 在评论中所说,another stack overflow article 中所述的问题已经有一个简单的解决方案。它使用 PHP 自己的魔术方法 __call()。让我们看一个简单的例子。

class Foo
{
    protected function before() : void
    {
        echo "before";
    }

    public function after() : void
    {
        echo "after";
    }

    public function __call($method, $arguments) : void
    {
        if (method_exists($this, $method)) {
            $this->before();
            return call_user_func_array(array($this, $method), $arguments);
        }
    }
}

// Testing
$class = new Foo();
$class->after(); // echoes "before->after"

如您所见,魔术方法 __call 为您的目的提供了适当的处理。首先它检查被调用的方法是否存在,然后在执行被调用的方法之前执行 before 方法。当您调用存在的 class 方法时,before 方法会自动调用。

回调方法

正如评论中还提到的,回调函数可能是一种无需处理 class 实例的可能解决方案。让我们看一下回调示例。

$callback = function()
{
    echo "before->";
}

function foo(callable $callback, $bla)
{
    $callback();
    echo $bla;
}

// example code
foo($callback, 'go and make some coffee');
// output: "before->go and make some coffee"

这种方法比使用 __call 方法更简单,因为您只需要一个可调用函数作为函数的参数。简单,嗯?

观察者模式

观察者模式随 php5 中的标准 php 库一起提供,并且更加复杂。我想对于您的用例来说太复杂了。为了保持完整,这里有一个简短的示例,说明观察者模式如何成为您问题的可用解决方案。

class Group implements SplSubject
{
    /**
     * persons in this group
     * @var \SplObjectStorage
     */
    protected $persons;

    /**
     * observer active in this group
     * @var \SplObjectStorage
     */
    protected $observers;

    /**
     * the person, which actually speaks
     * @var Person
     */
    protected $speaker;

    /**
     * Initializes our class members and sets an observer for this group
     */
    public function __construct() 
    {
        $this->persons = new \SplObjectStorage();
        $this->observers = new \SplObjectStorage();

        $onSpeakObserver = new OnSpeakObserver($who, $what);
        $this->attach($onSpeakObserver);
    }

    public function add(Person $person) {
         $this->persons->attach($person);
    }

    public function speak(Person $who, $what) {
        echo $who . " says: " . $what . "<br>";

        $this->speaker = $who;  
        $this->notify();
    } 

    public function getSpeaker() {
        return $this->speaker;
    }

    public function getGroup() {
        return $this->persons;
    }

    public function attach(\SplObserver $observer) {
        $this->observers->attach($observer);
    }

    public function detach(\SplObserver $observer) {
        $this->observers->attach($observer);
    }

    public function notify() {
        foreach ($this->observers as $observer) {
             $observer->update($this);
        }
    }
}

这是我们的基本class叫group,应该遵守。应遵守的class总是被称为"subject"。一个主题接受一个或多个观察者,这些观察者由主题的 notify 方法调用。一个小组由几个人和一个演讲者组成。总是有一个说话者,其他人是听众,当说话者说些什么时,他们可以做出反应。对于听众的反应,我们需要一个观察者。如果说话者说了什么,这个观察者就会倾听。观察者直接添加到组的构造函数中。

这个class实现了\SplSubject接口,它给我们带来了处理观察者的方法attachdetachnotify,我们附加到群组。接下来我们需要一个人和观察者本身的 classes。

class Person 
{
    protected $name = '';

    public function __construct(string $name) : void
    {
        $this->name = $name;
    }

    public function __toString() : string
    {
        return $this->name;
    }
}

一个有名字的简单人。

class OnSpeakObserver implements \SplObserver 
{
    public function update(\SplSubject $subject) 
    {
        foreach ($subject->getGroup() as $person) {
            if ($person !== $subject->getSpeaker()) {
                echo $person . " says: me!<br>";
            }
        }
    }
}

这是我们的观察者,它实现了原生的\SplObserver接口,这迫使我们使用update方法。每当群组中有人发言时,都会调用此方法。

有了这个 classes,我们就有了一个简单的观察者模式。在这个简单的例子中,观察者会在小组中的一个人每次说某事时强制做出反应。

// open a group (the subject, which is observed)
$friends = new Group();

// add some persons to our group
$sarah = new Person('Sarah');
$friends->add($sarah);    

$nicole = new Person('Nicole');
$friends->add($nicole);

$marcel = new Person('Marcel');
$friends->add($marcel);

$steffen = new Person('Steffen');
$friends->add($steffen);

// Marcel says ...
$friends->speak($marcel, 'Who likes the observer pattern?');

// result:
// Marcel says: Who likes the observer pattern?
// Sarah says: me!
// Nicole says: me!
// Steffen says: me!

你可以转这个小例子来解决你的问题。观察者可以监听您的函数的执行情况,并且每次调用您的一个函数时,观察者都可以先执行另一个函数。如本例所示,在一群人说了些什么之后,观察者只是执行。你的问题也一样。这完全取决于何时调用主题的notify方法。

如果您有任何问题,请随时提出。