Retour : Page Principale > sommaire aide > sommaire aide langages

PHP


OBSOLETE (2017) - ces informations sont considérées comme n'ayant plus cours en 2017


Optimiser son site web
http://developer.yahoo.com/performance/rules.html

Comment faire ?


Bibliothèque pour réaliser des graphiques sous PHP

GĂ©rer des compteurs de page
  • Implementing efficient counters with  MySQL
  • Page Counters, A different approach...

Traduction : format XML standard TMX
L'idéal serait d'utiliser le Zend Framework pour les traductions : http://framework.zend.com/manual/fr/zend.translate.adapter.html

Les API pour le développement
- Zend Framework
- PEAR

La gestion du cache pour le Web

Utilisation des Objets Standard de Php
http://devzone.zend.com/article/2565-The-Standard-PHP-Library-SPL

Idées PHP
  • Utiliser Pear pour distribuer les logiciels
    • Do you develop a website? It is infinitely better to synchronize live and development sites using the PEAR Installer
Services Web

Bibliothèques
  • Phpmailer : Pour envoyer des mails

Créer une application PHP5 multi-taches
http://www-128.ibm.com/developerworks/library/os-php-multitask/

Accèder à un page web = http://nadeausoftware.com/articles/2007/07/php_tip_how_get_web_page_using_fopen_wrappers

15 trucs en PHP5
http://ioreader.com/2007/08/17/11-cool-things-about-php-that-most-people-overlook/

preg_split
instead of...
$str = "a,b,,c,d"
explode(",", $str);
array('a','b','','c','d')

do...
preg_split("~,~", $str, -1, PREG_SPLIT_NO_EMPTY);
array('a','b','c','d')


Robots YAHOO
http://www.tt-solutions.com/en/Products/yahoo2mbox

Inclure proprement un fichier
include(dirname(FILE)."/class.directorysearch.php");

Code pour rechercher des fichiers dans une arborescence
http://blog.makemepulse.com/2008/02/19/tips-find-a-file-in-subdirectory-with-filteriterator-in-php/

RĂ©flexion sur l'organisation du code PHP
http://www.akbkhome.com/blog.php/View/160/Another_7_deadly_sins_for_PHP.html