I wanted to use http_parse_headers
So, I've installed dependency pecl_http(2.4.3/2.2.5)
and call http_parse_headers
function with no success.
function_exists()
always fails is there anything that I'm missing here?
I'm using
CentOS 6.7 (Final)
Apache 2.4.16
PHP 5.6
Update 1
Here is the Code!
<?PHP
if(function_exists("http_parse_headers")) echo 'Function Exists';
else echo 'Function Not Exists';
?>
Update 2
here is the php.ini
......
......
extension=pdo.so
extension=pdo_sqlite.so
extension="memcache.so"
extension="raphf.so"
extension="propro.so"
extension="http.so"
extension=pdo_mysql.so
Update 3
Here is the output of phpinfo()