Double Possible:
L'écriture d'une fonction en phpJe suis en utilisant le code suivant
echo 'Curl: ', function_exists('curl_version') ? 'Enabled' : 'Disabled';
cela peut être activé ou désactivé
mais je voudrais faire comme fonction de dire le nom de la fonction est -
_iscurl
ensuite, je peux l'appeler comme suit importe où dans mon site web code
if (_iscurl()){ echo "this is enabled"; // will do an action }else{ echo "this is disabled"; // will do another action }
~ merci
presque la même que ma question précédente vérifier si allow_url_fopen est activé ou pas
Réponses
Trop de publicités?
amit_pandey
Points
447
<?php
// Script to test if the CURL extension is installed on this server
// Define function to test
function _is_curl_installed() {
if (in_array ('curl', get_loaded_extensions())) {
return true;
}
else {
return false;
}
}
// Ouput text to user based on test
if (_is_curl_installed()) {
echo "cURL is <span style=\"color:blue\">installed</span> on this server";
} else {
echo "cURL is NOT <span style=\"color:red\">installed</span> on this server";
}
?>
ou un simple -
<?
phpinfo();
?>
Il suffit de chercher curl
user3208213
Points
21
bikash shrestha
Points
349
Samuel Cook
Points
8358