How to get php_phar.dll?

PHP on Windows does not include php_phar.dll , which means that

when installing the pear, I have to do it like this php -d phar.require_hash = 0 go-pear.phar, because it will not install the graphic part of the pear

I cannot use MakeGood for unit testing in Eclipse

I can not use phar at all

is there any way to get to the php_phar.dll or pear community, just decided that they would not support windows servers?

+5
source share
1 answer

The phar extension is now part of PHP that cannot be removed (statically built), so you do not need a DLL file.

Run php -mto see it.

+6
source

All Articles