重载 PHP 函数以首先执行操作

发布于 2024-12-11 09:12:26 字数 338 浏览 0 评论 0原文

我想知道如何重载 php 中的标准函数。具体来说,我正在尝试对某些功能实施安全检查。因此,我想将 write 重新定义为:

function fwrite($handle, $string, $length = null) {
  if (doMyChecks()) {
    original_fWrite($handle, $string, $length);
  } else {
    recordViolation();
  }
}

我正在使用 CodeIgniter,因此我会将这段代码放在 index.php 中,以使其适用于通过框架调用的所有页面。

I was wondering how I could overload a standard function in php. Specifically, I'm trying to implement security checks on certain functions. As such, I would like to redefine write as:

function fwrite($handle, $string, $length = null) {
  if (doMyChecks()) {
    original_fWrite($handle, $string, $length);
  } else {
    recordViolation();
  }
}

I'm using CodeIgniter, so I would put this code in index.php to make it applicable for all pages called through the framework.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

攀登最高峰 2024-12-18 09:12:26

看来您可以使用 PHP 函数 override_function()。来自 PHP.net 站点

override_function('test', '$a,$b', 'echo "DOING TEST"; return $a * $b;');

It seems that you could use the PHP function override_function(). From the PHP.net site:

override_function('test', '$a,$b', 'echo "DOING TEST"; return $a * $b;');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文