11

Is there any way to use PHP GMP Functions on windows without using a virtual machine?

Thanks in advance.

[http://php.net/manual/en/ref.gmp.ph]

perseusl
  • 348
  • 1
  • 14
Mark
  • 780
  • 1
  • 6
  • 17

4 Answers4

28

Now, in XAMPP that uses PHP 7.2.4 comment has another format:

;extension=gmp

Uncommenting this will make it work also!

z3nth10n
  • 2,341
  • 2
  • 25
  • 49
24

According to GMP's website:

GMP's main target platforms are Unix-type systems, such as GNU/Linux, Solaris, HP-UX, Mac OS X/Darwin, BSD, AIX, etc. It also is known to work on Windows in both 32-bit and 64-bit mode.

Also try to uncomment ;extension=php_gmp.dll in php.ini

Hope it works!

Kzy
  • 492
  • 4
  • 11
7

According to GMP's website:

GMP's main target platforms are Unix-type systems, such as GNU/Linux, Solaris, HP-UX, Mac OS X/Darwin, BSD, AIX, etc. It also is known to work on Windows in both 32-bit and 64-bit mode.

Also try to uncomment

       ;extension=php_gmp.dll in php.ini

else uncomment

       ;extension=gmp in php.ini

NOTE - Don't Forget to restart your server e+g - xampp otherwise the changes will not take effect

munazzil
  • 109
  • 2
  • 9
0

just add extension=php_gmp.dll to end of php.ini and restart your apache server .. it's work fine for me ..

reza baghiee
  • 352
  • 1
  • 7
  • 18