RSA.php 第 228 行中未捕获的 TYPO3 异常

发布于 2024-10-16 03:09:18 字数 404 浏览 1 评论 0原文

我有一个很好的用于typo3的扩展,它在PHP 5.3上失败了:

Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1: 
    PHP : Assigning the return value of new by reference is deprecated in 
    Crypt/RSA.php line 228

我尝试过:

ini_set('error_reporting','E_ALL &  ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT'); 

但是有了这个,错误、通知都消失了,并带有空白输出,其中需要一些加密输出。

I have a nicely working extension for typo3 which fails for PHP 5.3:

Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1: 
    PHP : Assigning the return value of new by reference is deprecated in 
    Crypt/RSA.php line 228

I tried:

ini_set('error_reporting','E_ALL &  ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT'); 

but with this, errors, notices are gone with blank output where some encrypted output is expected.

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

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

发布评论

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

评论(1

杀手六號 2024-10-23 03:09:18

在 Crypt/RAS/Math/GMP.php

行中。 No. 63

if (!@dl('gmp.' . PHP_SHLIB_SUFFIX) && !@dl('php_gmp.' . PHP_SHLIB_SUFFIX)) {

------------------------

bool dl ( string $library )

该函数已从 PHP 5.3 中的某些 SAPI 中删除。

参考号http://php.net/manual/en/function.dl.php

Crypt/RAS/Math/BigInt.php 和 Crypt/RAS/Math/BCMath.php 中也将进行相同的更改

in Crypt/RAS/Math/GMP.php

line. No. 63

if (!@dl('gmp.' . PHP_SHLIB_SUFFIX) && !@dl('php_gmp.' . PHP_SHLIB_SUFFIX)) {

------------------------

bool dl ( string $library )

This function has been removed from some SAPI's in PHP 5.3.

Ref. http://php.net/manual/en/function.dl.php

The same changes will be in Crypt/RAS/Math/BigInt.php and Crypt/RAS/Math/BCMath.php

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