J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.
5163 links
A simple, extensible validation library for PHP with support for filtering and validating any input array along with generating client side validation code.
Petite classe bien utile qui permet entre autre, de transformer un chiffre en texte :
$value = 12;
echo numfmt_create('fr_FR', \NumberFormatter::SPELLOUT)->format($value);
// Affichera "douze"
Une galerie d'images en php via Erase
get google fonts onto your server with just one <link>
instead of
<link href="<a href="https://fonts.googleapis.com/css?family=Nunito+Sans|Roboto"">https://fonts.googleapis.com/css?family=Nunito+Sans|Roboto"</a>; rel="stylesheet">
use
<link href="goofi.php?family=Nunito+Sans|Roboto" rel="stylesheet">
and the script will get the fonts & css and then save it onto your server. After that, no more queries will be send to google's servers anymore ;-)
Pour faire un quizz. Simple. Efficace. Comme d'hab avec Erase...
Merci.
Voici une petite fonction que j'utilise pour déterminer la version d'IE.
L'user-agent changeant tout le temps, même pour une même version, c'est plus pratique d'en extraire que les informations concernant la version.
Et oui, j'en ai encore besoin en 2018...
/**
* Méthode qui retourne le nom du navigateur utilisé et la version pour IE
*/
function getUserAgent($strict=false) {
$nav = array('Chrome','Trident','Opera','Firefox','MSIE', 'Safari');
foreach ($nav as $key => $value) {
if (strpos($_SERVER['HTTP_USER_AGENT'], $value) !== false) {
$agent = substr($_SERVER['HTTP_USER_AGENT'],strpos($_SERVER['HTTP_USER_AGENT'],'(')+1,-strpos(strrev($_SERVER['HTTP_USER_AGENT']),')')-1);
$params = explode(';',$agent);
foreach ($params as $k => $v) {
$v = trim($v);
if (strpos($v,'Trident/') !== false ) {
switch ($v) {
case 'Trident/7.0':
return 'IE11';
break;
case 'Trident/6.0':
return ($strict ? 'IE10' : 'IE9Or10');
break;
case 'Trident/5.0':
return ($strict ? 'IE9' : 'IE9Or10');
break;
case 'Trident/4.0':
return ($strict ? 'IE8' : 'IE8OrLess');
break;
}
}
if (strpos($v,'MSIE') !== false ) {
switch ($v) {
case 'MSIE 10.0':
return ($strict ? 'IE10' : 'IE9Or10');
break;
case 'MSIE 9.0':
return ($strict ? 'IE9' : 'IE9Or10');
break;
case 'MSIE 8.0':
return ($strict ? 'IE8' : 'IE8OrLess');
break;
case 'MSIE 7.0':
return ($strict ? 'IE7' : 'IE8OrLess');
break;
case 'MSIE 6.0':
return ($strict ? 'IE6' : 'IE8OrLess');
break;
}
}
}
return $value;
}
}
return $_SERVER['HTTP_USER_AGENT'];
}
Le code de la télécommande (cf. http://bookmarks.ecyseo.net/?B2-lbw )
FPDI is a collection of PHP classes facilitating developers to read pages from existing PDF documents and use them as templates in FPDF, which was developed by Olivier Plathey. Apart from a copy of FPDF, FPDI does not require any special PHP extensions.
Utiliser des tableurs (Excel, LibreOffice...) avec php.
À lire et à relire et à lire encore une fois.
Bronco, si tu passes par là...