Par: Crocxx | Categorie: Inclassables
Fonction qui verifie si une url à la bonne syntaxe.
<?php
function VerifUrl($url) {
$syntaxe = "/^(http:\/\/)(w{0}|{3})\.?[a-zA-Z0-9._-]+\.+[a-zA-Z]{2,3}\$/i";
if (!preg_match($syntaxe, $url)) return true;
else return false;
}
VerifUrl('');
?>
Faire un lien | Partenaires ©2005-2008 Rudy Onfroy Tous droits réservés Contact | RSS | Plan | Haut