093 supprimer is_readable

This commit is contained in:
Fred Tempez 2020-05-16 13:52:52 +02:00
parent b436b16608
commit 2fca58ab52
1 changed files with 2 additions and 4 deletions

View File

@ -25,13 +25,11 @@ class helper {
public static function urlGetContents ($url) {
if(function_exists('file_get_contents') &&
ini_get('allow_url_fopen') &&
is_readable($url) ){
ini_get('allow_url_fopen') ){
$url_get_contents_data = @file_get_contents($url); // Masque un warning éventuel
}elseif(function_exists('fopen') &&
function_exists('stream_get_contents') &&
ini_get('allow_url_fopen') &&
is_readable($url) ){
ini_get('allow_url_fopen')){
$handle = fopen ($url, "r");
$url_get_contents_data = stream_get_contents($handle);
}else{