本站资源收集于互联网,不提供软件存储服务,每天免费更新优质的软件以及学习资源!

PHP7.3.0下

网络教程 app 1℃

PHP7.3.0下

在 php 中使用 __callstatic() 无法获取参数?

问题描述

在使用 thinkphp 时,validate 验证始终失败,定位到如下问题:

public static function __callStatic($method, $params){ var_dump($params);exit; $class = self::make(); if (method_exists($class, $method)) { return call_user_func_array([$class, $method], $params); } else { throw new BadMethodCallException(‘method not exists:’ . __CLASS__ . ‘->’ . $method); }}

在本地 php 7.4.28 环境中,$params 可以成功获取参数,但在生产环境 php 7.3.0 中,$params 却为空,导致验证失败。

答案

这个问题是 php 7.3.0 的一个已知错误,并在 php 7.3.2 中被修复。

php bug 报告 #77339 描述了这个问题:__callstatic 可能会获取不正确的参数。

在 php 7.3.0 中,__callstatic 方法无法正确处理 class 方法的参数,导致 $params 为空。

解决方案

要解决这个问题,请升级到 php 7.3.2 或更高版本。

以上就是PHP7.3.0下__callStatic()方法参数丢失问题:如何解决Validate验证失败?的详细内容,更多请关注范的资源库其它相关文章!

转载请注明:范的资源库 » PHP7.3.0下

喜欢 (0)