Manuel PHP
<<<
Manuel PHP Manuel PHP
>>>


Manuel PHP
Préface
Au moment de commencer
Référence du langage
Caractéristiques
Référence des fonctions
Annexes
Index

Manuel PHP
  1 Manuel PHP
    1.1  translators
    1.2 Copyright
  2 Préface
    2.1 Auteurs et Contributeurs
  3 Au moment de commencer
    3.1 Introduction
      3.1.1 Qu'est ce que PHP?
      3.1.2 Que peut faire PHP?
    3.2 Une introduction à PHP
      3.2.1 Le nécessaire
      3.2.2 Votre première page PHP
      3.2.3 Trucs pratiques
      3.2.4 Utiliser un formulaire
      3.2.5 Utiliser des codes anciens avec les nouvelles versions de PHP
      3.2.6 Et après?
    3.3 Installation
  4 Référence du langage
    4.1 La syntaxe de base
      4.1.1 Passer du HTML au PHP
      4.1.2 Séparation des instructions
      4.1.3 Commentaires
    4.2 Les types
      4.2.1 Introduction
      4.2.2 Booléens
        4.2.2.1 Syntaxe
        4.2.2.2 Conversion en booléen
      4.2.3 Entiers
        4.2.3.1 Syntaxe
        4.2.3.2 Dépassement de capacité des entiers
        4.2.3.3 Conversion en entiers
          4.2.3.3.1 Depuis un booléen
          4.2.3.3.2 Depuis un nombre à virgule flottante
          4.2.3.3.3 A partir de chaînes de caractères
          4.2.3.3.4 Conversion d'autres types
      4.2.4 Les nombres décimaux
        4.2.4.1 Précision des nombres décimaux
        4.2.4.2 Conversion d'un nombre décimal
      4.2.5 Les chaînes de caractères
        4.2.5.1 Syntaxe
          4.2.5.1.1 Guillemets simples
          4.2.5.1.2 Guillemets doubles
          4.2.5.1.3 Syntaxe Heredoc
          4.2.5.1.4 Traitement des variables dans les chaînes
            4.2.5.1.4.1 Syntaxe simple
            4.2.5.1.4.2 Syntaxe complexe
          4.2.5.1.5 Accès et modification des caractères d'une chaîne
        4.2.5.2 Fonctions et opérateurs pratiques
        4.2.5.3 Conversion en une chaîne de caractères
        4.2.5.4 Conversion de chaînes de caractères
      4.2.6 Les tableaux
        4.2.6.1 Syntaxe
          4.2.6.1.1 Créer un tableau array
          4.2.6.1.2 La syntaxe à crochets
        4.2.6.2 Fonctions pratiques
        4.2.6.3 A faire et à ne pas faire avec les tableaux
          4.2.6.3.1 Pourquoi est-ce que $foo[bar] est invalide ?
        4.2.6.4 Conversion en tableau
        4.2.6.5 Comparaisons de tableaux
        4.2.6.6 Exemples
          4.2.6.6.1 Collection
          4.2.6.6.2 Collection
      4.2.7 Les objets
        4.2.7.1 Initialisation d'un objet
        4.2.7.2 Conversion en objet
      4.2.8 Ressources
        4.2.8.1 Conversion en ressource
        4.2.8.2 Libérer des ressources
      4.2.9 La valeur NULL
        4.2.9.1 Syntaxe
      4.2.10 Pseudo-types utilisés dans cette documentation
        4.2.10.1 mixed
        4.2.10.2 number
        4.2.10.3 callback
      4.2.11 Définition du type
        4.2.11.1 Transtypage
    4.3 Les variables
      4.3.1 Essentiel
      4.3.2 Variables pré-définies
        4.3.2.1 Tableaux superglobaux de PHP
      4.3.3 Portée des variables
        4.3.3.1 Le mot clé global
        4.3.3.2 Utilisation des variables static
        4.3.3.3 Les références avec les variables global et static
      4.3.4 Les variables dynamiques
      4.3.5 Variables externes à PHP
        4.3.5.1 Formulaires HTML (GET et POST)
          4.3.5.1.1 Nom de variables IMAGE de type SUBMIT
        4.3.5.2 Cookies HTTP
        4.3.5.3 Cas des points dans les noms de variables
        4.3.5.4 Détermination du type des variables
    4.4 Les constantes
      4.4.1 Syntaxe
      4.4.2 Constantes magiques
    4.5 Les expressions
    4.6 Les opérateurs
      4.6.1 La précédence des opérateurs
      4.6.2 Les opérateurs arithmétiques
      4.6.3 Les opérateurs d'assignation
      4.6.4 Opérateurs sur les bits
      4.6.5 Opérateurs de comparaison
        4.6.5.1 L'opérateur ternaire
      4.6.6 Opérateur de contrôle d'erreur
      4.6.7 Opérateur d'exécution
      4.6.8 Opérateurs d'incrémentation et décrémentation
      4.6.9 Les opérateurs logiques
      4.6.10 Opérateurs de chaînes
      4.6.11 Opérateurs de tableaux
      4.6.12 Opérateur de type
    4.7 Les structures de contrôle
      4.7.1 if
      4.7.2 else
      4.7.3 elseif
      4.7.4 Syntaxe alternative
      4.7.5 while
      4.7.6 do-while
      4.7.7 for
      4.7.8 foreach
      4.7.9 break
      4.7.10 continue
      4.7.11 switch
      4.7.12 declare
        4.7.12.1 Ticks
      4.7.13 return
      4.7.14 require
      4.7.15 include
      4.7.16 require_once
      4.7.17 include_once
    4.8 Les fonctions
      4.8.1 Les fonctions
      4.8.2 Les arguments de fonction
        4.8.2.1 Passage d'arguments par référence
        4.8.2.2 Valeur par défaut des arguments
        4.8.2.3 Nombre d'arguments variable
      4.8.3 Les valeurs de retour
      4.8.4 Fonctions variables
      4.8.5 Fonctions internes
    4.9 Les classes et les objets (PHP 4)
      4.9.1 Les classes : class
      4.9.2 extends : héritage
      4.9.3 Constructeur
      4.9.4 Opérateur de contexte de classe ( :: )
      4.9.5 parent
      4.9.6 Sauvegarde d'objets - cas des sessions
      4.9.7 Les fonctions magiques __sleep et __wakeup
      4.9.8 Références dans un constructeur
      4.9.9 Comparer des objets
    4.10 Les références
      4.10.1 Qu'est ce qu'une référence?
      4.10.2 Que font les références ?
      4.10.3 Ce que les références ne sont pas
      4.10.4 Passage par référence
      4.10.5 Retourner des références
      4.10.6 Détruire une référence
      4.10.7 Repérer une référence
        4.10.7.1 Références globales
        4.10.7.2 $this
  5 Caractéristiques
    5.1 Identification HTTP avec PHP
    5.2 Cookies
    5.3 Gestion des chargements de fichier
      5.3.1 Chargements de fichiers par méthode POST
      5.3.2 Explication sur les messages d'erreurs de chargement de fichiers
      5.3.3 Erreurs classiques
      5.3.4 Télécharger plusieurs fichiers simultanément
      5.3.5 Chargement par méthode PUT
    5.4 Utilisation des fichiers à distance
    5.5 Gestion des connexions
    5.6 Connexions persistantes aux bases de données
    5.7 Safe mode
      5.7.1 Sécurité et Safe Mode
        5.7.1.1 safe_mode
        5.7.1.2 safe_mode_gid
        5.7.1.3 safe_mode_include_dir
        5.7.1.4 safe_mode_exec_dir
        5.7.1.5 safe_mode_allowed_env_vars
        5.7.1.6 safe_mode_protected_env_vars
        5.7.1.7 open_basedir
        5.7.1.8 disable_functions
        5.7.1.9 disable_classes
      5.7.2 Fonctions désactivées par le Safe Mode
    5.8 Utiliser PHP en ligne de commande
  6 Référence des fonctions
    6.1 Fonctions Apache
      6.1.1 Introduction
      6.1.2 Installation
      6.1.3 Configuration à l'exécution
        6.1.3.1 engine
        6.1.3.2 child_terminate
        6.1.3.3 last_modified
        6.1.3.4 xbithack
      6.1.4 Types de ressources
      6.1.5 Constantes pré-définies
      6.1.6 apache_child_terminate
      6.1.7 apache_get_modules
      6.1.8 apache_get_version
      6.1.9 apache_getenv
      6.1.10 apache_lookup_uri
      6.1.11 apache_note
      6.1.12 apache_request_headers
      6.1.13 apache_reset_timeout
      6.1.14 apache_response_headers
      6.1.15 apache_setenv
      6.1.16 ascii2ebcdic
      6.1.17 ebcdic2ascii
      6.1.18 getallheaders
      6.1.19 virtual
    6.2 Tableaux
      6.2.1 Introduction
      6.2.2 Pré-requis
      6.2.3 Installation
      6.2.4 Configuration à l'exécution
      6.2.5 Types de ressources
      6.2.6 Constantes pré-définies
      6.2.7 Voir aussi
      6.2.8 array_change_key_case
      6.2.9 array_chunk
      6.2.10 array_combine
      6.2.11 array_count_values
      6.2.12 array_diff_assoc
      6.2.13 array_diff_key
      6.2.14 array_diff_uassoc
      6.2.15 array_diff_ukey
      6.2.16 array_diff
      6.2.17 array_fill
      6.2.18 array_filter
      6.2.19 array_flip
      6.2.20 array_intersect_assoc
      6.2.21 array_intersect_key
      6.2.22 array_intersect_uassoc
      6.2.23 array_intersect_ukey
      6.2.24 array_intersect
      6.2.25 array_key_exists
      6.2.26 array_keys
      6.2.27 array_map
      6.2.28 array_merge_recursive
      6.2.29 array_merge
      6.2.30 array_multisort
      6.2.31 array_pad
      6.2.32 array_pop
      6.2.33 array_product
      6.2.34 array_push
      6.2.35 array_rand
      6.2.36 array_reduce
      6.2.37 array_reverse
      6.2.38 array_search
      6.2.39 array_shift
      6.2.40 array_slice
      6.2.41 array_splice
      6.2.42 array_sum
      6.2.43 array_udiff_assoc
      6.2.44 array_udiff_uassoc
      6.2.45 array_udiff
      6.2.46 array_uintersect_assoc
      6.2.47 array_uintersect_uassoc
      6.2.48 array_uintersect
      6.2.49 array_unique
      6.2.50 array_unshift
      6.2.51 array_values
      6.2.52 array_walk_recursive
      6.2.53 array_walk
      6.2.54 array
      6.2.55 arsort
      6.2.56 asort
      6.2.57 compact
      6.2.58 count
      6.2.59 current
      6.2.60 each
      6.2.61 end
      6.2.62 extract
      6.2.63 in_array
      6.2.64 key
      6.2.65 krsort
      6.2.66 ksort
      6.2.67 list
      6.2.68 natcasesort
      6.2.69 natsort
      6.2.70 next
      6.2.71 pos
      6.2.72 prev
      6.2.73 range
      6.2.74 reset
      6.2.75 rsort
      6.2.76 shuffle
      6.2.77 sizeof
      6.2.78 sort
      6.2.79 uasort
      6.2.80 uksort
      6.2.81 usort
    6.3 Calendrier
      6.3.1 Introduction
      6.3.2 Installation
      6.3.3 Configuration à l'exécution
      6.3.4 Types de ressources
      6.3.5 Constantes pré-définies
      6.3.6 cal_days_in_month
      6.3.7 cal_from_jd
      6.3.8 cal_info
      6.3.9 cal_to_jd
      6.3.10 easter_date
      6.3.11 easter_days
      6.3.12 FrenchToJD
      6.3.13 GregorianToJD
      6.3.14 JDDayOfWeek
      6.3.15 JDMonthName
      6.3.16 JDToFrench
      6.3.17 JDToGregorian
      6.3.18 jdtojewish
      6.3.19 JDToJulian
      6.3.20 jdtounix
      6.3.21 JewishToJD
      6.3.22 JulianToJD
      6.3.23 unixtojd
    6.4 Classes et Objets
      6.4.1 Introduction
      6.4.2 Pré-requis
      6.4.3 Installation
      6.4.4 Configuration à l'exécution
      6.4.5 Types de ressources
      6.4.6 Constantes pré-définies
      6.4.7 Exemples
      6.4.8 call_user_method_array
      6.4.9 call_user_method
      6.4.10 class_exists
      6.4.11 get_class_methods
      6.4.12 get_class_vars
      6.4.13 get_class
      6.4.14 get_declared_classes
      6.4.15 get_declared_interfaces
      6.4.16 get_object_vars
      6.4.17 get_parent_class
      6.4.18 interface_exists
      6.4.19 is_a
      6.4.20 is_subclass_of
      6.4.21 method_exists
      6.4.22 property_exists
    6.5 CURL
      6.5.1 Introduction
      6.5.2 Pré-requis
      6.5.3 Installation
      6.5.4 Constantes pré-définies
      6.5.5 Exemples
      6.5.6 curl_close
      6.5.7 curl_copy_handle
      6.5.8 curl_errno
      6.5.9 curl_error
      6.5.10 curl_exec
      6.5.11 curl_getinfo
      6.5.12 curl_init
      6.5.13 curl_multi_add_handle
      6.5.14 curl_multi_close
      6.5.15 curl_multi_exec
      6.5.16 curl_multi_getcontent
      6.5.17 curl_multi_info_read
      6.5.18 curl_multi_init
      6.5.19 curl_multi_remove_handle
      6.5.20 curl_multi_select
      6.5.21 curl_setopt
      6.5.22 curl_version
    6.6 Dates et heures
      6.6.1 Introduction
      6.6.2 Pré-requis
      6.6.3 Installation
      6.6.4 Configuration à l'exécution
      6.6.5 Configuration à l'exécution
        6.6.5.1 date.default_latitude
        6.6.5.2 date.default_longitude
        6.6.5.3 date.sunrise_zenith
        6.6.5.4 date.sunset_zenith
        6.6.5.5 date.timezone
      6.6.6 Types de ressources
      6.6.7 Constantes pré-définies
      6.6.8 checkdate
      6.6.9 date_default_timezone_get
      6.6.10 date_default_timezone_set
      6.6.11 date_sunrise
      6.6.12 date_sunset
      6.6.13 date
      6.6.14 getdate
      6.6.15 gettimeofday
      6.6.16 gmdate
      6.6.17 gmmktime
      6.6.18 gmstrftime
      6.6.19 idate
      6.6.20 localtime
      6.6.21 microtime
      6.6.22 mktime
      6.6.23 strftime
      6.6.24 strptime
      6.6.25 strtotime
      6.6.26 time
    6.7 dBase
      6.7.1 Introduction
      6.7.2 Installation
      6.7.3 Configuration à l'exécution
      6.7.4 Types de ressources
      6.7.5 Exemples
      6.7.6 Constantes pré-définies
      6.7.7 dbase_add_record
      6.7.8 dbase_close
      6.7.9 dbase_create
      6.7.10 dbase_delete_record
      6.7.11 dbase_get_header_info
      6.7.12 dbase_get_record_with_names
      6.7.13 dbase_get_record
      6.7.14 dbase_numfields
      6.7.15 dbase_numrecords
      6.7.16 dbase_open
      6.7.17 dbase_pack
      6.7.18 dbase_replace_record
    6.8 Accès aux dossiers
      6.8.1 Introduction
      6.8.2 Pré-requis
      6.8.3 Installation
      6.8.4 Configuration à l'exécution
      6.8.5 Types de ressources
      6.8.6 Constantes pré-définies
      6.8.7 Voir aussi
      6.8.8 chdir
      6.8.9 chroot
      6.8.10 dir
      6.8.11 closedir
      6.8.12 getcwd
      6.8.13 opendir
      6.8.14 readdir
      6.8.15 rewinddir
      6.8.16 scandir
    6.9 Gestion des erreurs
      6.9.1 Introduction
      6.9.2 Pré-requis
      6.9.3 Installation
      6.9.4 Configuration à l'exécution
        6.9.4.1 error_reporting
        6.9.4.2 display_errors
        6.9.4.3 display_startup_errors
        6.9.4.4 log_errors
        6.9.4.5 log_errors_max_len
        6.9.4.6 ignore_repeated_errors
        6.9.4.7 ignore_repeated_source
        6.9.4.8 report_memleaks
        6.9.4.9 track_errors
        6.9.4.10 html_errors
        6.9.4.11 docref_root
        6.9.4.12 docref_ext
        6.9.4.13 error_prepend_string
        6.9.4.14 error_append_string
        6.9.4.15 error_log
        6.9.4.16 warn_plus_overloading
      6.9.5 Constantes pré-définies
        6.9.5.1 Erreurs et historique
          6.9.5.1.1  e-error
          6.9.5.1.2  e-warning
          6.9.5.1.3  e-parse
          6.9.5.1.4  e-notice
          6.9.5.1.5  e-core-error
          6.9.5.1.6  e-core-warning
          6.9.5.1.7  e-compile-error
          6.9.5.1.8  e-compile-warning
          6.9.5.1.9  e-user-error
          6.9.5.1.10  e-user-warning
          6.9.5.1.11  e-user-notice
          6.9.5.1.12  e-all
          6.9.5.1.13  e-strict
      6.9.6 Exemples
      6.9.7 Voir aussi
      6.9.8 debug_backtrace
      6.9.9 debug_print_backtrace
      6.9.10 error_log
      6.9.11 error_reporting
      6.9.12 restore_error_handler
      6.9.13 restore_exception_handler
      6.9.14 set_error_handler
      6.9.15 set_exception_handler
      6.9.16 trigger_error
      6.9.17 user_error
    6.10 Système de fichiers
      6.10.1 Introduction
      6.10.2 Pré-requis
      6.10.3 Installation
      6.10.4 Configuration à l'exécution
        6.10.4.1 allow_url_fopen
        6.10.4.2 user_agent
        6.10.4.3 default_socket_timeout
        6.10.4.4 from
        6.10.4.5 auto_detect_line_endings
      6.10.5 Types de ressources
      6.10.6 Constantes pré-définies
      6.10.7 Voir aussi
      6.10.8 basename
      6.10.9 chgrp
      6.10.10 chmod
      6.10.11 chown
      6.10.12 clearstatcache
      6.10.13 copy
      6.10.14 delete
      6.10.15 dirname
      6.10.16 disk_free_space
      6.10.17 disk_total_space
      6.10.18 diskfreespace
      6.10.19 fclose
      6.10.20 feof
      6.10.21 fflush
      6.10.22 fgetc
      6.10.23 fgetcsv
      6.10.24 fgets
      6.10.25 fgetss
      6.10.26 file_exists
      6.10.27 file_get_contents
      6.10.28 file_put_contents
      6.10.29 file
      6.10.30 fileatime
      6.10.31 filectime
      6.10.32 filegroup
      6.10.33 fileinode
      6.10.34 filemtime
      6.10.35 fileowner
      6.10.36 fileperms
      6.10.37 filesize
      6.10.38 filetype
      6.10.39 flock
      6.10.40 fnmatch
      6.10.41 fopen
      6.10.42 fpassthru
      6.10.43 fputcsv
      6.10.44 fputs
      6.10.45 fread
      6.10.46 fscanf
      6.10.47 fseek
      6.10.48 fstat
      6.10.49 ftell
      6.10.50 ftruncate
      6.10.51 fwrite
      6.10.52 glob
      6.10.53 is_dir
      6.10.54 is_executable
      6.10.55 is_file
      6.10.56 is_link
      6.10.57 is_readable
      6.10.58 is_uploaded_file
      6.10.59 is_writable
      6.10.60 is_writeable
      6.10.61 link
      6.10.62 linkinfo
      6.10.63 lstat
      6.10.64 mkdir
      6.10.65 move_uploaded_file
      6.10.66 parse_ini_file
      6.10.67 pathinfo
      6.10.68 pclose
      6.10.69 popen
      6.10.70 readfile
      6.10.71 readlink
      6.10.72 realpath
      6.10.73 rename
      6.10.74 rewind
      6.10.75 rmdir
      6.10.76 set_file_buffer
      6.10.77 stat
      6.10.78 symlink
      6.10.79 tempnam
      6.10.80 tmpfile
      6.10.81 touch
      6.10.82 umask
      6.10.83 unlink
    6.11 Fonctions FTP
      6.11.1 Introduction
      6.11.2 Pré-requis
      6.11.3 Installation
      6.11.4 Configuration à l'exécution
      6.11.5 Types de ressources
      6.11.6 Constantes pré-définies
      6.11.7 Exemples
      6.11.8 ftp_alloc
      6.11.9 ftp_cdup
      6.11.10 ftp_chdir
      6.11.11 ftp_chmod
      6.11.12 ftp_close
      6.11.13 ftp_connect
      6.11.14 ftp_delete
      6.11.15 ftp_exec
      6.11.16 ftp_fget
      6.11.17 ftp_fput
      6.11.18 ftp_get_option
      6.11.19 ftp_get
      6.11.20 ftp_login
      6.11.21 ftp_mdtm
      6.11.22 ftp_mkdir
      6.11.23 ftp_nb_continue
      6.11.24 ftp_nb_fget
      6.11.25 ftp_nb_fput
      6.11.26 ftp_nb_get
      6.11.27 ftp_nb_put
      6.11.28 ftp_nlist
      6.11.29 ftp_pasv
      6.11.30 ftp_put
      6.11.31 ftp_pwd
      6.11.32 ftp_quit
      6.11.33 ftp_raw
      6.11.34 ftp_rawlist
      6.11.35 ftp_rename
      6.11.36 ftp_rmdir
      6.11.37 ftp_set_option
      6.11.38 ftp_site
      6.11.39 ftp_size
      6.11.40 ftp_ssl_connect
      6.11.41 ftp_systype
    6.12 Fonctions
      6.12.1 Introduction
      6.12.2 Pré-requis
      6.12.3 Installation
      6.12.4 Configuration à l'exécution
      6.12.5 Constantes pré-définies
      6.12.6 call_user_func_array
      6.12.7 call_user_func
      6.12.8 create_function
      6.12.9 func_get_arg
      6.12.10 func_get_args
      6.12.11 func_num_args
      6.12.12 function_exists
      6.12.13 get_defined_functions
      6.12.14 register_shutdown_function
      6.12.15 register_tick_function
      6.12.16 unregister_tick_function
    6.13 HTTP
      6.13.1 Introduction
      6.13.2 Pré-requis
      6.13.3 Installation
      6.13.4 Configuration à l'exécution
      6.13.5 Types de ressources
      6.13.6 Constantes pré-définies
      6.13.7 header
      6.13.8 headers_list
      6.13.9 headers_sent
      6.13.10 setcookie
      6.13.11 setrawcookie
    6.14 Images
      6.14.1 Introduction
      6.14.2 Pré-requis
      6.14.3 Installation
        6.14.3.1  image.configure.php3
      6.14.4 Configuration à l'exécution
      6.14.5 Types de ressources
      6.14.6 Constantes pré-définies
      6.14.7 Exemples
      6.14.8 gd_info
      6.14.9 getimagesize
      6.14.10 image_type_to_extension
      6.14.11 image_type_to_mime_type
      6.14.12 image2wbmp
      6.14.13 imagealphablending
      6.14.14 imageantialias
      6.14.15 imagearc
      6.14.16 imagechar
      6.14.17 imagecharup
      6.14.18 imagecolorallocate
      6.14.19 imagecolorallocatealpha
      6.14.20 imagecolorat
      6.14.21 imagecolorclosest
      6.14.22 imagecolorclosestalpha
      6.14.23 imagecolorclosesthwb
      6.14.24 imagecolordeallocate
      6.14.25 imagecolorexact
      6.14.26 imagecolorexactalpha
      6.14.27 imagecolormatch
      6.14.28 imagecolorresolve
      6.14.29 imagecolorresolvealpha
      6.14.30 imagecolorset
      6.14.31 imagecolorsforindex
      6.14.32 imagecolorstotal
      6.14.33 imagecolortransparent
      6.14.34 imageconvolution
      6.14.35 imagecopy
      6.14.36 imagecopymerge
      6.14.37 imagecopymergegray
      6.14.38 imagecopyresampled
      6.14.39 imagecopyresized
      6.14.40 imagecreate
      6.14.41 imagecreatefromgd
      6.14.42 imagecreatefromgd2
      6.14.43 imagecreatefromgd2part
      6.14.44 imagecreatefromgif
      6.14.45 imagecreatefromjpeg
      6.14.46 imagecreatefrompng
      6.14.47 imagecreatefromstring
      6.14.48 imagecreatefromwbmp
      6.14.49 imagecreatefromxbm
      6.14.50 imagecreatefromxpm
      6.14.51 imagecreatetruecolor
      6.14.52 imagedashedline
      6.14.53 imagedestroy
      6.14.54 imageellipse
      6.14.55 imagefill
      6.14.56 imagefilledarc
      6.14.57 imagefilledellipse
      6.14.58 imagefilledpolygon
      6.14.59 imagefilledrectangle
      6.14.60 imagefilltoborder
      6.14.61 imagefilter
      6.14.62 imagefontheight
      6.14.63 imagefontwidth
      6.14.64 imageftbbox
      6.14.65 imagefttext
      6.14.66 imagegammacorrect
      6.14.67 imagegd
      6.14.68 imagegd2
      6.14.69 imagegif
      6.14.70 imageinterlace
      6.14.71 imageistruecolor
      6.14.72 imagejpeg
      6.14.73 imagelayereffect
      6.14.74 imageline
      6.14.75 imageloadfont
      6.14.76 imagepalettecopy
      6.14.77 imagepng
      6.14.78 imagepolygon
      6.14.79 imagepsbbox
      6.14.80 imagepscopyfont
      6.14.81 imagepsencodefont
      6.14.82 imagepsextendfont
      6.14.83 imagepsfreefont
      6.14.84 imagepsloadfont
      6.14.85 imagepsslantfont
      6.14.86 imagepstext
      6.14.87 imagerectangle
      6.14.88 imagerotate
      6.14.89 imagesavealpha
      6.14.90 imagesetbrush
      6.14.91 imagesetpixel
      6.14.92 imagesetstyle
      6.14.93 imagesetthickness
      6.14.94 imagesettile
      6.14.95 imagestring
      6.14.96 imagestringup
      6.14.97 imagesx
      6.14.98 imagesy
      6.14.99 imagetruecolortopalette
      6.14.100 imagettfbbox
      6.14.101 imagettftext
      6.14.102 imagetypes
      6.14.103 imagewbmp
      6.14.104 imagexbm
      6.14.105 iptcembed
      6.14.106 iptcparse
      6.14.107 jpeg2wbmp
      6.14.108 png2wbmp
    6.15 IMAP
      6.15.1 Introduction
      6.15.2 Pré-requis
      6.15.3 Installation
      6.15.4 Configuration à l'exécution
      6.15.5 Types de ressources
      6.15.6 Constantes pré-définies
      6.15.7 Voir aussi
      6.15.8 imap_8bit
      6.15.9 imap_alerts
      6.15.10 imap_append
      6.15.11 imap_base64
      6.15.12 imap_binary
      6.15.13 imap_body
      6.15.14 imap_bodystruct
      6.15.15 imap_check
      6.15.16 imap_clearflag_full
      6.15.17 imap_close
      6.15.18 imap_createmailbox
      6.15.19 imap_delete
      6.15.20 imap_deletemailbox
      6.15.21 imap_errors
      6.15.22 imap_expunge
      6.15.23 imap_fetch_overview
      6.15.24 imap_fetchbody
      6.15.25 imap_fetchheader
      6.15.26 imap_fetchstructure
      6.15.27 imap_get_quota
      6.15.28 imap_get_quotaroot
      6.15.29 imap_getacl
      6.15.30 imap_getmailboxes
      6.15.31 imap_getsubscribed
      6.15.32 imap_header
      6.15.33 imap_headerinfo
      6.15.34 imap_headers
      6.15.35 imap_last_error
      6.15.36 imap_list
      6.15.37 imap_listmailbox
      6.15.38 imap_listscan
      6.15.39 imap_listsubscribed
      6.15.40 imap_lsub
      6.15.41 imap_mail_compose
      6.15.42 imap_mail_copy
      6.15.43 imap_mail_move
      6.15.44 imap_mail
      6.15.45 imap_mailboxmsginfo
      6.15.46 imap_mime_header_decode
      6.15.47 imap_msgno
      6.15.48 imap_num_msg
      6.15.49 imap_num_recent
      6.15.50 imap_open
      6.15.51 imap_ping
      6.15.52 imap_qprint
      6.15.53 imap_renamemailbox
      6.15.54 imap_reopen
      6.15.55 imap_rfc822_parse_adrlist
      6.15.56 imap_rfc822_parse_headers
      6.15.57 imap_rfc822_write_address
      6.15.58 imap_scanmailbox
      6.15.59 imap_search
      6.15.60 imap_set_quota
      6.15.61 imap_setacl
      6.15.62 imap_setflag_full
      6.15.63 imap_sort
      6.15.64 imap_status
      6.15.65 imap_subscribe
      6.15.66 imap_thread
      6.15.67 imap_timeout
      6.15.68 imap_uid
      6.15.69 imap_undelete
      6.15.70 imap_unsubscribe
      6.15.71 imap_utf7_decode
      6.15.72 imap_utf7_encode
      6.15.73 imap_utf8
    6.16 LDAP
      6.16.1 Introduction
      6.16.2 Pré-requis
      6.16.3 Installation
      6.16.4 Configuration à l'exécution
      6.16.5 Types de ressources
      6.16.6 Constantes pré-définies
      6.16.7 Exemples
      6.16.8 Utiliser les fonctions LDAP de PHP
      6.16.9 ldap_8859_to_t61
      6.16.10 ldap_add
      6.16.11 ldap_bind
      6.16.12 ldap_close
      6.16.13 ldap_compare
      6.16.14 ldap_connect
      6.16.15 ldap_count_entries
      6.16.16 ldap_delete
      6.16.17 ldap_dn2ufn
      6.16.18 ldap_err2str
      6.16.19 ldap_errno
      6.16.20 ldap_error
      6.16.21 ldap_explode_dn
      6.16.22 ldap_first_attribute
      6.16.23 ldap_first_entry
      6.16.24 ldap_first_reference
      6.16.25 ldap_free_result
      6.16.26 ldap_get_attributes
      6.16.27 ldap_get_dn
      6.16.28 ldap_get_entries
      6.16.29 ldap_get_option
      6.16.30 ldap_get_values_len
      6.16.31 ldap_get_values
      6.16.32 ldap_list
      6.16.33 ldap_mod_add
      6.16.34 ldap_mod_del
      6.16.35 ldap_mod_replace
      6.16.36 ldap_modify
      6.16.37 ldap_next_attribute
      6.16.38 ldap_next_entry
      6.16.39 ldap_next_reference
      6.16.40 ldap_parse_reference
      6.16.41 ldap_parse_result
      6.16.42 ldap_read
      6.16.43 ldap_rename
      6.16.44 ldap_sasl_bind
      6.16.45 ldap_search
      6.16.46 ldap_set_option
      6.16.47 ldap_set_rebind_proc
      6.16.48 ldap_sort
      6.16.49 ldap_start_tls
      6.16.50 ldap_t61_to_8859
      6.16.51 ldap_unbind
    6.17 Mail
      6.17.1 Introduction
      6.17.2 Pré-requis
      6.17.3 Installation
      6.17.4 Configuration à l'exécution
        6.17.4.1 smtp
        6.17.4.2 smtp_port
        6.17.4.3 sendmail_from
        6.17.4.4 sendmail_path
      6.17.5 Types de ressources
      6.17.6 Constantes pré-définies
      6.17.7 ezmlm_hash
      6.17.8 mail
    6.18 Mathématiques
      6.18.1 Introduction
      6.18.2 Pré-requis
      6.18.3 Installation
      6.18.4 Configuration à l'exécution
      6.18.5 Types de ressources
      6.18.6 Constantes pré-définies
      6.18.7 abs
      6.18.8 acos
      6.18.9 acosh
      6.18.10 asin
      6.18.11 asinh
      6.18.12 atan
      6.18.13 atan2
      6.18.14 atanh
      6.18.15 base_convert
      6.18.16 bindec
      6.18.17 ceil
      6.18.18 cos
      6.18.19 cosh
      6.18.20 decbin
      6.18.21 dechex
      6.18.22 decoct
      6.18.23 deg2rad
      6.18.24 exp
      6.18.25 expm1
      6.18.26 floor
      6.18.27 fmod
      6.18.28 getrandmax
      6.18.29 hexdec
      6.18.30 hypot
      6.18.31 is_finite
      6.18.32 is_infinite
      6.18.33 is_nan
      6.18.34 lcg_value
      6.18.35 log
      6.18.36 log10
      6.18.37 log1p
      6.18.38 max
      6.18.39 min
      6.18.40 mt_getrandmax
      6.18.41 mt_rand
      6.18.42 mt_srand
      6.18.43 octdec
      6.18.44 pi
      6.18.45 pow
      6.18.46 rad2deg
      6.18.47 rand
      6.18.48 round
      6.18.49 sin
      6.18.50 sinh
      6.18.51 sqrt
      6.18.52 srand
      6.18.53 tan
      6.18.54 tanh
    6.19 Chaînes de caractères multi-octets
      6.19.1 Introduction
        6.19.1.1 Pré-requis de l'encodage en PHP
      6.19.2 Installation
      6.19.3 Configuration à l'exécution
        6.19.3.1 mbstring.language
        6.19.3.2 mbstring.encoding_translation
        6.19.3.3 mbstring.internal_encoding
        6.19.3.4 mbstring.http_input
        6.19.3.5 mbstring.http_output
        6.19.3.6 mbstring.detect_order
        6.19.3.7 mbstring.substitute_character
        6.19.3.8 mbstring.func_overload
      6.19.4 Types de ressources
      6.19.5 Constantes pré-définies
      6.19.6 Entrées/Sorties HTTP
      6.19.7 Jeux de caractères supportés
      6.19.8 Exploitation des chaînes multi-octets en PHP
      6.19.9 Cas des caractères japonais
      6.19.10 Références
      6.19.11 Jeux de caractères supportés
      6.19.12 mb_convert_case
      6.19.13 mb_convert_encoding
      6.19.14 mb_convert_kana
      6.19.15 mb_convert_variables
      6.19.16 mb_decode_mimeheader
      6.19.17 mb_decode_numericentity
      6.19.18 mb_detect_encoding
      6.19.19 mb_detect_order
      6.19.20 mb_encode_mimeheader
      6.19.21 mb_encode_numericentity
      6.19.22 mb_ereg_match
      6.19.23 mb_ereg_replace
      6.19.24 mb_ereg_search_getpos
      6.19.25 mb_ereg_search_getregs
      6.19.26 mb_ereg_search_init
      6.19.27 mb_ereg_search_pos
      6.19.28 mb_ereg_search_regs
      6.19.29 mb_ereg_search_setpos
      6.19.30 mb_ereg_search
      6.19.31 mb_ereg
      6.19.32 mb_eregi_replace
      6.19.33 mb_eregi
      6.19.34 mb_get_info
      6.19.35 mb_http_input
      6.19.36 mb_http_output
      6.19.37 mb_internal_encoding
      6.19.38 mb_language
      6.19.39 mb_list_encodings
      6.19.40 mb_output_handler
      6.19.41 mb_parse_str
      6.19.42 mb_preferred_mime_name
      6.19.43 mb_regex_encoding
      6.19.44 mb_regex_set_options
      6.19.45 mb_send_mail
      6.19.46 mb_split
      6.19.47 mb_strcut
      6.19.48 mb_strimwidth
      6.19.49 mb_strlen
      6.19.50 mb_strpos
      6.19.51 mb_strrpos
      6.19.52 mb_strtolower
      6.19.53 mb_strtoupper
      6.19.54 mb_strwidth
      6.19.55 mb_substitute_character
      6.19.56 mb_substr_count
      6.19.57 mb_substr
    6.20 chiffrement mcrypt
      6.20.1 Introduction
      6.20.2 Pré-requis
      6.20.3 Installation
      6.20.4 Configuration à l'exécution
      6.20.5 Types de ressources
      6.20.6 Constantes pré-définies
      6.20.7 Mcrypt ciphers
      6.20.8 Exemples
      6.20.9 mcrypt_cbc
      6.20.10 mcrypt_cfb
      6.20.11 mcrypt_create_iv
      6.20.12 mcrypt_decrypt
      6.20.13 mcrypt_ecb
      6.20.14 mcrypt_enc_get_algorithms_name
      6.20.15 mcrypt_enc_get_block_size
      6.20.16 mcrypt_enc_get_iv_size
      6.20.17 mcrypt_enc_get_key_size
      6.20.18 mcrypt_enc_get_modes_name
      6.20.19 mcrypt_enc_get_supported_key_sizes
      6.20.20 mcrypt_enc_is_block_algorithm_mode
      6.20.21 mcrypt_enc_is_block_algorithm
      6.20.22 mcrypt_enc_is_block_mode
      6.20.23 mcrypt_enc_self_test
      6.20.24 mcrypt_encrypt
      6.20.25 mcrypt_generic_deinit
      6.20.26 mcrypt_generic_end
      6.20.27 mcrypt_generic_init
      6.20.28 mcrypt_generic
      6.20.29 mcrypt_get_block_size
      6.20.30 mcrypt_get_cipher_name
      6.20.31 mcrypt_get_iv_size
      6.20.32 mcrypt_get_key_size
      6.20.33 mcrypt_list_algorithms
      6.20.34 mcrypt_list_modes
      6.20.35 mcrypt_module_close
      6.20.36 mcrypt_module_get_algo_block_size
      6.20.37 mcrypt_module_get_algo_key_size
      6.20.38 mcrypt_module_get_supported_key_sizes
      6.20.39 mcrypt_module_is_block_algorithm_mode
      6.20.40 mcrypt_module_is_block_algorithm
      6.20.41 mcrypt_module_is_block_mode
      6.20.42 mcrypt_module_open
      6.20.43 mcrypt_module_self_test
      6.20.44 mcrypt_ofb
      6.20.45 mdecrypt_generic
    6.21 Ming pour Flash
      6.21.1 Introduction
      6.21.2 Pré-requis
      6.21.3 Installation
      6.21.4 Configuration à l'exécution
      6.21.5 Types de ressources
      6.21.6 Constantes pré-définies
      6.21.7 Classes pré-définies
      6.21.8 ming_keypress
      6.21.9 ming_setcubicthreshold
      6.21.10 ming_setscale
      6.21.11 ming_useConstants
      6.21.12 ming_useswfversion
      6.21.13 SWFAction
      6.21.14 SWFBitmap->getHeight
      6.21.15 SWFBitmap->getWidth
      6.21.16 SWFBitmap
      6.21.17 SWFbutton->addAction
      6.21.18 SWFButton::addASound
      6.21.19 SWFbutton->addShape
      6.21.20 SWFbutton->setAction
      6.21.21 SWFbutton->setdown
      6.21.22 SWFbutton->setHit
      6.21.23 SWFButton::setMenu
      6.21.24 SWFbutton->setOver
      6.21.25 SWFbutton->setUp
      6.21.26 SWFbutton
      6.21.27 SWFDisplayItem::addAction
      6.21.28 SWFDisplayItem->addColor
      6.21.29 SWFDisplayItem::endMask
      6.21.30 SWFDisplayItem::getRot
      6.21.31 SWFDisplayItem::getX
      6.21.32 SWFDisplayItem::getXScale
      6.21.33 SWFDisplayItem::getXSkew
      6.21.34 SWFDisplayItem::getY
      6.21.35 SWFDisplayItem::getYScale
      6.21.36 SWFDisplayItem::getYSkew
      6.21.37 SWFDisplayItem->move
      6.21.38 SWFDisplayItem->moveTo
      6.21.39 SWFDisplayItem->multColor
      6.21.40 SWFDisplayItem->remove
      6.21.41 SWFDisplayItem->Rotate
      6.21.42 SWFDisplayItem->rotateTo
      6.21.43 SWFDisplayItem->scale
      6.21.44 SWFDisplayItem->scaleTo
      6.21.45 SWFDisplayItem->setDepth
      6.21.46 SWFDisplayItem::setMaskLevel
      6.21.47 SWFDisplayItem::setMatrix
      6.21.48 SWFDisplayItem->setName
      6.21.49 SWFDisplayItem->setRatio
      6.21.50 SWFDisplayItem->skewX
      6.21.51 SWFDisplayItem->skewXTo
      6.21.52 SWFDisplayItem->skewY
      6.21.53 SWFDisplayItem->skewYTo
      6.21.54 SWFFill->moveTo
      6.21.55 SWFFill->rotateTo
      6.21.56 SWFFill->scaleTo
      6.21.57 SWFFill->skewXTo
      6.21.58 SWFFill->skewYTo
      6.21.59 SWFFill
      6.21.60 SWFFont::getAscent
      6.21.61 SWFFont::getDescent
      6.21.62 SWFFont::getLeading
      6.21.63 SWFFont::getShape
      6.21.64 SWFFont::getUTF8Width
      6.21.65 swffont->getwidth
      6.21.66 SWFFont
      6.21.67 SWFFontChar::addChars
      6.21.68 SWFFontChar::addUTF8Chars
      6.21.69 SWFGradient->addEntry
      6.21.70 SWFGradient
      6.21.71 SWFMorph->getshape1
      6.21.72 SWFMorph->getshape2
      6.21.73 SWFMorph
      6.21.74 SWFMovie->add
      6.21.75 SWFMovie::addExport
      6.21.76 SWFMovie::addFont
      6.21.77 SWFMovie::importChar
      6.21.78 SWFMovie::importFont
      6.21.79 SWFMovie::labelFrame
      6.21.80 SWFMovie->nextframe
      6.21.81 SWFMovie->output
      6.21.82 swfmovie->remove
      6.21.83 SWFMovie->save
      6.21.84 SWFMovie::saveToFile
      6.21.85 SWFMovie->setbackground
      6.21.86 SWFMovie->setdimension
      6.21.87 SWFMovie->setframes
      6.21.88 SWFMovie->setrate
      6.21.89 SWFMovie::startSound
      6.21.90 SWFMovie::stopSound
      6.21.91 SWFMovie->streammp3
      6.21.92 SWFMovie::writeExports
      6.21.93 SWFMovie
      6.21.94 SWFPrebuiltClip
      6.21.95 SWFShape->addFill
      6.21.96 SWFShape::drawArc
      6.21.97 SWFShape::drawCircle
      6.21.98 SWFShape::drawCubic
      6.21.99 SWFShape::drawCubicTo
      6.21.100 SWFShape->drawCurve
      6.21.101 SWFShape->drawCurveTo
      6.21.102 SWFShape::drawGlyph
      6.21.103 SWFShape->drawLine
      6.21.104 SWFShape->drawLineTo
      6.21.105 SWFShape->movePen
      6.21.106 SWFShape->movePenTo
      6.21.107 SWFShape->setLeftFill
      6.21.108 SWFShape->setLine
      6.21.109 SWFShape->setRightFill
      6.21.110 SWFShape
      6.21.111 SWFSound
      6.21.112 SWFSoundInstance::loopCount
      6.21.113 SWFSoundInstance::loopInPoint
      6.21.114 SWFSoundInstance::loopOutPoint
      6.21.115 SWFSoundInstance::noMultiple
      6.21.116 swfsprite->add
      6.21.117 SWFSprite::labelFrame
      6.21.118 SWFSprite->nextframe
      6.21.119 SWFSprite->remove
      6.21.120 SWFSprite->setframes
      6.21.121 SWFSprite::startSound
      6.21.122 SWFSprite::stopSound
      6.21.123 SWFSprite
      6.21.124 SWFText->addString
      6.21.125 SWFText::addUTF8String
      6.21.126 SWFText::getAscent
      6.21.127 SWFText::getDescent
      6.21.128 SWFText::getLeading
      6.21.129 SWFText::getUTF8Width
      6.21.130 SWFText->getWidth
      6.21.131 SWFText->moveTo
      6.21.132 SWFText->setColor
      6.21.133 SWFText->setFont
      6.21.134 SWFText->setHeight
      6.21.135 SWFText->setSpacing
      6.21.136 SWFText
      6.21.137 SWFTextField::addChars
      6.21.138 SWFTextField->addstring
      6.21.139 SWFTextField->align
      6.21.140 SWFTextField->setbounds
      6.21.141 SWFTextField->setcolor
      6.21.142 SWFTextField->setFont
      6.21.143 SWFTextField->setHeight
      6.21.144 SWFTextField->setindentation
      6.21.145 SWFTextField->setLeftMargin
      6.21.146 SWFTextField->setLineSpacing
      6.21.147 SWFTextField->setMargins
      6.21.148 SWFTextField->setname
      6.21.149 SWFTextField::setPadding
      6.21.150 SWFTextField->setrightMargin
      6.21.151 SWFTextField
      6.21.152 SWFVideoStream::getNumFrames
      6.21.153 SWFVideoStream::setDimension
      6.21.154 SWFVideoStream
    6.22 Fonctions diverses
      6.22.1 Introduction
      6.22.2 Pré-requis
      6.22.3 Installation
      6.22.4 Configuration à l'exécution
        6.22.4.1 ignore_user_abort
        6.22.4.2 highlight.bg
        6.22.4.3 browscap
      6.22.5 Types de ressources
      6.22.6 Constantes pré-définies
      6.22.7 connection_aborted
      6.22.8 connection_status
      6.22.9 connection_timeout
      6.22.10 constant
      6.22.11 define
      6.22.12 defined
      6.22.13 die
      6.22.14 eval
      6.22.15 exit
      6.22.16 get_browser
      6.22.17 __halt_compiler
      6.22.18 highlight_file
      6.22.19 highlight_string
      6.22.20 ignore_user_abort
      6.22.21 pack
      6.22.22 php_check_syntax
      6.22.23 php_strip_whitespace
      6.22.24 show_source
      6.22.25 sleep
      6.22.26 time_nanosleep
      6.22.27 time_sleep_until
      6.22.28 uniqid
      6.22.29 unpack
      6.22.30 usleep
    6.23 mnoGoSearch
      6.23.1 Introduction
      6.23.2 Pré-requis
      6.23.3 Installation
      6.23.4 Configuration à l'exécution
      6.23.5 Types de ressources
      6.23.6 Constantes pré-définies
      6.23.7 udm_add_search_limit
      6.23.8 udm_alloc_agent_array
      6.23.9 udm_alloc_agent
      6.23.10 udm_api_version
      6.23.11 udm_cat_list
      6.23.12 udm_cat_path
      6.23.13 udm_check_charset
      6.23.14 udm_check_stored
      6.23.15 udm_clear_search_limits
      6.23.16 udm_close_stored
      6.23.17 udm_crc32
      6.23.18 udm_errno
      6.23.19 udm_error
      6.23.20 udm_find
      6.23.21 udm_free_agent
      6.23.22 udm_free_ispell_data
      6.23.23 udm_free_res
      6.23.24 udm_get_doc_count
      6.23.25 udm_get_res_field
      6.23.26 udm_get_res_param
      6.23.27 udm_hash32
      6.23.28 udm_load_ispell_data
      6.23.29 udm_open_stored
      6.23.30 udm_set_agent_param
    6.24 MySQL
      6.24.1 Introduction
      6.24.2 Pré-requis
      6.24.3 Installation
        6.24.3.1  mysql.configure
        6.24.3.2 Installation sur les systèmes Linux
        6.24.3.3 Installation sur les systèmes Windows
        6.24.3.4 Notes sur l'installation de MySQL
      6.24.4 Configuration à l'exécution
        6.24.4.1 mysql.allow_persistent
        6.24.4.2 mysql.max_persistent
        6.24.4.3 mysql.max_links
        6.24.4.4 mysql.trace_mode
        6.24.4.5 mysql.default_port
        6.24.4.6 mysql.default_socket
        6.24.4.7 mysql.default_host
        6.24.4.8 mysql.default_user
        6.24.4.9 mysql.default_password
        6.24.4.10 mysql.connect_timeout
      6.24.5 Types de ressources
      6.24.6 Constantes pré-définies
        6.24.6.1 Constantes client MySQL
      6.24.7 Notes
      6.24.8 Exemples
      6.24.9 mysql_affected_rows
      6.24.10 mysql_change_user
      6.24.11 mysql_client_encoding
      6.24.12 mysql_close
      6.24.13 mysql_connect
      6.24.14 mysql_create_db
      6.24.15 mysql_data_seek
      6.24.16 mysql_db_name
      6.24.17 mysql_db_query
      6.24.18 mysql_drop_db
      6.24.19 mysql_errno
      6.24.20 mysql_error
      6.24.21 mysql_escape_string
      6.24.22 mysql_fetch_array
      6.24.23 mysql_fetch_assoc
      6.24.24 mysql_fetch_field
      6.24.25 mysql_fetch_lengths
      6.24.26 mysql_fetch_object
      6.24.27 mysql_fetch_row
      6.24.28 mysql_field_flags
      6.24.29 mysql_field_len
      6.24.30 mysql_field_name
      6.24.31 mysql_field_seek
      6.24.32 mysql_field_table
      6.24.33 mysql_field_type
      6.24.34 mysql_free_result
      6.24.35 mysql_get_client_info
      6.24.36 mysql_get_host_info
      6.24.37 mysql_get_proto_info
      6.24.38 mysql_get_server_info
      6.24.39 mysql_info
      6.24.40 mysql_insert_id
      6.24.41 mysql_list_dbs
      6.24.42 mysql_list_fields
      6.24.43 mysql_list_processes
      6.24.44 mysql_list_tables
      6.24.45 mysql_num_fields
      6.24.46 mysql_num_rows
      6.24.47 mysql_pconnect
      6.24.48 mysql_ping
      6.24.49 mysql_query
      6.24.50 mysql_real_escape_string
      6.24.51 mysql_result
      6.24.52 mysql_select_db
      6.24.53 mysql_stat
      6.24.54 mysql_tablename
      6.24.55 mysql_thread_id
      6.24.56 mysql_unbuffered_query
    6.25 Réseau
      6.25.1 Introduction
      6.25.2 Pré-requis
      6.25.3 Installation
      6.25.4 Configuration à l'exécution
        6.25.4.1 define_syslog_variables
      6.25.5 Types de ressources
      6.25.6 Constantes pré-définies
      6.25.7 checkdnsrr
      6.25.8 closelog
      6.25.9 debugger_off
      6.25.10 debugger_on
      6.25.11 define_syslog_variables
      6.25.12 dns_check_record
      6.25.13 dns_get_mx
      6.25.14 dns_get_record
      6.25.15 fsockopen
      6.25.16 gethostbyaddr
      6.25.17 gethostbyname
      6.25.18 gethostbynamel
      6.25.19 getmxrr
      6.25.20 getprotobyname
      6.25.21 getprotobynumber
      6.25.22 getservbyname
      6.25.23 getservbyport
      6.25.24 inet_ntop
      6.25.25 inet_pton
      6.25.26 ip2long
      6.25.27 long2ip
      6.25.28 openlog
      6.25.29 pfsockopen
      6.25.30 socket_get_status
      6.25.31 socket_set_blocking
      6.25.32 socket_set_timeout
      6.25.33 syslog
    6.26 Fonctions ODBC (unifiés)
      6.26.1 Introduction
      6.26.2 Pré-requis
      6.26.3 Installation
        6.26.3.1 --with-adabas[=DIR]
        6.26.3.2 --with-sapdb[=DIR]
        6.26.3.3 --with-solid[=DIR]
        6.26.3.4 --with-ibm-db2[=DIR]
        6.26.3.5 --with-empress[=DIR]
        6.26.3.6 --with-empress-bcs[=DIR]
        6.26.3.7 --with-birdstep[=DIR]
        6.26.3.8 --with-custom-odbc[=DIR]
        6.26.3.9 --with-iodbc[=DIR]
        6.26.3.10 --with-esoob[=DIR]
        6.26.3.11 --with-unixodbc[=DIR]
        6.26.3.12 --with-openlink[=DIR]
        6.26.3.13 --with-dbmaker[=DIR]
        6.26.3.14  odbc.configure.php3
      6.26.4 Configuration à l'exécution
        6.26.4.1 odbc.default_db
        6.26.4.2 odbc.default_user
        6.26.4.3 odbc.default_pw
        6.26.4.4 odbc.allow_persistent
        6.26.4.5 odbc.check_persistent
        6.26.4.6 odbc.max_persistent
        6.26.4.7 odbc.max_links
        6.26.4.8 odbc.defaultlrl
        6.26.4.9 odbc.defaultbinmode
      6.26.5 Types de ressources
      6.26.6 Constantes pré-définies
      6.26.7 odbc_autocommit
      6.26.8 odbc_binmode
      6.26.9 odbc_close_all
      6.26.10 odbc_close
      6.26.11 odbc_columnprivileges
      6.26.12 odbc_columns
      6.26.13 odbc_commit
      6.26.14 odbc_connect
      6.26.15 odbc_cursor
      6.26.16 odbc_data_source
      6.26.17 odbc_do
      6.26.18 odbc_error
      6.26.19 odbc_errormsg
      6.26.20 odbc_exec
      6.26.21 odbc_execute
      6.26.22 odbc_fetch_array
      6.26.23 odbc_fetch_into
      6.26.24 odbc_fetch_object
      6.26.25 odbc_fetch_row
      6.26.26 odbc_field_len
      6.26.27 odbc_field_name
      6.26.28 odbc_field_num
      6.26.29 odbc_field_precision
      6.26.30 odbc_field_scale
      6.26.31 odbc_field_type
      6.26.32 odbc_foreignkeys
      6.26.33 odbc_free_result
      6.26.34 odbc_gettypeinfo
      6.26.35 odbc_longreadlen
      6.26.36 odbc_next_result
      6.26.37 odbc_num_fields
      6.26.38 odbc_num_rows
      6.26.39 odbc_pconnect
      6.26.40 odbc_prepare
      6.26.41 odbc_primarykeys
      6.26.42 odbc_procedurecolumns
      6.26.43 odbc_procedures
      6.26.44 odbc_result_all
      6.26.45 odbc_result
      6.26.46 odbc_rollback
      6.26.47 odbc_setoption
      6.26.48 odbc_specialcolumns
      6.26.49 odbc_statistics
      6.26.50 odbc_tableprivileges
      6.26.51 odbc_tables
    6.27 Fonctions Oracle
      6.27.1 Introduction
      6.27.2 Pré-requis
      6.27.3 Configuration à l'exécution
        6.27.3.1 oci8.privileged_connect
        6.27.3.2 oci8.max_persistent
        6.27.3.3 oci8.persistent_timeout
        6.27.3.4 oci8.ping_interval
        6.27.3.5 oci8.statement_cache_size
        6.27.3.6 oci8.default_prefetch
        6.27.3.7 oci8.old_oci_close_semantics
      6.27.4 Constantes pré-définies
      6.27.5 Exemples
      6.27.6 Gestion de la connexion
      6.27.7 Types de données supportées par le driver
      6.27.8 oci_bind_by_name
      6.27.9 oci_cancel
      6.27.10 oci_close
      6.27.11 OCI-Collection->append
      6.27.12 OCI-Collection->assign
      6.27.13 OCI-Collection->assignElem
      6.27.14 OCI-Collection->free
      6.27.15 OCI-Collection->getElem
      6.27.16 OCI-Collection->max
      6.27.17 OCI-Collection->size
      6.27.18 OCI-Collection->trim
      6.27.19 oci_commit
      6.27.20 oci_connect
      6.27.21 oci_define_by_name
      6.27.22 oci_error
      6.27.23 oci_execute
      6.27.24 oci_fetch_all
      6.27.25 oci_fetch_array
      6.27.26 oci_fetch_assoc
      6.27.27 oci_fetch_object
      6.27.28 oci_fetch_row
      6.27.29 oci_fetch
      6.27.30 oci_field_is_null
      6.27.31 oci_field_name
      6.27.32 oci_field_precision
      6.27.33 oci_field_scale
      6.27.34 oci_field_size
      6.27.35 oci_field_type_raw
      6.27.36 oci_field_type
      6.27.37 oci_free_statement
      6.27.38 oci_internal_debug
      6.27.39 OCI-Lob->append
      6.27.40 OCI-Lob->close
      6.27.41 oci_lob_copy
      6.27.42 OCI-Lob->eof
      6.27.43 OCI-Lob->erase
      6.27.44 OCI-Lob->export
      6.27.45 OCI-Lob->flush
      6.27.46 OCI-Lob->free
      6.27.47 OCI-Lob->getBuffering
      6.27.48 OCI-Lob->import
      6.27.49 oci_lob_is_equal
      6.27.50 OCI-Lob->load
      6.27.51 OCI-Lob->read
      6.27.52 OCI-Lob->rewind
      6.27.53 OCI-Lob->save
      6.27.54 OCI-Lob->saveFile
      6.27.55 OCI-Lob->seek
      6.27.56 OCI-Lob->setBuffering
      6.27.57 OCI-Lob->size
      6.27.58 OCI-Lob->tell
      6.27.59 OCI-Lob->truncate
      6.27.60 OCI-Lob->write
      6.27.61 OCI-Lob->writeTemporary
      6.27.62 OCI-Lob->writeToFile
      6.27.63 oci_new_collection
      6.27.64 oci_new_connect
      6.27.65 oci_new_cursor
      6.27.66 oci_new_descriptor
      6.27.67 oci_num_fields
      6.27.68 oci_num_rows
      6.27.69 oci_parse
      6.27.70 oci_password_change
      6.27.71 oci_pconnect
      6.27.72 oci_result
      6.27.73 oci_rollback
      6.27.74 oci_server_version
      6.27.75 oci_set_prefetch
      6.27.76 oci_statement_type
      6.27.77 ocibindbyname
      6.27.78 ocicancel
      6.27.79 ocicloselob
      6.27.80 ocicollappend
      6.27.81 ocicollassign
      6.27.82 ocicollassignelem
      6.27.83 ocicollgetelem
      6.27.84 ocicollmax
      6.27.85 ocicollsize
      6.27.86 ocicolltrim
      6.27.87 ocicolumnisnull
      6.27.88 ocicolumnname
      6.27.89 ocicolumnprecision
      6.27.90 ocicolumnscale
      6.27.91 ocicolumnsize
      6.27.92 ocicolumntype
      6.27.93 ocicolumntyperaw
      6.27.94 ocicommit
      6.27.95 ocidefinebyname
      6.27.96 ocierror
      6.27.97 ociexecute
      6.27.98 ocifetch
      6.27.99 ocifetchinto
      6.27.100 ocifetchistatement
      6.27.101 ocifreecollection
      6.27.102 ocifreecursor
      6.27.103 ocifreedesc
      6.27.104 ocifreestatement
      6.27.105 ociinternaldebug
      6.27.106 ociloadlob
      6.27.107 ocilogoff
      6.27.108 ocilogon
      6.27.109 ocinewcollection
      6.27.110 ocinewcursor
      6.27.111 ocinewscriptor
      6.27.112 ocinlogon
      6.27.113 ocinumcols
      6.27.114 ociparse
      6.27.115 ociplogon
      6.27.116 ociresult
      6.27.117 ocirollback
      6.27.118 ocirowcount
      6.27.119 ocisavelob
      6.27.120 ocisavelobfile
      6.27.121 ociserverversion
      6.27.122 ocisetprefetch
      6.27.123 ocistatementtype
      6.27.124 ociwritelobtofile
      6.27.125 ociwritetemporarylob
    6.28 Bufferisation de sortie
      6.28.1 Introduction
      6.28.2 Pré-requis
      6.28.3 Installation
      6.28.4 Configuration à l'exécution
        6.28.4.1 output_buffering
        6.28.4.2 output_handler
        6.28.4.3 implicit_flush
      6.28.5 Types de ressources
      6.28.6 Constantes pré-définies
      6.28.7 Exemples
      6.28.8 Voir aussi
      6.28.9 flush
      6.28.10 ob_clean
      6.28.11 ob_end_clean
      6.28.12 ob_end_flush
      6.28.13 ob_flush
      6.28.14 ob_get_clean
      6.28.15 ob_get_contents
      6.28.16 ob_get_flush
      6.28.17 ob_get_length
      6.28.18 ob_get_level
      6.28.19 ob_get_status
      6.28.20 ob_gzhandler
      6.28.21 ob_implicit_flush
      6.28.22 ob_list_handlers
      6.28.23 ob_start
      6.28.24 output_add_rewrite_var
      6.28.25 output_reset_rewrite_vars
    6.29 PDF
      6.29.1 Introduction
      6.29.2 Pré-requis
        6.29.2.1 Problèmes avec les anciennes versions de PDFlib
      6.29.3 Installation
      6.29.4 Configuration à l'exécution
      6.29.5 Confusion entre les vieilles versions de PDFLib
      6.29.6 Exemples
      6.29.7 Voir aussi
      6.29.8 pdf_add_annotation
      6.29.9 pdf_add_bookmark
      6.29.10 pdf_add_launchlink
      6.29.11 pdf_add_locallink
      6.29.12 pdf_add_note
      6.29.13 pdf_add_outline
      6.29.14 pdf_add_pdflink
      6.29.15 pdf_add_thumbnail
      6.29.16 pdf_add_weblink
      6.29.17 pdf_arc
      6.29.18 pdf_arcn
      6.29.19 pdf_attach_file
      6.29.20 pdf_begin_page
      6.29.21 pdf_begin_pattern
      6.29.22 pdf_begin_template
      6.29.23 pdf_circle
      6.29.24 pdf_clip
      6.29.25 pdf_close_image
      6.29.26 pdf_close_pdi_page
      6.29.27 pdf_close_pdi
      6.29.28 pdf_close
      6.29.29 pdf_closepath_fill_stroke
      6.29.30 pdf_closepath_stroke
      6.29.31 pdf_closepath
      6.29.32 pdf_concat
      6.29.33 pdf_continue_text
      6.29.34 pdf_curveto
      6.29.35 pdf_delete
      6.29.36 pdf_end_page
      6.29.37 pdf_end_pattern
      6.29.38 pdf_end_template
      6.29.39 pdf_endpath
      6.29.40 pdf_fill_stroke
      6.29.41 pdf_fill
      6.29.42 pdf_findfont
      6.29.43 pdf_get_buffer
      6.29.44 pdf_get_font
      6.29.45 pdf_get_fontname
      6.29.46 pdf_get_fontsize
      6.29.47 pdf_get_image_height
      6.29.48 pdf_get_image_width
      6.29.49 pdf_get_majorversion
      6.29.50 pdf_get_minorversion
      6.29.51 pdf_get_parameter
      6.29.52 pdf_get_pdi_parameter
      6.29.53 pdf_get_pdi_value
      6.29.54 pdf_get_value
      6.29.55 pdf_initgraphics
      6.29.56 pdf_lineto
      6.29.57 pdf_makespotcolor
      6.29.58 pdf_moveto
      6.29.59 pdf_new
      6.29.60 pdf_open_ccitt
      6.29.61 pdf_open_file
      6.29.62 pdf_open_gif
      6.29.63 pdf_open_image_file
      6.29.64 pdf_open_image
      6.29.65 pdf_open_jpeg
      6.29.66 pdf_open_memory_image
      6.29.67 pdf_open_pdi_page
      6.29.68 pdf_open_pdi
      6.29.69 pdf_open_png
      6.29.70 pdf_open_tiff
      6.29.71 pdf_open
      6.29.72 pdf_place_image
      6.29.73 pdf_place_pdi_page
      6.29.74 pdf_rect
      6.29.75 pdf_restore
      6.29.76 pdf_rotate
      6.29.77 pdf_save
      6.29.78 pdf_scale
      6.29.79 pdf_set_border_color
      6.29.80 pdf_set_border_dash
      6.29.81 pdf_set_border_style
      6.29.82 pdf_set_char_spacing
      6.29.83 pdf_set_duration
      6.29.84 pdf_set_font
      6.29.85 pdf_set_horiz_scaling
      6.29.86 pdf_set_info_author
      6.29.87 pdf_set_info_creator
      6.29.88 pdf_set_info_keywords
      6.29.89 pdf_set_info_subject
      6.29.90 pdf_set_info_title
      6.29.91 pdf_set_info
      6.29.92 pdf_set_leading
      6.29.93 pdf_set_parameter
      6.29.94 pdf_set_text_matrix
      6.29.95 pdf_set_text_pos
      6.29.96 pdf_set_text_rendering
      6.29.97 pdf_set_text_rise
      6.29.98 pdf_set_value
      6.29.99 pdf_set_word_spacing
      6.29.100 pdf_setcolor
      6.29.101 pdf_setdash
      6.29.102 pdf_setflat
      6.29.103 pdf_setfont
      6.29.104 pdf_setgray_fill
      6.29.105 pdf_setgray_stroke
      6.29.106 pdf_setgray
      6.29.107 pdf_setlinecap
      6.29.108 pdf_setlinejoin
      6.29.109 pdf_setlinewidth
      6.29.110 pdf_setmatrix
      6.29.111 pdf_setmiterlimit
      6.29.112 pdf_setpolydash
      6.29.113 pdf_setrgbcolor_fill
      6.29.114 pdf_setrgbcolor_stroke
      6.29.115 pdf_setrgbcolor
      6.29.116 pdf_show_boxed
      6.29.117 pdf_show_xy
      6.29.118 pdf_show
      6.29.119 pdf_skew
      6.29.120 pdf_stringwidth
      6.29.121 pdf_stroke
      6.29.122 pdf_translate
    6.30 Options PHP et informations
      6.30.1 Introduction
      6.30.2 Pré-requis
      6.30.3 Installation
      6.30.4 Configuration à l'exécution
        6.30.4.1 assert.active
        6.30.4.2 assert.bail
        6.30.4.3 assert.warning
        6.30.4.4 assert.callback
        6.30.4.5 assert.quiet_eval
        6.30.4.6 enable_dl
        6.30.4.7 max_execution_time
        6.30.4.8 max_input_time
        6.30.4.9 magic_quotes_gpc
        6.30.4.10 magic_quotes_runtime
      6.30.5 Types de ressources
      6.30.6 Constantes pré-définies
      6.30.7 assert_options
      6.30.8 assert
      6.30.9 dl
      6.30.10 extension_loaded
      6.30.11 get_cfg_var
      6.30.12 get_current_user
      6.30.13 get_defined_constants
      6.30.14 get_extension_funcs
      6.30.15 get_include_path
      6.30.16 get_included_files
      6.30.17 get_loaded_extensions
      6.30.18 get_magic_quotes_gpc
      6.30.19 get_magic_quotes_runtime
      6.30.20 get_required_files
      6.30.21 getenv
      6.30.22 getlastmod
      6.30.23 getmygid
      6.30.24 getmyinode
      6.30.25 getmypid
      6.30.26 getmyuid
      6.30.27 getopt
      6.30.28 getrusage
      6.30.29 ini_alter
      6.30.30 ini_get_all
      6.30.31 ini_get
      6.30.32 ini_restore
      6.30.33 ini_set
      6.30.34 main
      6.30.35 memory_get_usage
      6.30.36 php_ini_scanned_files
      6.30.37 php_logo_guid
      6.30.38 php_sapi_name
      6.30.39 php_uname
      6.30.40 phpcredits
      6.30.41 phpinfo
      6.30.42 phpversion
      6.30.43 putenv
      6.30.44 restore_include_path
      6.30.45 set_include_path
      6.30.46 set_magic_quotes_runtime
      6.30.47 set_time_limit
      6.30.48 version_compare
      6.30.49 zend_logo_guid
      6.30.50 zend_version
    6.31 PostgreSQL
      6.31.1 Introduction
      6.31.2 Pré-requis
      6.31.3 Installation
      6.31.4 Configuration à l'exécution
        6.31.4.1 pgsql.allow_persistent
        6.31.4.2 pgsql.max_persistent
        6.31.4.3 pgsql.max_links
        6.31.4.4 pgsql.auto_reset_persistent
        6.31.4.5 pgsql.ignore_notice
        6.31.4.6 pgsql.log_notice
      6.31.5 Types de ressources
      6.31.6 Constantes pré-définies
      6.31.7 Notes
      6.31.8 Exemples
      6.31.9 pg_affected_rows
      6.31.10 pg_cancel_query
      6.31.11 pg_client_encoding
      6.31.12 pg_close
      6.31.13 pg_connect
      6.31.14 pg_connection_busy
      6.31.15 pg_connection_reset
      6.31.16 pg_connection_status
      6.31.17 pg_convert
      6.31.18 pg_copy_from
      6.31.19 pg_copy_to
      6.31.20 pg_dbname
      6.31.21 pg_delete
      6.31.22 pg_end_copy
      6.31.23 pg_escape_bytea
      6.31.24 pg_escape_string
      6.31.25 pg_execute
      6.31.26 pg_fetch_all_columns
      6.31.27 pg_fetch_all
      6.31.28 pg_fetch_array
      6.31.29 pg_fetch_assoc
      6.31.30 pg_fetch_object
      6.31.31 pg_fetch_result
      6.31.32 pg_fetch_row
      6.31.33 pg_field_is_null
      6.31.34 pg_field_name
      6.31.35 pg_field_num
      6.31.36 pg_field_prtlen
      6.31.37 pg_field_size
      6.31.38 pg_field_type_oid
      6.31.39 pg_field_type
      6.31.40 pg_free_result
      6.31.41 pg_get_notify
      6.31.42 pg_get_pid
      6.31.43 pg_get_result
      6.31.44 pg_host
      6.31.45 pg_insert
      6.31.46 pg_last_error
      6.31.47 pg_last_notice
      6.31.48 pg_last_oid
      6.31.49 pg_lo_close
      6.31.50 pg_lo_create
      6.31.51 pg_lo_export
      6.31.52 pg_lo_import
      6.31.53 pg_lo_open
      6.31.54 pg_lo_read_all
      6.31.55 pg_lo_read
      6.31.56 pg_lo_seek
      6.31.57 pg_lo_tell
      6.31.58 pg_lo_unlink
      6.31.59 pg_lo_write
      6.31.60 pg_meta_data
      6.31.61 pg_num_fields
      6.31.62 pg_num_rows
      6.31.63 pg_options
      6.31.64 pg_parameter_status
      6.31.65 pg_pconnect
      6.31.66 pg_ping
      6.31.67 pg_port
      6.31.68 pg_prepare
      6.31.69 pg_put_line
      6.31.70 pg_query_params
      6.31.71 pg_query
      6.31.72 pg_result_error_field
      6.31.73 pg_result_error
      6.31.74 pg_result_seek
      6.31.75 pg_result_status
      6.31.76 pg_select
      6.31.77 pg_send_execute
      6.31.78 pg_send_prepare
      6.31.79 pg_send_query_params
      6.31.80 pg_send_query
      6.31.81 pg_set_client_encoding
      6.31.82 pg_set_error_verbosity
      6.31.83 pg_trace
      6.31.84 pg_transaction_status
      6.31.85 pg_tty
      6.31.86 pg_unescape_bytea
      6.31.87 pg_untrace
      6.31.88 pg_update
      6.31.89 pg_version
    6.32 Exécution de programmes externes
      6.32.1 Introduction
      6.32.2 Pré-requis
      6.32.3 Installation
      6.32.4 Configuration à l'exécution
      6.32.5 Types de ressources
      6.32.6 Constantes pré-définies
      6.32.7 Voir aussi
      6.32.8 escapeshellarg
      6.32.9 escapeshellcmd
      6.32.10 exec
      6.32.11 passthru
      6.32.12 proc_close
      6.32.13 proc_get_status
      6.32.14 proc_nice
      6.32.15 proc_open
      6.32.16 proc_terminate
      6.32.17 shell_exec
      6.32.18 system
    6.33 Expressions rationnelles compatibles Perl
      6.33.1 Introduction
      6.33.2 Pré-requis
      6.33.3 Installation
      6.33.4 Configuration à l'exécution
      6.33.5 Types de ressources
      6.33.6 Constantes pré-définies
      6.33.7 Exemples
      6.33.8 options de recherche
      6.33.9 syntaxe des masques
        6.33.9.1 Détails sur les expressions rationnelles
          6.33.9.1.1 Introduction
          6.33.9.1.2 Méta-caractères
          6.33.9.1.3 Anti-slash
          6.33.9.1.4 Propriétés des caractères Unicode
          6.33.9.1.5 Accent circonflexe et Dollar
          6.33.9.1.6 Point
          6.33.9.1.7 Crochets
          6.33.9.1.8 Barre verticale
          6.33.9.1.9 Options internes
          6.33.9.1.10 Sous-masques
          6.33.9.1.11 Répétitions
          6.33.9.1.12 Références arrières
          6.33.9.1.13 Assertions
          6.33.9.1.14 Sous-masques uniques
          6.33.9.1.15 Les sous-masques conditionnels
          6.33.9.1.16 Commentaires
          6.33.9.1.17 Masques récursifs
          6.33.9.1.18 Performances
      6.33.10 preg_grep
      6.33.11 preg_match_all
      6.33.12 preg_match
      6.33.13 preg_quote
      6.33.14 preg_replace_callback
      6.33.15 preg_replace
      6.33.16 preg_split
    6.34 Sessions
      6.34.1 Introduction
      6.34.2 Sessions et sécurité
      6.34.3 Pré-requis
      6.34.4 Installation
      6.34.5 Configuration à l'exécution
        6.34.5.1 session.save_handler
        6.34.5.2 session.save_path
        6.34.5.3 session.name
        6.34.5.4 session.auto_start
        6.34.5.5 session.serialize_handler
        6.34.5.6 session.gc_probability
        6.34.5.7 session.gc_divisor
        6.34.5.8 session.gc_maxlifetime
        6.34.5.9 session.referer_check
        6.34.5.10 session.entropy_file
        6.34.5.11 session.entropy_length
        6.34.5.12 session.use_cookies
        6.34.5.13 session.use_only_cookies
        6.34.5.14 session.cookie_lifetime
        6.34.5.15 session.cookie_path
        6.34.5.16 session.cookie_domain
        6.34.5.17 session.cookie_secure
        6.34.5.18 session.cache_limiter
        6.34.5.19 session.cache_expire
        6.34.5.20 session.use_trans_sid
        6.34.5.21 session.bug_compat_42
        6.34.5.22 session.bug_compat_warn
        6.34.5.23 session.hash_function
        6.34.5.24 session.hash_bits_per_character
        6.34.5.25 session.url_rewriter.tags
      6.34.6 Types de ressources
      6.34.7 Constantes pré-définies
      6.34.8 Exemples
      6.34.9 Passer l'identifiant de session (session ID)
      6.34.10 Gestion personnalisée des sessions
      6.34.11 session_cache_expire
      6.34.12 session_cache_limiter
      6.34.13 session_commit
      6.34.14 session_decode
      6.34.15 session_destroy
      6.34.16 session_encode
      6.34.17 session_get_cookie_params
      6.34.18 session_id
      6.34.19 session_is_registered
      6.34.20 session_module_name
      6.34.21 session_name
      6.34.22 session_regenerate_id
      6.34.23 session_register
      6.34.24 session_save_path
      6.34.25 session_set_cookie_params
      6.34.26 session_set_save_handler
      6.34.27 session_start
      6.34.28 session_unregister
      6.34.29 session_unset
      6.34.30 session_write_close
    6.35 Sockets
      6.35.1 Introduction
      6.35.2 Pré-requis
      6.35.3 Installation
      6.35.4 Configuration à l'exécution
      6.35.5 Types de ressources
      6.35.6 Constantes pré-définies
      6.35.7 Erreurs de socket
      6.35.8 Exemples
      6.35.9 socket_accept
      6.35.10 socket_bind
      6.35.11 socket_clear_error
      6.35.12 socket_close
      6.35.13 socket_connect
      6.35.14 socket_create_listen
      6.35.15 socket_create_pair
      6.35.16 socket_create
      6.35.17 socket_get_option
      6.35.18 socket_getpeername
      6.35.19 socket_getsockname
      6.35.20 socket_last_error
      6.35.21 socket_listen
      6.35.22 socket_read
      6.35.23 socket_recv
      6.35.24 socket_recvfrom
      6.35.25 socket_select
      6.35.26 socket_send
      6.35.27 socket_sendto
      6.35.28 socket_set_block
      6.35.29 socket_set_nonblock
      6.35.30 socket_set_option
      6.35.31 socket_shutdown
      6.35.32 socket_strerror
      6.35.33 socket_write
    6.36 Chaînes de caractères (Strings)
      6.36.1 Introduction
      6.36.2 Pré-requis
      6.36.3 Installation
      6.36.4 Constantes pré-définies
      6.36.5 Voir aussi
      6.36.6 addcslashes
      6.36.7 addslashes
      6.36.8 bin2hex
      6.36.9 chop
      6.36.10 chr
      6.36.11 chunk_split
      6.36.12 convert_cyr_string
      6.36.13 convert_uudecode
      6.36.14 convert_uuencode
      6.36.15 count_chars
      6.36.16 crc32
      6.36.17 crypt
      6.36.18 echo
      6.36.19 explode
      6.36.20 fprintf
      6.36.21 get_html_translation_table
      6.36.22 hebrev
      6.36.23 hebrevc
      6.36.24 html_entity_decode
      6.36.25 htmlentities
      6.36.26 htmlspecialchars_decode
      6.36.27 htmlspecialchars
      6.36.28 implode
      6.36.29 join
      6.36.30 levenshtein
      6.36.31 localeconv
      6.36.32 ltrim
      6.36.33 md5_file
      6.36.34 md5
      6.36.35 metaphone
      6.36.36 money_format
      6.36.37 nl_langinfo
      6.36.38 nl2br
      6.36.39 number_format
      6.36.40 ord
      6.36.41 parse_str
      6.36.42 print
      6.36.43 printf
      6.36.44 quoted_printable_decode
      6.36.45 quotemeta
      6.36.46 rtrim
      6.36.47 setlocale
      6.36.48 sha1_file
      6.36.49 sha1
      6.36.50 similar_text
      6.36.51 soundex
      6.36.52 sprintf
      6.36.53 sscanf
      6.36.54 str_ireplace
      6.36.55 str_pad
      6.36.56 str_repeat
      6.36.57 str_replace
      6.36.58 str_rot13
      6.36.59 str_shuffle
      6.36.60 str_split
      6.36.61 str_word_count
      6.36.62 strcasecmp
      6.36.63 strchr
      6.36.64 strcmp
      6.36.65 strcoll
      6.36.66 strcspn
      6.36.67 strip_tags
      6.36.68 stripcslashes
      6.36.69 stripos
      6.36.70 stripslashes
      6.36.71 stristr
      6.36.72 strlen
      6.36.73 strnatcasecmp
      6.36.74 strnatcmp
      6.36.75 strncasecmp
      6.36.76 strncmp
      6.36.77 strpbrk
      6.36.78 strpos
      6.36.79 strrchr
      6.36.80 strrev
      6.36.81 strripos
      6.36.82 strrpos
      6.36.83 strspn
      6.36.84 strstr
      6.36.85 strtok
      6.36.86 strtolower
      6.36.87 strtoupper
      6.36.88 strtr
      6.36.89 substr_compare
      6.36.90 substr_count
      6.36.91 substr_replace
      6.36.92 substr
      6.36.93 trim
      6.36.94 ucfirst
      6.36.95 ucwords
      6.36.96 vfprintf
      6.36.97 vprintf
      6.36.98 vsprintf
      6.36.99 wordwrap
    6.37 URL
      6.37.1 Introduction
      6.37.2 Pré-requis
      6.37.3 Installation
      6.37.4 Configuration à l'exécution
      6.37.5 Types de ressources
      6.37.6 Constantes pré-définies
      6.37.7 base64_decode
      6.37.8 base64_encode
      6.37.9 get_headers
      6.37.10 get_meta_tags
      6.37.11 http_build_query
      6.37.12 parse_url
      6.37.13 rawurldecode
      6.37.14 rawurlencode
      6.37.15 urldecode
      6.37.16 urlencode
    6.38 Fonctions de gestion des variables
      6.38.1 Introduction
      6.38.2 Pré-requis
      6.38.3 Installation
      6.38.4 Configuration à l'exécution
        6.38.4.1 unserialize_callback_func
      6.38.5 Types de ressources
      6.38.6 Constantes pré-définies
      6.38.7 debug_zval_dump
      6.38.8 doubleval
      6.38.9 empty
      6.38.10 floatval
      6.38.11 get_defined_vars
      6.38.12 get_resource_type
      6.38.13 gettype
      6.38.14 import_request_variables
      6.38.15 intval
      6.38.16 is_array
      6.38.17 is_bool
      6.38.18 is_callable
      6.38.19 is_double
      6.38.20 is_float
      6.38.21 is_int
      6.38.22 is_integer
      6.38.23 is_long
      6.38.24 is_null
      6.38.25 is_numeric
      6.38.26 is_object
      6.38.27 is_real
      6.38.28 is_resource
      6.38.29 is_scalar
      6.38.30 is_string
      6.38.31 isset
      6.38.32 print_r
      6.38.33 serialize
      6.38.34 settype
      6.38.35 strval
      6.38.36 unserialize
      6.38.37 unset
      6.38.38 var_dump
      6.38.39 var_export
    6.39 WDDX
      6.39.1 Introduction
      6.39.2 Pré-requis
      6.39.3 Installation
      6.39.4 Configuration à l'exécution
      6.39.5 Types de ressources
      6.39.6 Constantes pré-définies
      6.39.7 Exemples
      6.39.8 wddx_add_vars
      6.39.9 wddx_deserialize
      6.39.10 wddx_packet_end
      6.39.11 wddx_packet_start
      6.39.12 wddx_serialize_value
      6.39.13 wddx_serialize_vars
      6.39.14 wddx_unserialize
    6.40 Analyseur syntaxique XML
      6.40.1 Introduction
      6.40.2 Pré-requis
      6.40.3 Installation
      6.40.4 Configuration à l'exécution
      6.40.5 Types de ressources
        6.40.5.1 xml
      6.40.6 Constantes pré-définies
      6.40.7 gestionnaires d'événements
      6.40.8 Problèmes de casse
      6.40.9 Codes d'erreurs
      6.40.10 Codage des caractères
      6.40.11 Exemples
        6.40.11.1 Exemple de structure XML
        6.40.11.2 Transtypage XML -> HTML
        6.40.11.3 Entité externe
      6.40.12 utf8_decode
      6.40.13 utf8_encode
      6.40.14 xml_error_string
      6.40.15 xml_get_current_byte_index
      6.40.16 xml_get_current_column_number
      6.40.17 xml_get_current_line_number
      6.40.18 xml_get_error_code
      6.40.19 xml_parse_into_struct
      6.40.20 xml_parse
      6.40.21 xml_parser_create_ns
      6.40.22 xml_parser_create
      6.40.23 xml_parser_free
      6.40.24 xml_parser_get_option
      6.40.25 xml_parser_set_option
      6.40.26 xml_set_character_data_handler
      6.40.27 xml_set_default_handler
      6.40.28 xml_set_element_handler
      6.40.29 xml_set_end_namespace_decl_handler
      6.40.30 xml_set_external_entity_ref_handler
      6.40.31 xml_set_notation_decl_handler
      6.40.32 xml_set_object
      6.40.33 xml_set_processing_instruction_handler
      6.40.34 xml_set_start_namespace_decl_handler
      6.40.35 xml_set_unparsed_entity_decl_handler
    6.41 Compression Zlib
      6.41.1 Introduction
      6.41.2 Pré-requis
      6.41.3 Installation
      6.41.4 Configuration à l'exécution
        6.41.4.1 zlib.output_compression
        6.41.4.2 zlib.output_compression_level
        6.41.4.3 zlib.output_handler
      6.41.5 Types de ressources
      6.41.6 Constantes pré-définies
      6.41.7 Exemples
      6.41.8 gzclose
      6.41.9 gzcompress
      6.41.10 gzdeflate
      6.41.11 gzencode
      6.41.12 gzeof
      6.41.13 gzfile
      6.41.14 gzgetc
      6.41.15 gzgets
      6.41.16 gzgetss
      6.41.17 gzinflate
      6.41.18 gzopen
      6.41.19 gzpassthru
      6.41.20 gzputs
      6.41.21 gzread
      6.41.22 gzrewind
      6.41.23 gzseek
      6.41.24 gztell
      6.41.25 gzuncompress
      6.41.26 gzwrite
      6.41.27 readgzfile
      6.41.28 zlib_get_coding_type
  7 Annexes
    7.1 Histoire de PHP
      7.1.1 Histoire de PHP
        7.1.1.1 PHP/FI
        7.1.1.2 PHP 3
        7.1.1.3 PHP 4
        7.1.1.4 PHP 5
      7.1.2 Quelques projets liés à PHP
        7.1.2.1 PEAR
        7.1.2.2 Equipe d'assurance Qualité
        7.1.2.3 PHP-GTK
      7.1.3 Livres traitant de PHP
      7.1.4 Publications sur PHP
    7.2 Migration de PHP 3 à PHP 4
      7.2.1 Ce qui a changé en PHP 4
      7.2.2 Utiliser PHP 3 et PHP 4 simultanément
      7.2.3 Migration des fichiers de configuration
      7.2.4 Comportement de l'analyseur
      7.2.5 Rapport d'erreur
        7.2.5.1 Changement de configuration
        7.2.5.2 Nouveaux messages d'erreurs
      7.2.6 Initialiseur
      7.2.7 empty("0")
      7.2.8 Fonctions manquantes
        7.2.8.1 Fonctions manquantes pour des raisons de structure
        7.2.8.2 Fonctions et extensions obsolètes
        7.2.8.3 Nouveau statut pour unset
      7.2.9 Extensions PHP 3
      7.2.10 Substitution de variables dans les chaînes
      7.2.11 Cookies
      7.2.12 Gestion des variables globales
    7.3 Migration de PHP/FI 2 à PHP 3
      7.3.1 A propos des incompatibilités en 3.0
      7.3.2 old_function
      7.3.3 Balises PHP
      7.3.4 Syntaxe if...endif
      7.3.5 Syntaxe while
      7.3.6 Types d'expression
      7.3.7 Les messages d'erreur ont changé
      7.3.8 Evaluation rapide des booléens
      7.3.9 La valeur TRUE / FALSE comme retour de fonctions
      7.3.10 Diverses incompatibilités
    7.4 Débogueur PHP
      7.4.1 A propos du débogueur
      7.4.2 Utiliser le débogueur PHP
      7.4.3 Protocole du débogueur
    7.5 Liste des alias
    7.6 Mots réservés en PHP
      7.6.1 Liste de mots-clé
      7.6.2 Variables pré-définies
        7.6.2.1 Variables de serveur : $_SERVER
        7.6.2.2 Variables d'environnement : $_ENV
        7.6.2.3 HTTP Cookies : $_COOKIE
        7.6.2.4 HTTP GET variables : $_GET
        7.6.2.5 HTTP POST variables : $_POST
        7.6.2.6 Variable de téléchargement de fichier via HTTP : $_FILES
        7.6.2.7 Variables de requête : $_REQUEST
        7.6.2.8 Session variables : $_SESSION
        7.6.2.9 Variables globales : $GLOBALS
        7.6.2.10 Le dernier message d'erreur : $php_errormsg
      7.6.3 Classes pré-définies
        7.6.3.1 Classes standards
        7.6.3.2 Classes pré-définies en PHP 5
      7.6.4 Constantes pré-définies
        7.6.4.1 Constantes pré-définies
        7.6.4.2 Constantes standards pré-définies
    7.7 Types des ressources PHP
    7.8 Liste des protocoles supportés
      7.8.1 Système de fichiers
      7.8.2 Socket
      7.8.3 HTTP et HTTPS
      7.8.4 FTP et FTPS
      7.8.5 Flux d'entrée/sortie
      7.8.6 Flux compressés
      7.8.7 Shell sécurisé 2
      7.8.8 Flux Audio
      7.8.9 Gestionnaire de flux
    7.9 Liste des token de l'analyseur
    7.10 A propos du manuel
      7.10.1 Formats
      7.10.2 A propos des notes utilisateurs
      7.10.3 Comment lire la définition d'une fonction (prototype)
      7.10.4 Versions de PHP documentées dans ce manuel
      7.10.5 Où trouver plus d'informations sur PHP ?
      7.10.6 Comment aider à l'amélioration de la documentation
      7.10.7 Comment sont générées les documentations
      7.10.8 Traductions
      7.10.9 Traduction française
  8 Index
    8.1 Index des fonctions
    8.2 Index des concepts
    8.3 Index des exemples
<< Manuel PHP >>
Manuel PHP Manuel PHP Manuel PHP