I have tried to use gmp_sign in my file to find the sign of the value, but i getting an error like call to undefined function with fatal error.
关注
码龄 粉丝数 原力等级 --
- 被采纳
- 被点赞
- 采纳率

已采纳
致命错误:在php中调用未定义的函数gmp_sign()
收起
- 写回答
- 好问题 0 提建议
- 关注问题
微信扫一扫
点击复制链接分享
- 邀请回答
- 编辑 收藏 删除 结题
- 收藏 举报
2条回答 默认 最新
- 关注
码龄 粉丝数 原力等级 --
- 被采纳
- 被点赞
- 采纳率
dongzha5934 2017-10-09 13:35关注Is it Ubuntu/Linux? Seems like GMP is not installed on the system. Follow these steps:
Installed GMP with
apt-get install php5-gmp
Added
extension=php_gmp.so
to php.ini
本回答被题主选为最佳回答 , 对您是否有帮助呢? 本回答被专家选为最佳回答 , 对您是否有帮助呢? 本回答被题主和专家选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏举报微信扫一扫
点击复制链接分享
评论按下Enter换行,Ctrl+Enter发表内容
报告相同问题?
提交
- 2016-04-26 09:00回答 3 已采纳 Finally, I found the problem is I have installed two PHP somehow. So after I uninstall one of them
- 2016-06-01 16:55回答 1 已采纳 It was due to a plugin that was not installed. "More Fields" By Henrik Melin, Kal Ström is a seemi
- 2017-08-02 19:28回答 1 已采纳 You can prevent the direct loading of a WordPress theme file with if (!defined('ABSPATH')) die();
- 2021-01-14 14:13weixin_39834090的博客 sudo apt-get install mysql-server如果你正在运行PHP,你还需要安装MySQL模块5:sudo apt-get install php5-mysql使用“mysqli_connect”$con = mysqli_connect("127.0.0.1","root","pass","your_database");...
- 2018-12-12 05:38回答 1 已采纳 You can not access class function directly like this.You need to create class object first and the
- 2019-05-24 02:19回答 1 已采纳 Use $conn3->close(); instead of mysql_close($conn3); You are using mysqli to open connection a
- 2016-03-08 14:22回答 1 已采纳 Well, I don't know if this is the best solution, but I updated my PHP to version 5.6 and that took
- 2021-01-14 14:13李三点儿的博客 不建议在新开发中使用旧的MySQL扩展,因为它在PHP5.5.0中被废弃,在PHP 7中被删除。PHP提供了三种不同的API来连接MySQL。下面我们展示了MySQL、mysqli和PDO扩展提供的API。每个代码片段使用用户名“username”和密码...
- 2015-03-25 19:52回答 2 已采纳 You're not loading WordPress. You need to build a theme instead of putting PHP files in the root
- 2016-01-05 14:30回答 4 已采纳 To help you out here... (too long for a comment) Your require("config.php"); should contain the f
- 2016-12-08 11:41回答 2 已采纳 random_bytes() was introduced with PHP 7. As stated in the manual: Note: Although this functi
- 网络小魔女的博客 我已经在互联网上搜索了这个“调用未定义函数mysql_connect()”错误,但没有建议的程序有效…当我尝试从php访问mysql时,我收到此错误.我有PHP版本5.2.17和MySQL 5.1.68(mysql在php外部运行,我尝试创建表和数据库等)....
- 2021-04-12 15:43银币与草绳的博客 我不断收到错误PHP致命错误:调用未定义函数mysqli_stmt_get_result()。我正在使用PHP版本5.6,并在主机提供商c面板中启用了扩展mysqlind,但我不知道为什么仍然出现此错误。我进行了研究,发现每次需要启用mysqlind...
- 2021-01-27 05:58L NEO的博客 现在有2天,我正在尝试解决此问题,但不幸的是没有结果。让我告诉你我有关这个问题的...当我尝试从应用程序转到页面时,收到此致命错误:致命错误:调用未定义函数mysqli_connect()我编写的用于连接数据库的代码如...
- 2021-03-24 01:04Llenlleawg的博客 我的服务器配置:[root@server ~]# PHP -vPHP 7.0.22 (cli) (built: Aug 7 2017 16:18:27) ( NTS )[root@server ~]# Nginx -vNginx version: Nginx/1.10.2操作系统:CentOS 7.3.1611(核心)我的YUM安装细节:[root@...
- 2021-01-20 00:58艾卜娜·加沙伊的博客 我需要帮助这是什么:PHP致命错误:未捕获错误:调用未定义的函数/home/volvo/public_html/config.php:8中的mysql_connect()堆栈跟踪:#0 /home/volvo/public_html/index.php(22):include()#1 {main}在第8行的/...
- 2021-01-19 21:00正版胡一星的博客 I got these error in Codeigniter.Fatal error: Uncaught Error: Call to undefined function mysql_pconnect() inC:\xampp1\htdocs\CI\system\database\drivers\mysql\mysql_driver.php:92Stack trace: #0C:\xampp...
- 2023-09-29 13:40代码编织匠人的博客 当在PHP代码中调用一个未定义的函数时,会产生致命错误。确保正确拼写函数名称、检查函数是否已定义并在正确的作用域中使用函数。首先,确保你正确地拼写了函数名称,并且大小写与函数定义时一致。PHP对函数名称是大...
- 2021-03-17 17:29weixin_39955421的博客 我的PHP代码正在尝试使用pg_connect()连接到数据库,但出现错误消息:-“致命错误:在第82行的/var/www/website/functions.php中调用未定义的函数pg_connect()”。82行只是:$db = pg_connect($conn_string);where $...
- 2021-01-14 14:13dicong guan的博客 After I upgraded php5 to php7, I get an error 500 withPHP Fatal error: Uncaught Error: Call to undefined function mysql_connect()I put this into my apt sources in order to get ...
- 没有解决我的问题, 去提问