Files
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

64 lines
1.4 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace crmeb\utils;
use think\helper\Str;
/**
*
* Class Hook
* @package crmeb\utils
*/
class Hook
{
/**
* 类名
* @var string
*/
protected $namespace;
/**
* 方法前缀
* @var string
*/
protected $prefix;
/**
* 构造方法
* Hook constructor.
* @param string $namespace
* @param string|null $prefix
*/
public function __construct(string $namespace, string $prefix = null)
{
$this->namespace = $namespace;
if ($prefix) {
$this->prefix = $prefix;
}
}
/**
* 执行挂载方法
* @param string $hookName
* @param mixed ...$arguments
* @return bool
*/
public function listen(string $hookName, ...$arguments)
{
if (class_exists($this->namespace)) {
$handle = app()->make($this->namespace);
$hookName = Str::studly(($this->prefix ?: '') . ucfirst($hookName));
if (method_exists($handle, $hookName)) {
try {
return call_user_func_array([$handle, $hookName], $arguments);
} catch (\Throwable $e) {
}
}
}
return false;
}
}