Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5169 links 

page 5 / 11

Liste des liens

218 results tagged php x
Dachande663/PHP-Validation
2018-06-14 15:40 - permalink -

A simple, extensible validation library for PHP with support for filtering and validating any input array along with generating client side validation code.

librairie php sécurité
- https://github.com/Dachande663/PHP-Validation
Wiki Evolix - Howto PHP
2018-06-6 2:12 - permalink -
php tutoriels
- https://wiki.evolix.org/HowtoPHP
Décoder un script PHP malveillant, comment s’en protéger – Le blog de Seboss666
2018-05-16 15:6 - permalink -
php serveurs sécurité web
- https://blog.seboss666.info/2018/05/decoder-un-script-php-malveillant-comment-sen-proteger/
Serveur de développement en local, pour les dev oueb | Green Effect
2018-04-27 14:31 - permalink -

Pratique.
Merci !

Apache developpement php serveurs webdev
- https://www.green-effect.fr/serveur-de-developpement-en-local-pour-les-dev-oueb
PHP: NumberFormatter::format - Manual
2018-04-26 16:53 - permalink -

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"
fonction php
- http://php.net/manual/fr/numberformatter.format.php
Quiz Super Apero PHP 2018
2018-04-17 15:48 - permalink -

???

php
- https://quiz-apero.afup.org/
KoschtIT Image Gallery: Home
2018-04-17 11:33 - permalink -

Une galerie d'images en php via Erase

bibliothèque galerie images php
- http://koschtit.tabere.net/en/
Browser, Operating System (OS), Device, and Language Detection PHP Library
2018-04-15 21:0 - permalink -
bibliothèque php
- https://github.com/sinergi/php-browser-detector
GitHub - broncowdd/goofi: get google fonts onto your server with just one <link>
2018-03-12 11:20 - permalink -

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&quot">https://fonts.googleapis.com/css?family=Nunito+Sans|Roboto&quot</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 ;-)

astuce bronco copains font google php
- https://github.com/broncowdd/goofi
PHP Live Regex
2018-02-27 14:44 - permalink -
php regex
- http://www.phpliveregex.com/
Erase / KISS-quiz · GitLab
2018-02-23 10:37 - permalink -

Pour faire un quizz. Simple. Efficace. Comme d'hab avec Erase...
Merci.

application php quizz
- https://framagit.org/Erase/KISS-quiz
Parce que chez crosoft, ils font des blagues, les cons...
2018-02-7 12:29 - permalink -

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']; 
}
ie php version
- https://msdn.microsoft.com/en-us/library/ms537503(v=vs.85).aspx
deblan/remote-i3wm-ws - Gitnet
2018-02-6 17:36 - permalink -

Le code de la télécommande (cf. http://bookmarks.ecyseo.net/?B2-lbw )

Linux php télécommande
- https://gitnet.fr/deblan/remote-i3wm-ws/src/master
Blog - Remote i3-wm WS : ma télécommande pour bureau Debian GNU/Linux
2018-02-6 17:35 - permalink -

Génial.

À tester !

Linux php télécommande
- https://www.deblan.io/post/540/remote-i3-wm-ws-ma-telecommande-pour-bureau-debian-gnu-linux
Extract images from a web page with PHP and the Simple HTML DOM Parser - Electric Toolbox
2018-01-7 0:43 - permalink -
images libraire php
- https://www.electrictoolbox.com/extract-images-web-page-php/
FPDI 2.x
2018-01-4 12:9 - permalink -
manuel pdf php
- https://manuals.setasign.com/fpdi-manual/v2/
Import existing PDF documents into FPDF - FPDI is a free and open source PHP class | Setasign
2018-01-4 12:8 - permalink -

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.

pdf php
- https://www.setasign.com/products/fpdi/about/#p-356
operators - Reference — What does this symbol mean in PHP? - Stack Overflow
2017-12-5 17:11 - permalink -
php tutoriels
- https://stackoverflow.com/questions/3737139/reference-what-does-this-symbol-mean-in-php?rq=1
PhpSpreadsheet Documentation
2017-11-6 10:26 - permalink -

Utiliser des tableurs (Excel, LibreOffice...) avec php.

https://github.com/PHPOffice/PhpSpreadsheet

excel libreoffice php tableur
- http://phpspreadsheet.readthedocs.io/en/develop/
SoCcam's Razor: Applying the Single Responsibility Principle using a practical approach
2017-10-16 18:38 - permalink -

À lire et à relire et à lire encore une fois.
Bronco, si tu passes par là...

php tutoriels
- https://r.je/single-responsibility-principle-how-to-apply.html
page 5 / 11


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020 - Mastodon 1 - Mastodon 2