Monday, December 9, 2013

Check curl is install or on at your server with php

<?php





///  check curl is install or on at your server with php
function iscurlinstalled()
{
    if  (in_array  ('curl', get_loaded_extensions())) {
        return true;
    }
    else{
        return false;
    }
}









?>

No comments:

Post a Comment