Shaare your links...
3325 links
L!NKS Retour au blog Login RSS Feed ATOM Feed Tag cloud Picture wall Daily
Links per page: 20 50 100
◄Older
page 2 / 5
Newer►
81 results for tags php x
  • Sécuriser phpmyadmin - Trucs et Conseils de Michel
    permalink -
    - http://michel-eudes.fr/blog/index.php?post/2013/09/18/S%C3%A9curiser-phpmyadmin
    php phpmyadmin
  • linux - Allow scp/ssh for www-data user - Server Fault
    permalink -
    - http://serverfault.com/questions/260756/allow-scp-ssh-for-www-data-user
    php ssh
  • Wall/Colorateur - Deblan.fr
    permalink -
    - https://wall.deblan.org/x171b/html/1/
    mjpeg php
  • Exécuter un script shell avec permission root en PHP
    permalink -
    - http://blogmotion.fr/systeme/executer-un-script-shell-avec-permission-root-en-php-1312
    exec php
  • PHP: Opérateur de contrôle d'erreur - Manual
    permalink -
    - http://www.php.net/manual/fr/language.operators.errorcontrol.php
    php
  • auto_dropzone: un script pour les uploader tous - Warrior du Dimanche
    permalink -
    - http://www.warriordudimanche.net/article225/auto-dd-upload-un-script-pour-les-uploader-tous
    drop php
  • Michel Fortin – PHP Markdown
    permalink -
    - http://michelf.ca/projects/php-markdown/
    markdown php
  • Utiliser fail2ban pour protéger votre application web
    permalink -
    - http://www.commentcamarche.net/faq/18225-utiliser-fail2ban-pour-proteger-votre-application-web
    fail2ban memo php
  • PHP performance tips - Make the Web Faster — Google Developers
    "Avoid writing naive setters and getters" Hum... oui mais bon...
    >>Encapsulation is important in any OO language, popularity has nothing to do with it. In dynamically typed languages, like PHP, it is especially useful because there is little ways to ensure a property is of a specific type without using setters.
    en plus :
         Why use getters and setters?
    *    Scalability: It's easier refactor a getter than search all the var assignments in a project code.
    *   Debugging: You can put breakpoints at setters and getters.
    *    Cleaner: Magic functions are not good solution for writting less, your IDE will not suggest the code. Better use templates for fast-writting getters.

    et sinon les magic_methods ?? (http://stackoverflow.com/questions/4478661/getter-and-setter)
    <?php
    class MyClass {
     private $firstField;
     private $secondField;

     public function __get($property) {
       if (property_exists($this, $property)) {
         return $this->$property;
       }
     }

     public function __set($property, $value) {
       if (property_exists($this, $property)) {
         $this->$property = $value;
       }

       return $this;
     }
    }
    ?>

    Ben là, y'a pas d'intérêt sauf économique... (flemme !) autant passer par des attributs public si on ne fait rien d'autre qu'un raccourci...
    Sinon, ben des templates...
    permalink -
    - https://developers.google.com/speed/articles/optimizing-php
    php
  • Problème de foreach
    donne à tes checkboxes toutes le même nom : un nom suivi de [] (par exemple : "machin[]"). Ceci se traduiera dans $_POST par un élément ($_POST['machin']) de type array. Il te suffit alors de t'assurer que cet array n'est pas vide. :)

    Et pour savoir quelles cases au juste ont été cochées, contrôle les valeurs de cet array
    permalink -
    - http://fr.openclassrooms.com/forum/sujet/probleme-de-foreach-1
    html php
  • PHP Simple HTML DOM Parser: API Reference
    permalink -
    - http://simplehtmldom.sourceforge.net/manual_api.htm
    php
  • eXtplorer - A PHP- and JavaScript- based File Manager
    gestionnaire de fichier en php
    permalink -
    - http://extplorer.sourceforge.net/
    explorateur php
  • 7 little known but super useful PHP functions | CatsWhoCode.com
    via http://blog.idleman.fr/le-bordel-de-linfo-28/#more-3521
    permalink -
    - http://www.catswhocode.com/blog/7-little-known-but-super-useful-php-functions
    php
  • Programmation orientée objet en PHP 5
    Kristen Le Liboux propose un aperçu bien fichu de la POO en PHP avec code pour appuyer le tout dispo sur github.
    NB : d'autres prez sur Javascript  (http://fr.slideshare.net/KristenLeLiboux/notions-javascript)
    et sur MVC en php (http://fr.slideshare.net/KristenLeLiboux/application-mvc)
    idem avec code d'exemple sur github
    permalink -
    - http://fr.slideshare.net/KristenLeLiboux/programmation-oriente-objet-en-php
    cours javascript mvc php
  • DocHub | Instant Documentation Search
    via https://www.ecirtam.net/links/?M0B0hg
    permalink -
    - http://dochub.io/#css/
    css dom html javascript jquery php python
  • bramus/router — A lightweight and simple object oriented PHP Router | Bram.us
    ... Un routeur php trouvé dans la galerie picturo.
    Il prend les paramètres GET, POST,... il traite et renvoie fait un rewrite d'url :
    sous la forme : index.php/param1/param2/...

    Nécessite de faire une règle de rewrite pour Apache, Nginx, lighttpd,...
    -> par ici : http://php.net/manual/fr/class.yaf-router.php

    Un autre exemple de router php sur "developpez" :
    http://www.developpez.net/forums/d1176978/php/langage/contribuez/router-pattern-mvc/

    Un routeur en 140 caractères ! (http://usman.it/php-router-140-characters/)
    et enfin quelques autres assez connus (parmi d'autres !):
    - klein : https://github.com/chriso/klein.php
    - slim : https://github.com/codeguy/Slim
    permalink -
    - http://www.bram.us/2013/04/11/bramusrouter-a-lightweight-and-simple-object-oriented-php-router/
    php
  • PHP Tutorials Examples Creating A PHP Application
    permalink -
    - http://phpro.org/tutorials/Creating-A-PHP-Application.html
    php
  • PDO: Introduction PHP Data Object Step By Step Tutorial - PHPEveryDay
    permalink -
    - http://www.phpeveryday.com/articles/PDO-Connecting-Use-PHP-Data-Object-P544.html
    pdo php sql
  • php - Creating the Singleton design pattern in PHP5 - Stack Overflow
    permalink -
    - http://stackoverflow.com/questions/203336/creating-the-singleton-design-pattern-in-php5
    php singleton
  • Design pattern : un Singleton PHP (par Bruno Vibert, Netapsys) - JDN Web & Tech
    singleton
    permalink -
    - http://www.journaldunet.com/developpeur/php/design-pattern-un-singleton-php.shtml
    php singleton
Links per page: 20 50 100
◄Older
page 2 / 5
Newer►
Shaarli 0.0.41 beta - The personal, minimalist, super-fast, no-database delicious clone. By sebsauvage.net. Theme by idleman.fr.