How can I install php-json for php 4.3.3?

I think the title is self explanatory, I am working with easyPHP 1.7 which has php 4.3.3 version which by itself does not include json support, so I found php-json on the Internet, t know how to configure it. so can someone help. thank.

+1
source share
2 answers

I really don't know easyPHP, but I suggest you upgrade to something related to the newer PHP distribution.

On the other hand: before json-support was included in PHP 5.2, I used the PEAR package Services_JSON . You can install this via PEAR or simply include a single JSON.php file that you can download. The good news is that it supports PHP 4.3.

+1
source

The JSON module for PHP 4.3 can be found in PECL . Unfortunately for you, the packages are provided as source code, so you need to compile them manually, and this is a pretty serious problem for Windows. There is another service, pecl4win with binary dlls, but it does not seem to be working right now.

PHP , PHP4 , PHP-JSON PHP 4.3. , PHP 5.3.0.

+1

Source: https://habr.com/ru/post/1759726/


All Articles