Fopen wrappers désactivés par mon hébergeur
Fermé
Nymphomaniaque
Messages postés
55
Date d'inscription
mercredi 22 juillet 2009
Statut
Membre
Dernière intervention
14 octobre 2012
-
1 sept. 2010 à 17:48
Nymphomaniaque Messages postés 55 Date d'inscription mercredi 22 juillet 2009 Statut Membre Dernière intervention 14 octobre 2012 - 6 sept. 2010 à 01:10
Nymphomaniaque Messages postés 55 Date d'inscription mercredi 22 juillet 2009 Statut Membre Dernière intervention 14 octobre 2012 - 6 sept. 2010 à 01:10
A voir également:
- Fopen wrappers désactivés par mon hébergeur
- Récupérer mon compte facebook désactivé - Guide
- Mon compte instagram a été désactivé - Guide
- Hébergeur d'image gratuit - Guide
- Hebergeur minecraft gratuit ouvert 24/24 - Forum Minecraft
- Mon pavé tactile est désactivé - Guide
2 réponses
Zep3k!GnO
Messages postés
2025
Date d'inscription
jeudi 22 septembre 2005
Statut
Membre
Dernière intervention
18 novembre 2015
200
2 sept. 2010 à 12:52
2 sept. 2010 à 12:52
t'as essayé en CURL ? https://www.php.net/manual/fr/book.curl.php
Nymphomaniaque
Messages postés
55
Date d'inscription
mercredi 22 juillet 2009
Statut
Membre
Dernière intervention
14 octobre 2012
4
6 sept. 2010 à 01:10
6 sept. 2010 à 01:10
oui, j'ai essayé comme ceci :
d'abord j'ai défini la fonction
Puis, je lui ai fait appel :
d'abord j'ai défini la fonction
function http_fetch_url($url, $timeout = 10) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); $data = curl_exec($ch); curl_close($ch); return $data; }
Puis, je lui ai fait appel :
$stringIp = $_SERVER['REMOTE_ADDR']; $fch=sprintf('http://api.hostip.info/?ip=%s',$stringIp); $xml=http_fetch_url($fch,10);