[Top] [Table des matières] [Index] [ ? ]

Manuel PHP Mode


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

1. Introduction

Inspiré du PHP-Mode et du VHDL-Mode, ce nouveau PHP Mode combine les avantages des deux modes afin de simplifier l'écriture de code PHP : coloration syntaxique, indentation, complétion, aide à l'écriture (templates), navigation à travers les fonctions et classes, navigation à travers les fichiers sources...



Fonctionnalités (nouvelles fonctionnalités en gras) :



Ce manuel décrit PHP Mode version 0.0.4.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

2. Installation


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

2.1 Pré-recquis

PHP Mode est un mode majeur de XEmacs qui nécessite les logiciels/packages suivants :

Avant de continuer vous devez donc vous assurer d'avoir tout ces packages installés.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

2.2 Télécharger

Deux adresse internet à votre disposition pour télécharger PHP Mode :


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

2.3 Installation/Mise à jour


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

2.3.1 Installation

Pour installer PHP Mode vous devez choisir un répertoire d'installation (par exemple `/usr/local/share/lisp' ou `c:\lisp'). L'installateur doit avoir les droits d'écriture sur ce répertoire.

Avec votre logiciel de décompression favoris, décompressez l'archive dans le répertoire d'installation.

Exemple :

 
cd /usr/local/share/lisp
tar zxvf php-0.0.4.tar.gz

Vous devez maintenant avoir un répertoire `php' dans le répertoire d'installation. Ce répertoire doit contenir 2 fichiers `php-mode.el' et `php-mode.elc' ainsi qu'un répertoire `docs' contenant la documentation.

Vous devez maintenant configurer XEmacs. Ouvrez votre fichier d'initialisation `init.el' (ouvrez directement le fichier ou démarrez XEmacs puis choisissez le menu Options puis Edit Init File). Ajoutez les lignes suivantes (le répertoire d'installation dans le cas ci-dessous est `/usr/local/share/lisp') :

 
(setq load-path
      (append (list "/usr/local/share/lisp/") load-path))
(autoload 'php-mode "php-mode" "PHP mode" t)

[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

2.3.2 Mise à jour

La mise à jour est simple. Vous devez décompresser l'archive dans le répertoire d'installation afin d'effacer l'ancienne version.

Exemple :

 
cd /usr/local/share/lisp
rm -rf php
tar zxvf php-0.0.4.tar.gz

[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

2.4 Invoquer le PHP-Mode

Vous avez deux possibilités pour invoquer le PHP Mode.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

3. Paramètrages

Ce chapitre décrit les différents paramètres et fonctions que vous pouvez modifier pour personnaliser PHP Mode. Pour cela, ouvrez un fichier PHP puis cliquez sur le menu PHP et choisissez Options puis Browse Options....


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

3.1 Paramètres


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

3.1.1 Mode

PHP Mode contient 3 modes permettant de faciliter l'écriture du PHP. Vous pouvez activer/désactiver chacun des modes séparément.

`php-electric-mode'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; active la génération automatique des templates. Si `nil'; les générateur de templates peuvent toujours être invoqués en utilisant les raccourcis clavier et le menu. L'activation de ce mode est indiquée par "/e" après le nom du mode et peut être modifié en utilisant `php-electric-mode'.

`php-stutter-mode'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; active le "bégaiement". L'activation de ce mode est indiquée par "/s" après le nom du mode et peut être modifié en utilisant `php-stutter-mode'.

`php-indent-tabs-mode'

Type : bool
Valeur par défaut : `nil'
Description : Si `t'; l'indentation se fait par des tabs. Si `nil'; l'indentation se fait par des espaces.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

3.1.2 Menu

PHP Mode contient aussi 2 menus que vous pouvez activer/désactiver. Les menus Index et Sources sont spécifiques à chaques fichiers PHP ouverts.

`php-index-menu'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; le menu Index est activé. Celui-ci affiche la liste des classes et des functions du fichier ouvert. Le menu Index scanne le fichier lors de l'ouverture.

`php-index-menu-auto-rescan'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; the menu Index est mis à jour lorsqu'une fonction ou une classe est ajoutée ou retirée.

`php-source-file-menu'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; le menu Sources est activé. Ce menu contient la liste des fichiers PHP contenus dans le répertoire courant. Le menu Sources scanne le répertoire à l'ouverture du fichier.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

3.1.3 Template

`php-include-in-parenthesis'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; les fonctions include et require sont utilisées avec des parenthèses (exemple : require( 'required_file.php' );). Si `nil'; les fonctions include et require sont utilisées sans parenthèses (exemple : include_once 'required_file.php';)

`php-add-fclose-with-fopen'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; la fonction fclose est ajoutée lorsque le template de la fonction fopen est exécuté.

`php-add-mysql-close-when-connect'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; la fonction mysql_close est ajoutée lorsque le template de la fonction mysql_connect est exécuté.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

3.1.3.1 En-tête

`php-file-header'

Type : chaîne de caractères
Valeur par défaut : `"
/**
* <description string>
*
*
* Created: <date>
* Last update: <date>
*
* @link <link string>
* @copyright <copyright>
* @author <author>
* @package <package string>
* @version <version string>
*/

<cursor>"
'

Description : L'en-tête à insérer dans le fichier. Si la chaîne est un fichier existant c'est le contenu du fichier qui sera inséré sinon ce sera la chaîne.
Pour ajouter une ligne tapez C-j.

Les mots clés suivants sont supportés :
<filename> : remplacé par le nom du fichier.
<author> : remplacé par le nom de l'utilisateur et son adresse email.
<login> : remplacé par `user-login-name'.
<company> : remplacé par le contenu de `php-company-name'.
<date> : remplacé par la date courante.
<year> : remplacé par l'année courante.
<copyright> : remplacé par le contenu de `php-copyright-string'.
<cursor> : la position finale du curseur.

`php-file-footer'

Type : chaîne de caractères
Valeur par défaut : `""'
Description : La fin du fichier à insérer. Voir `php-file-header' pour la syntaxe.

`php-company-name'

Type : chaîne de caractères
Valeur par défaut : `""'
Description : Nom de la société.

`php-copyright-string'

Type : chaîne de caractères
Valeur par défaut : `""'
Description : Copyright à insérer.

`php-date-format'

Type : chaîne de caractères
Valeur par défaut : `"%Y-%m-%d"'
Description : Format de la date.

`php-modify-date-prefix-string'

Type : chaîne de caractères
Valeur par défaut : `" * Last update: "'
Description : Préfixe de la date de dernière modification.

`php-modify-date-on-saving'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; lorsque le buffer est sauvegardé; la date de dernière modification est mise à jour.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

3.1.4 Style

`php-basic-offset'

Type : entier
Valeur par défaut : `4'
Description : Nombre d'espaces constituants l'indentation du code PHP.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

3.1.5 PHPDocumentor

`php-enable-phpdocumentor-tags'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; les tags PHP-Documentor sont ajoutés dans les commentaires des classes et des fonctions.

`php-class-tags'

Type : liste (chaînes de caractères)
Valeur par défaut : `'("package")'
Description : Liste des tags PHP-Documentor à ajouter dans les commentaires des classes.

`php-function-tags'

Type : liste (chaînes de caractères)
Valeur par défaut : `'()'
Description : Liste des tags PHP-Documentor à ajouter dans les commentaires des fonctions.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

3.1.6 Divers

`php-intelligent-tab'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; la touche TAB permet d'indenter de compléter et d'insérer des tabulations. Si `nil'; la touche TAB permet d'indenter uniquement.

`php-word-completion-in-minibuffer'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; active la completion dans le minibuffer.

`php-word-completion-case-sensitive'

Type : bool
Valeur par défaut : `nil'
Description : Si `t'; la completion est senssible à la casse des mots.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

3.2 Fonctions


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

3.2.1 Mode

`php-electric-mode'

Menu : PHP -> Options -> Mode -> Electric Mode
Raccourci clavier : C-c C-m C-e
Description : Cette fonction permet de d'activer/désactiver le mode de génération automatique de template.

`php-stutter-mode'

Menu : PHP -> Options -> Mode -> Stutter Mode
Raccourci clavier : C-c C-m C-s
Description : Cette fonction permet de d'activer/désactiver le mode "bégaiement".


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

4. Menus

Il y a 3 menus : PHP, Index et Sources. Ces menus sont accessibles depuis la barre de menu et depuis le clic droit. Ce chapitre décrit chacun des menus.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

4.1 PHP

C'est le menu principal de PHP Mode. Il permet un accès aux principales fonctionnalités de PHP Mode : Templates (voir Templates), Indentation (voir Indentation) et Options (voir Paramètrages).

Ce menu contient aussi 3 fonctions détaillées dans le paragraphe suivant.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

4.1.1 Fonctions

`php-show-messages'

Menu : PHP -> Show Messages
Raccourci clavier : C-c M-m
Description : Cette fonction ouvre le buffer *Messages* pour afficher les messages d'erreur.

`php-doc-mode'

Menu : PHP -> PHP Mode Documentation
Raccourci clavier : C-c C-h
Description : Cette fonction ouvre le buffer *Help* et affiche la docuement de PHP Mode (en anglais).

`php-version'

Menu : PHP -> Version
Raccourci clavier : C-c C-v
Description : Cette fonction affiche dans le minibuffer la version actuelle et la date de PHP Mode.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

4.2 Index

Le menu Index vous permets de naviguer dans le buffer courant pour trouver les fonctions et les classes. Ce menu est constuit pendant l'ouverture du buffer et vous devez le rafraîchir si vous ajoutez ou retirez des fonctions ou des classes. Il y a un menu Index par buffer.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

4.2.1 Paramètres

`php-index-menu'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; le menu Index est activé. Celui-ci affiche la liste des classes et des functions du fichier ouvert. Le menu Index scanne le fichier lors de l'ouverture.

`php-index-menu-auto-rescan'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; the menu Index est mis à jour lorsqu'une fonction ou une classe est ajoutée ou retirée.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

4.3 Sources

Le menu Sources affiche les fichiers PHP du répertoire courant. Si vous ajoutez ou détruisez un fichier dans le répertoire courant, vous devez rafraîchir le menu.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

4.3.1 Paramètres

`php-source-file-menu'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; le menu Sources est activé. Ce menu contient la liste des fichiers PHP contenus dans le répertoire courant. Le menu Sources scanne le répertoire à l'ouverture du fichier.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

4.3.2 Fonctions

`php-add-source-files-menu'

Menu : Sources -> *Rescan*
Raccourci clavier : C-c C-s C-u
Description : Cette fonction is utilisée pour rafraîchir le menu Sources.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

5. Complétion

La complétion vous permet d'écrire du code PHP en réduisant les erreurs sur les noms des fonctions ou sur les noms des variables. Cela suggére aussi les noms des fonctions PHP.

Pour utiliser la complétion, écrivez les premières lettres et utilisez TAB pour compléter le mot jusqu'à ce que vous trouviez la complétion parfaite. Par exemple, dans un buffer PHP vide, tapez "mysql_" et complétez le nom de la fonction avec TAB : toutes les fonctions mysql_* sont proposées.

La compl]'etion oppère sur les fonctions PHP supportées, sur le code PHP écrit dans le buffer courant et dans le code PHP écrit dans les autres fichiers qui sont ouverts dans la feêtre de XEmacs.

La complétion est paramètrable.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

5.1 Paramètres

`php-intelligent-tab'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; la touche TAB permet d'indenter de compléter et d'insérer des tabulations. Si `nil'; la touche TAB permet d'indenter uniquement.

`php-word-completion-in-minibuffer'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; active la completion dans le minibuffer.

`php-word-completion-case-sensitive'

Type : bool
Valeur par défaut : `nil'
Description : Si `t'; la completion est senssible à la casse des mots.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

6. Indentation

L'indentation peut être faite avec des espaces ou des tabulations. Une nouvelle ligne est automatiquement indentée. Vous pouvez indenter manuellement ou retirez l'indentation en plaçant le curseur au début du premier mot et en utilisant la touche TAB.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

6.1 Paramètres

`php-indent-tabs-mode'

Type : bool
Valeur par défaut : `nil'
Description : Si `t'; l'indentation se fait par des tabs. Si `nil'; l'indentation se fait par des espaces.

`php-basic-offset'

Type : entier
Valeur par défaut : `4'
Description : Nombre d'espaces constituants l'indentation du code PHP.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

6.2 Fonctions

`indent-according-to-mode'

Menu : PHP -> Indent -> Line
Raccourci clavier : C-c C-i C-l
Description : Cette fonction est utiliée pour indenter la ligne courante (la ligne où est le curseur).

`php-indent-region'

Menu : PHP -> Indent -> Region
Raccourci clavier : M-C-, Cette fonction est utilisée pour indenter la region selectionnée dans le buffer courant.
Description :

`php-indent-buffer'

Menu : PHP -> Indent -> Buffer
Raccourci clavier : C-c C-i C-b
Description : Cette fonction est utilisée pour indenter le buffer.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

7. Bégaiement

Le mode "Bégaiement" est un mode qui affecte un fonction à une touche du clavier. Par exemple, quand vous utilisez la touche ENTER, la fonction associée va créer une nouvelle ligne et l'indenter.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

7.1 Paramètres

`php-stutter-mode'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; active le "bégaiement". L'activation de ce mode est indiquée par "/s" après le nom du mode et peut être modifié en utilisant `php-stutter-mode'.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

7.2 Fonctions

SPACE

Si dans un commentaire, indente le commentaire et ajoute une nouvelle ligne si besoin. Dans les autres cas, ajoute un espace.

ENTER

Ajoute une nouvelle ligne et l'indente.

}

Ajoute une nouvelle ligne et l'indente.

;

Ajoute une nouvelle ligne et l'indente.

*

Si le caractère précédent est `/'; un prompt vous demande pour insérer un
commentaire du type `/* */' (avec la touche SPACE) ou un
commentaire du type `/**
*
*/'
(avec la touche *).

(

Si le caractère précédent est `(', les `((' vont être remplacées par `['.
Si le caractère précédent est `[', les `[(' vont être remplacées par `{'.
Dans les autres cas, ajoute `('.

)

Si le caractère précédent est `)', the `))' vont être remplacées par `]'.
Si le caractère précédent est `]', the `])' vont être remplacées par `}'.
Dans les autres cas, ajoute `)'.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8. Templates

Dans le PHP Mode, les fonctions PHP (comme if, while, for, fopen, fclose) sont prédéfinies dans des fonctions appelées "Templates".

Chaque template peut être invoqué par le nom de la fonction ou en utilisant la touche SPACE après le nom de la fonction PHP dans le buffer (Note, utiliser M-SPACE désactive le template).

Un template peut être annulé en utilisant C-g ou en laissant vide le prompt (dans le minibuffer).


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.1 Paramètres

`php-electric-mode'

Type : bool
Valeur par défaut : `t'
Description : Si `t'; active la génération automatique des templates. Si `nil'; les générateur de templates peuvent toujours être invoqués en utilisant les raccourcis clavier et le menu. L'activation de ce mode est indiquée par "/e" après le nom du mode et peut être modifié en utilisant `php-electric-mode'.

Pour une description complète des paramètres des templates, voir Template


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2 Fonctions


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.1 .NET

`php-template-dotnet-load'

Menu : PHP -> Templates -> .NET -> dotnet_load
Raccourcis clavier : aucun
Fonction PHP : dotnet_load


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.2 Apache

`php-template-apache-child-terminate'

Menu : PHP -> Templates -> Apache -> apache_child_terminate
Raccourcis clavier : aucun
Fonction PHP : apache_child_terminate

`php-template-apache-get-modules'

Menu : PHP -> Templates -> Apache -> apache_get_modules
Raccourcis clavier : aucun
Fonction PHP : apache_get_modules

`php-template-apache-get-version'

Menu : PHP -> Templates -> Apache -> apache_get_version
Raccourcis clavier : aucun
Fonction PHP : apache_get_version

`php-template-apache-getenv'

Menu : PHP -> Templates -> Apache -> apache_getenv
Raccourcis clavier : aucun
Fonction PHP : apache_getenv

`php-template-apache-lookup-uri'

Menu : PHP -> Templates -> Apache -> apache_lookup_uri
Raccourcis clavier : aucun
Fonction PHP : apache_lookup_uri

`php-template-apache-note'

Menu : PHP -> Templates -> Apache -> apache_note
Raccourcis clavier : aucun
Fonction PHP : apache_note

`php-template-apache-request-headers'

Menu : PHP -> Templates -> Apache -> apache_request_headers
Raccourcis clavier : aucun
Fonction PHP : apache_request_headers

`php-template-apache-reset-timeout'

Menu : PHP -> Templates -> Apache -> apache_reset_timeout
Raccourcis clavier : aucun
Fonction PHP : apache_reset_timeout

`php-template-apache-response-headers'

Menu : PHP -> Templates -> Apache -> apache_response_headers
Raccourcis clavier : aucun
Fonction PHP : apache_response_headers

`php-template-apache-setenv'

Menu : PHP -> Templates -> Apache -> apache_setenv
Raccourcis clavier : aucun
Fonction PHP : apache_setenv

`php-template-ascii2ebcdic'

Menu : PHP -> Templates -> Apache -> ascii2ebcdic
Raccourcis clavier : aucun
Fonction PHP : ascii2ebcdic

`php-template-ebcdic2ascii'

Menu : PHP -> Templates -> Apache -> ebcdic2ascii
Raccourcis clavier : aucun
Fonction PHP : ebcdic2ascii

`php-template-getallheaders'

Menu : PHP -> Templates -> Apache -> getallheaders
Raccourcis clavier : aucun
Fonction PHP : getallheaders

`php-template-virtual'

Menu : PHP -> Templates -> Apache -> virtual
Raccourcis clavier : aucun
Fonction PHP : virtual


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.3 APC

`php-template-apc-cache-info'

Menu : PHP -> Templates -> APC -> apc_cache_info
Raccourcis clavier : aucun
Fonction PHP : apc_cache_info

`php-template-apc-clear-cache'

Menu : PHP -> Templates -> APC -> apc_clear_cache
Raccourcis clavier : aucun
Fonction PHP : apc_clear_cache

`php-template-apc-define-constants'

Menu : PHP -> Templates -> APC -> apc_define_constants
Raccourcis clavier : aucun
Fonction PHP : apc_define_constants

`php-template-apc-delete'

Menu : PHP -> Templates -> APC -> apc_delete
Raccourcis clavier : aucun
Fonction PHP : apc_delete

`php-template-apc-fetch'

Menu : PHP -> Templates -> APC -> apc_fetch
Raccourcis clavier : aucun
Fonction PHP : apc_fetch

`php-template-apc-load-constants'

Menu : PHP -> Templates -> APC -> apc_load_constants
Raccourcis clavier : aucun
Fonction PHP : apc_load_constants

`php-template-apc-sma-info'

Menu : PHP -> Templates -> APC -> apc_sma_info
Raccourcis clavier : aucun
Fonction PHP : apc_sma_info

`php-template-apc-store'

Menu : PHP -> Templates -> APC -> apc_store
Raccourcis clavier : aucun
Fonction PHP : apc_store


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.4 Tableaux

`php-template-array-change-key-case'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_change_key_case
Raccourcis clavier : aucun
Fonction PHP : array_change_key_case

`php-template-array-chunk'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_chunk
Raccourcis clavier : aucun
Fonction PHP : array_chunk

`php-template-array-combine'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_combine
Raccourcis clavier : aucun
Fonction PHP : array_combine

`php-template-array-count-values'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_count_values
Raccourcis clavier : aucun
Fonction PHP : array_count_values

`php-template-array-diff-assoc'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_assoc
Raccourcis clavier : aucun
Fonction PHP : array_diff_assoc

`php-template-array-diff-key'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_key
Raccourcis clavier : aucun
Fonction PHP : array_diff_key

`php-template-array-diff-uassoc'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_uassoc
Raccourcis clavier : aucun
Fonction PHP : array_diff_uassoc

`php-template-array-diff-ukey'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_ukey
Raccourcis clavier : aucun
Fonction PHP : array_diff_ukey

`php-template-array-diff'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff
Raccourcis clavier : aucun
Fonction PHP : array_diff

`php-template-array-fill'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_fill
Raccourcis clavier : aucun
Fonction PHP : array_fill

`php-template-array-filter'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_filter
Raccourcis clavier : aucun
Fonction PHP : array_filter

`php-template-array-flip'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_flip
Raccourcis clavier : aucun
Fonction PHP : array_flip

`php-template-array-intersect-assoc'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_assoc
Raccourcis clavier : aucun
Fonction PHP : array_intersect_assoc

`php-template-array-intersect-key'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_key
Raccourcis clavier : aucun
Fonction PHP : array_intersect_key

`php-template-array-intersect-uassoc'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_uassoc
Raccourcis clavier : aucun
Fonction PHP : array_intersect_uassoc

`php-template-array-intersect-ukey'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_ukey
Raccourcis clavier : aucun
Fonction PHP : array_intersect_ukey

`php-template-array-intersect'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect
Raccourcis clavier : aucun
Fonction PHP : array_intersect

`php-template-array-exists'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_key_exists
Raccourcis clavier : aucun
Fonction PHP : array_key_exists

`php-template-array-keys'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_keys
Raccourcis clavier : aucun
Fonction PHP : array_keys

`php-template-array-map'

Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_map
Raccourcis clavier : aucun
Fonction PHP : array_map

`php-template-array-merge-recursive'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_merge_recursive
Raccourcis clavier : aucun
Fonction PHP : array_merge_recursive

`php-template-array-merge'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_merge
Raccourcis clavier : aucun
Fonction PHP : array_merge

`php-template-array-multisort'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_multisort
Raccourcis clavier : aucun
Fonction PHP : array_multisort

`php-template-array-pad'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_pad
Raccourcis clavier : aucun
Fonction PHP : array_pad

`php-template-array-pop'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_pop
Raccourcis clavier : aucun
Fonction PHP : array_pop

`php-template-array-product'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_product
Raccourcis clavier : aucun
Fonction PHP : array_product

`php-template-array-push'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_push
Raccourcis clavier : aucun
Fonction PHP : array_push

`php-template-array-rand'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_rand
Raccourcis clavier : aucun
Fonction PHP : array_rand

`php-template-array-reduce'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_reduce
Raccourcis clavier : aucun
Fonction PHP : array_reduce

`php-template-array-reverse'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_reverse
Raccourcis clavier : aucun
Fonction PHP : array_reverse

`php-template-array-search'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_search
Raccourcis clavier : aucun
Fonction PHP : array_search

`php-template-array-shift'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_shift
Raccourcis clavier : aucun
Fonction PHP : array_shift

`php-template-array-slice'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_slice
Raccourcis clavier : aucun
Fonction PHP : array_slice

`php-template-array-splice'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_splice
Raccourcis clavier : aucun
Fonction PHP : array_splice

`php-template-array-sum'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_sum
Raccourcis clavier : aucun
Fonction PHP : array_sum

`php-template-array-udiff-assoc'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_udiff_assoc
Raccourcis clavier : aucun
Fonction PHP : array_udiff_assoc

`php-template-array-udiff-uassoc'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_udiff_uassoc
Raccourcis clavier : aucun
Fonction PHP : array_udiff_uassoc

`php-template-array-udiff'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_udiff
Raccourcis clavier : aucun
Fonction PHP : array_udiff

`php-template-array-uintersect-assoc'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_uintersect_assoc
Raccourcis clavier : aucun
Fonction PHP : array_uintersect_assoc

`php-template-array-uintersect-uassoc'

Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_assoc) -> array_uintersect_uassoc
Raccourcis clavier : aucun
Fonction PHP : array_uintersect_uassoc

`php-template-array-uintersect'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_uintersect
Raccourcis clavier : aucun
Fonction PHP : array_uintersect

`php-template-array-unique'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_unique
Raccourcis clavier : aucun
Fonction PHP : array_unique

`php-template-array-unshift'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_unshift
Raccourcis clavier : aucun
Fonction PHP : array_unshift

`php-template-array-values'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_values
Raccourcis clavier : aucun
Fonction PHP : array_values

`php-template-array-walk-recursive'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_walk_recursive
Raccourcis clavier : aucun
Fonction PHP : array_walk_recursive

`php-template-array-walk'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_walk
Raccourcis clavier : aucun
Fonction PHP : array_walk

`php-template-array'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array
Raccourcis clavier : aucun
Fonction PHP : array

`php-template-arsort'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> arsort
Raccourcis clavier : aucun
Fonction PHP : arsort

`php-template-asort'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> asort
Raccourcis clavier : aucun
Fonction PHP : asort

`php-template-compact'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> compact
Raccourcis clavier : aucun
Fonction PHP : compact

`php-template-count'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> count
Raccourcis clavier : aucun
Fonction PHP : count

`php-template-current'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> current
Raccourcis clavier : aucun
Fonction PHP : current

`php-template-each'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> each
Raccourcis clavier : aucun
Fonction PHP : each

`php-template-end'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> end
Raccourcis clavier : aucun
Fonction PHP : end

`php-template-extract'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> extract
Raccourcis clavier : aucun
Fonction PHP : extract

`php-template-in-array'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> in_array
Raccourcis clavier : aucun
Fonction PHP : in_array

`php-template-key'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> key
Raccourcis clavier : aucun
Fonction PHP : key

`php-template-krsort'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> krsort
Raccourcis clavier : aucun
Fonction PHP : krsort

`php-template-ksort'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> ksort
Raccourcis clavier : aucun
Fonction PHP : ksort

`php-template-list'

Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> list
Raccourcis clavier : aucun
Fonction PHP : list

`php-template-natcasesort'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> natcasesort
Raccourcis clavier : aucun
Fonction PHP : natcasesort

`php-template-natsort'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> natsort
Raccourcis clavier : aucun
Fonction PHP : natsort

`php-template-next'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> next
Raccourcis clavier : aucun
Fonction PHP : next

`php-template-pos'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> pos
Raccourcis clavier : aucun
Fonction PHP : pos

`php-template-prev'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> prev
Raccourcis clavier : aucun
Fonction PHP : prev

`php-template-range'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> range
Raccourcis clavier : aucun
Fonction PHP : range

`php-template-reset'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> reset
Raccourcis clavier : aucun
Fonction PHP : reset

`php-template-rsort'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> rsort
Raccourcis clavier : aucun
Fonction PHP : rsort

`php-template-shuffle'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> shuffle
Raccourcis clavier : aucun
Fonction PHP : shuffle

`php-template-sizeof'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> sizeof
Raccourcis clavier : aucun
Fonction PHP : sizeof

`php-template-sort'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> sort
Raccourcis clavier : aucun
Fonction PHP : sort

`php-template-uasort'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> uasort
Raccourcis clavier : aucun
Fonction PHP : uasort

`php-template-uksort'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> uksort
Raccourcis clavier : aucun
Fonction PHP : uksort

`php-template-usort'

Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> usort
Raccourcis clavier : aucun
Fonction PHP : usort


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.5 Structures de contrôle

`php-template-break'

Menu : PHP -> Templates -> Control Structures -> break
Raccourcis clavier : aucun
Fonction PHP : break

`php-template-continue'

Menu : PHP -> Templates -> Control Structures -> continue
Raccourcis clavier : aucun
Fonction PHP : continue

`php-template-do-while'

Menu : PHP -> Templates -> Control Structures -> do-while
Raccourcis clavier : aucun
Fonction PHP : do-while

`php-template-else'

Menu : PHP -> Templates -> Control Structures -> else
Raccourcis clavier : aucun
Fonction PHP : else

`php-template-elseif'

Menu : PHP -> Templates -> Control Structures -> elseif
Raccourcis clavier : aucun
Fonction PHP : elseif

`php-template-for'

Menu : PHP -> Templates -> Control Structures -> for
Raccourcis clavier : aucun
Fonction PHP : for

`php-template-foreach'

Menu : PHP -> Templates -> Control Structures -> foreach
Raccourcis clavier : aucun
Fonction PHP : foreach

`php-template-if'

Menu : PHP -> Templates -> Control Structures -> if
Raccourcis clavier : aucun
Fonction PHP : if

`php-template-include'

Menu : PHP -> Templates -> Control Structures -> include
Raccourcis clavier : aucun
Fonction PHP : include

`php-template-include-once'

Menu : PHP -> Templates -> Control Structures -> include_once
Raccourcis clavier : aucun
Fonction PHP : include_once

`php-template-require'

Menu : PHP -> Templates -> Control Structures -> require
Raccourcis clavier : aucun
Fonction PHP : require

`php-template-require-once'

Menu : PHP -> Templates -> Control Structures -> require_once
Raccourcis clavier : aucun
Fonction PHP : require_once

`php-template-return'

Menu : PHP -> Templates -> Control Structures -> return
Raccourcis clavier : aucun
Fonction PHP : return

`php-template-switch'

Menu : PHP -> Templates -> Control Structures -> switch
Raccourcis clavier : aucun
Fonction PHP : switch

`php-template-while'

Menu : PHP -> Templates -> Control Structures -> while
Raccourcis clavier : aucun
Fonction PHP : while


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.6 Date/Temps

`php-template-checkdate'

Menu : PHP -> Templates -> Date/Time Functions -> checkdate
Raccourcis clavier : aucun
Fonction PHP : checkdate

`php-template-date-default-timezone-get'

Menu : PHP -> Templates -> Date/Time Functions -> date_default_timezone_get
Raccourcis clavier : aucun
Fonction PHP : date_default_timezone_get

`php-template-date-default-timezone-set'

Menu : PHP -> Templates -> Date/Time Functions -> date_default_timezone_set
Raccourcis clavier : aucun
Fonction PHP : date_default_timezone_set

`php-template-date-sunrise'

Menu : PHP -> Templates -> Date/Time Functions -> date_sunrise
Raccourcis clavier : aucun
Fonction PHP : date_sunrise

`php-template-date-sunset'

Menu : PHP -> Templates -> Date/Time Functions -> date_sunset
Raccourcis clavier : aucun
Fonction PHP : date_sunset

`php-template-date'

Menu : PHP -> Templates -> Date/Time Functions -> date
Raccourcis clavier : aucun
Fonction PHP : date

`php-template-getdate'

Menu : PHP -> Templates -> Date/Time Functions -> getdate
Raccourcis clavier : aucun
Fonction PHP : getdate

`php-template-gettimeofday'

Menu : PHP -> Templates -> Date/Time Functions -> gettimeofday
Raccourcis clavier : aucun
Fonction PHP : gettimeofday

`php-template-gmdate'

Menu : PHP -> Templates -> Date/Time Functions -> gmdate
Raccourcis clavier : aucun
Fonction PHP : gmdate

`php-template-gmmktime'

Menu : PHP -> Templates -> Date/Time Functions -> gmmktime
Raccourcis clavier : aucun
Fonction PHP : gmmktime

`php-template-gmstrftime'

Menu : PHP -> Templates -> Date/Time Functions -> gmstrftime
Raccourcis clavier : aucun
Fonction PHP : gmstrftime

`php-template-idate'

Menu : PHP -> Templates -> Date/Time Functions -> idate
Raccourcis clavier : aucun
Fonction PHP : idate

`php-template-localtime'

Menu : PHP -> Templates -> Date/Time Functions -> localtime
Raccourcis clavier : aucun
Fonction PHP : localtime

`php-template-microtime'

Menu : PHP -> Templates -> Date/Time Functions -> microtime
Raccourcis clavier : aucun
Fonction PHP : microtime

`php-template-mktime'

Menu : PHP -> Templates -> Date/Time Functions -> mktime
Raccourcis clavier : aucun
Fonction PHP : mktime

`php-template-strftime'

Menu : PHP -> Templates -> Date/Time Functions -> strftime
Raccourcis clavier : aucun
Fonction PHP : strftime

`php-template-strptime'

Menu : PHP -> Templates -> Date/Time Functions -> strptime
Raccourcis clavier : aucun
Fonction PHP : strptime

`php-template-strtotime'

Menu : PHP -> Templates -> Date/Time Functions -> strtotime
Raccourcis clavier : aucun
Fonction PHP : strtotime

`php-template-time'

Menu : PHP -> Templates -> Date/Time Functions -> time
Raccourcis clavier : aucun
Fonction PHP : time


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.7 Répertoire

`php-template-chdir'

Menu : PHP -> Templates -> Directory Functions -> chdir
Raccourcis clavier : aucun
Fonction PHP : chdir

`php-template-chroot'

Menu : PHP -> Templates -> Directory Functions -> chroot
Raccourcis clavier : aucun
Fonction PHP : chroot

`php-template-dir'

Menu : PHP -> Templates -> Directory Functions -> dir
Raccourcis clavier : aucun
Fonction PHP : dir

`php-template-closedir'

Menu : PHP -> Templates -> Directory Functions -> closedir
Raccourcis clavier : aucun
Fonction PHP : closedir

`php-template-getcwd'

Menu : PHP -> Templates -> Directory Functions -> getcwd
Raccourcis clavier : aucun
Fonction PHP : getcwd

`php-template-opendir'

Menu : PHP -> Templates -> Directory Functions -> opendir
Raccourcis clavier : aucun
Fonction PHP : opendir

`php-template-readdir'

Menu : PHP -> Templates -> Directory Functions -> readdir
Raccourcis clavier : aucun
Fonction PHP : readdir

`php-template-rewinddir'

Menu : PHP -> Templates -> Directory Functions -> rewinddir
Raccourcis clavier : aucun
Fonction PHP : rewinddir

`php-template-scandir'

Menu : PHP -> Templates -> Directory Functions -> scandir
Raccourcis clavier : aucun
Fonction PHP : scandir


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.8 Erreur

`php-template-debug-backtrace'

Menu : PHP -> Templates -> Error and Logging -> debug_backtrace
Raccourcis clavier : aucun
Fonction PHP : debug_backtrace

`php-template-debug-print-backtrace'

Menu : PHP -> Templates -> Error and Logging -> debug_print_backtrace
Raccourcis clavier : aucun
Fonction PHP : debug_print_backtrace

`php-template-error-log'

Menu : PHP -> Templates -> Error and Logging -> error_log
Raccourcis clavier : aucun
Fonction PHP : error_log

`php-template-error-reporting'

Menu : PHP -> Templates -> Error and Logging -> error_reporting
Raccourcis clavier : aucun
Fonction PHP : error_reporting

`php-template-restore-error-handler'

Menu : PHP -> Templates -> Error and Logging -> restore_error_handler
Raccourcis clavier : aucun
Fonction PHP : restore_error_handler

`php-template-restore-exception-handler'

Menu : PHP -> Templates -> Error and Logging -> restore_exception_handler
Raccourcis clavier : aucun
Fonction PHP : restore_exception_handler

`php-template-set-error-handler'

Menu : PHP -> Templates -> Error and Logging -> set_error_handler
Raccourcis clavier : aucun
Fonction PHP : set_error_handler

`php-template-set-exception-handler'

Menu : PHP -> Templates -> Error and Logging -> set_exception_handler
Raccourcis clavier : aucun
Fonction PHP : set_exception_handler

`php-template-trigger-error'

Menu : PHP -> Templates -> Error and Logging -> trigger_error
Raccourcis clavier : aucun
Fonction PHP : trigger_error

`php-template-user-error'

Menu : PHP -> Templates -> Error and Logging -> user_error
Raccourcis clavier : aucun
Fonction PHP : user_error


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.9 Système de fichier

`php-template-basename'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> basename
Raccourcis clavier : aucun
Fonction PHP : basename

`php-template-chgrp'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> chgrp
Raccourcis clavier : aucun
Fonction PHP : chgrp

`php-template-chmod'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> chmod
Raccourcis clavier : aucun
Fonction PHP : chmod

`php-template-chown'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> chown
Raccourcis clavier : aucun
Fonction PHP : chown

`php-template-clearstatcache'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> clearstatcache
Raccourcis clavier : aucun
Fonction PHP : clearstatcache

`php-template-copy'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> copy
Raccourcis clavier : aucun
Fonction PHP : copy

`php-template-delete'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> delete
Raccourcis clavier : aucun
Fonction PHP : delete

`php-template-dirname'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> dirname
Raccourcis clavier : aucun
Fonction PHP : dirname

`php-template-disk-free-space'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> disk_free_space
Raccourcis clavier : aucun
Fonction PHP : disk_free_space

`php-template-disk-total-space'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> disk_total_space
Raccourcis clavier : aucun
Fonction PHP : disk_total_space

`php-template-diskfreespace'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> diskfreespace
Raccourcis clavier : aucun
Fonction PHP : diskfreespace

`php-template-fclose'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fclose
Raccourcis clavier : aucun
Fonction PHP : fclose

`php-template-feof'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> feof
Raccourcis clavier : aucun
Fonction PHP : feof

`php-template-fflush'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fflush
Raccourcis clavier : aucun
Fonction PHP : fflush

`php-template-fgetc'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgetc
Raccourcis clavier : aucun
Fonction PHP : fgetc

`php-template-fgetcsv'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgetcsv
Raccourcis clavier : aucun
Fonction PHP : fgetcsv

`php-template-fgets'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgets
Raccourcis clavier : aucun
Fonction PHP : fgets

`php-template-fgetss'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgetss
Raccourcis clavier : aucun
Fonction PHP : fgetss

`php-template-file-exists'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> file_exists
Raccourcis clavier : aucun
Fonction PHP : file_exists

`php-template-file-get-contents'

Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> file_get_contents
Raccourcis clavier : aucun
Fonction PHP : file_get_contents

`php-template-file-put-contents'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> file_put_contents
Raccourcis clavier : aucun
Fonction PHP : file_put_contents

`php-template-file'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> file
Raccourcis clavier : aucun
Fonction PHP : file

`php-template-fileatime'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileatime
Raccourcis clavier : aucun
Fonction PHP : fileatime

`php-template-filectime'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filectime
Raccourcis clavier : aucun
Fonction PHP : filectime

`php-template-filegroup'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filegroup
Raccourcis clavier : aucun
Fonction PHP : filegroup

`php-template-fileinode'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileinode
Raccourcis clavier : aucun
Fonction PHP : fileinode

`php-template-filemtime'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filemtime
Raccourcis clavier : aucun
Fonction PHP : filemtime

`php-template-fileowner'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileowner
Raccourcis clavier : aucun
Fonction PHP : fileowner

`php-template-fileperms'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileperms
Raccourcis clavier : aucun
Fonction PHP : fileperms

`php-template-filesize'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filesize
Raccourcis clavier : aucun
Fonction PHP : filesize

`php-template-filetype'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filetype
Raccourcis clavier : aucun
Fonction PHP : filetype

`php-template-flock'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> flock
Raccourcis clavier : aucun
Fonction PHP : flock

`php-template-fnmatch'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fnmatch
Raccourcis clavier : aucun
Fonction PHP : fnmatch

`php-template-fopen'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fopen
Raccourcis clavier : aucun
Fonction PHP : fopen

`php-template-fpassthru'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fpassthru
Raccourcis clavier : aucun
Fonction PHP : fpassthru

`php-template-fputcsv'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fputcsv
Raccourcis clavier : aucun
Fonction PHP : fputcsv

`php-template-fwrite'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fputs
Raccourcis clavier : aucun
Fonction PHP : fputs

`php-template-fread'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fread
Raccourcis clavier : aucun
Fonction PHP : fread

`php-template-fseek'

Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fseek
Raccourcis clavier : aucun
Fonction PHP : fseek

`php-template-fstat'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> fstat
Raccourcis clavier : aucun
Fonction PHP : fstat

`php-template-ftell'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> ftell
Raccourcis clavier : aucun
Fonction PHP : ftell

`php-template-ftruncate'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> ftruncate
Raccourcis clavier : aucun
Fonction PHP : ftruncate

`php-template-fwrite'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> fwrite
Raccourcis clavier : aucun
Fonction PHP : fwrite

`php-template-glob'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> glob
Raccourcis clavier : aucun
Fonction PHP : glob

`php-template-is-dir'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_dir
Raccourcis clavier : aucun
Fonction PHP : is_dir

`php-template-is-executable'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_executable
Raccourcis clavier : aucun
Fonction PHP : is_executable

`php-template-is-file'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_file
Raccourcis clavier : aucun
Fonction PHP : is_file

`php-template-is-link'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_link
Raccourcis clavier : aucun
Fonction PHP : is_link

`php-template-is-readable'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_readable
Raccourcis clavier : aucun
Fonction PHP : is_readable

`php-template-is-uploaded-file'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_uploaded_file
Raccourcis clavier : aucun
Fonction PHP : is_uploaded_file

`php-template-is-writable'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_writable
Raccourcis clavier : aucun
Fonction PHP : is_writable

`php-template-is-writable'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_writeable
Raccourcis clavier : aucun
Fonction PHP : is_writeable

`php-template-link'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> link
Raccourcis clavier : aucun
Fonction PHP : link

`php-template-linkinfo'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> linkinfo
Raccourcis clavier : aucun
Fonction PHP : linkinfo

`php-template-lstat'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> lstat
Raccourcis clavier : aucun
Fonction PHP : lstat

`php-template-mkdir'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> mkdir
Raccourcis clavier : aucun
Fonction PHP : mkdir

`php-template-move-uploaded-file'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> move_uploaded_file
Raccourcis clavier : aucun
Fonction PHP : move_uploaded_file

`php-template-parse-ini-file'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> parse_ini_file
Raccourcis clavier : aucun
Fonction PHP : parse_ini_file

`php-template-pathinfo'

Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> pathinfo
Raccourcis clavier : aucun
Fonction PHP : pathinfo

`php-template-pclose'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> pclose
Raccourcis clavier : aucun
Fonction PHP : pclose

`php-template-popen'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> popen
Raccourcis clavier : aucun
Fonction PHP : popen

`php-template-readfile'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> readfile
Raccourcis clavier : aucun
Fonction PHP : readfile

`php-template-readlink'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> readlink
Raccourcis clavier : aucun
Fonction PHP : readlink

`php-template-realpath'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> realpath
Raccourcis clavier : aucun
Fonction PHP : realpath

`php-template-rename'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> rename
Raccourcis clavier : aucun
Fonction PHP : rename

`php-template-rewind'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> rewind
Raccourcis clavier : aucun
Fonction PHP : rewind

`php-template-rmdir'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> rmdir
Raccourcis clavier : aucun
Fonction PHP : rmdir

`php-template-stat'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> stat
Raccourcis clavier : aucun
Fonction PHP : stat

`php-template-symlink'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> symlink
Raccourcis clavier : aucun
Fonction PHP : symlink

`php-template-tempnam'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> tempnam
Raccourcis clavier : aucun
Fonction PHP : tempnam

`php-template-tmpfile'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> tmpfile
Raccourcis clavier : aucun
Fonction PHP : tmpfile

`php-template-touch'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> touch
Raccourcis clavier : aucun
Fonction PHP : touch

`php-template-umask'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> umask
Raccourcis clavier : aucun
Fonction PHP : umask

`php-template-unlink'

Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> unlink
Raccourcis clavier : aucun
Fonction PHP : unlink


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.10 Fonctions

`php-template-call-user-func-array'

Menu : PHP -> Templates -> Functions -> call_user_func_array
Raccourcis clavier : aucun
Fonction PHP : call_user_func_array

`php-template-call-user-func'

Menu : PHP -> Templates -> Functions -> call_user_func
Raccourcis clavier : aucun
Fonction PHP : call_user_func

`php-template-create-function'

Menu : PHP -> Templates -> Functions -> create_function
Raccourcis clavier : aucun
Fonction PHP : create_function

`php-template-func-get-arg'

Menu : PHP -> Templates -> Functions -> func_get_arg
Raccourcis clavier : aucun
Fonction PHP : func_get_arg

`php-template-func-get-args'

Menu : PHP -> Templates -> Functions -> func_get_args
Raccourcis clavier : aucun
Fonction PHP : func_get_args

`php-template-func-num-args'

Menu : PHP -> Templates -> Functions -> func_num_args
Raccourcis clavier : aucun
Fonction PHP : func_num_args

`php-template-function-exists'

Menu : PHP -> Templates -> Functions -> function_exists
Raccourcis clavier : aucun
Fonction PHP : function_exists

`php-template-get-defined-functions'

Menu : PHP -> Templates -> Functions -> get_defined_functions
Raccourcis clavier : aucun
Fonction PHP : get_defined_functions

`php-template-register-shutdown-function'

Menu : PHP -> Templates -> Functions -> register_shutdown_function
Raccourcis clavier : aucun
Fonction PHP : register_shutdown_function

`php-template-register-tick-function'

Menu : PHP -> Templates -> Functions -> register_tick_function
Raccourcis clavier : aucun
Fonction PHP : register_tick_function

`php-template-unregister-tick-function'

Menu : PHP -> Templates -> Functions -> unregister_tick_function
Raccourcis clavier : aucun
Fonction PHP : unregister_tick_function


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.11 Image

`php-template-gd-info'

Menu : PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> gd_info
Raccourcis clavier : aucun
Fonction PHP : gd_info

`php-template-getimagesize'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> getimagesize
Raccourcis clavier : aucun
Fonction PHP : getimagesize

`php-template-image-type-to-extension'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> image_type_to_extension
Raccourcis clavier : aucun
Fonction PHP : image_type_to_extension

`php-template-image-type-to-mime-type'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> image_type_to_mime_type
Raccourcis clavier : aucun
Fonction PHP : image_type_to_mime_type

`php-template-image2wbmp'

Menu : PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> image2wbmp
Raccourcis clavier : aucun
Fonction PHP : image2wbmp

`php-template-imagealphablending'

Menu : PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> imagealphablending
Raccourcis clavier : aucun
Fonction PHP : imagealphablending

`php-template-imageantialias'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> imageantialias
Raccourcis clavier : aucun
Fonction PHP : imageantialias

`php-template-imagearc'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> imagearc
Raccourcis clavier : aucun
Fonction PHP : imagearc

`php-template-imagechar'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagechar
Raccourcis clavier : aucun
Fonction PHP : imagechar

`php-template-imagecharup'

Menu : PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecharup
Raccourcis clavier : aucun
Fonction PHP : imagecharup

`php-template-imagecolorallocate'

Menu : PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorallocate
Raccourcis clavier : aucun
Fonction PHP : imagecolorallocate

`php-template-imagecolorallocatealpha'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorallocatealpha
Raccourcis clavier : aucun
Fonction PHP : imagecolorallocatealpha

`php-template-imagecolorat'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorat
Raccourcis clavier : aucun
Fonction PHP : imagecolorat

`php-template-imagecolorclosest'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorclosest
Raccourcis clavier : aucun
Fonction PHP : imagecolorclosest

`php-template-imagecolorclosestalpha'

Menu : PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorclosestalpha
Raccourcis clavier : aucun
Fonction PHP : imagecolorclosestalpha

`php-template-imagecolorclosesthwb'

Menu : PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorclosesthwb
Raccourcis clavier : aucun
Fonction PHP : imagecolorclosesthwb

`php-template-imagecolordeallocate'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> imagecolordeallocate
Raccourcis clavier : aucun
Fonction PHP : imagecolordeallocate

`php-template-imagecolorexact'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorexact
Raccourcis clavier : aucun
Fonction PHP : imagecolorexact

`php-template-imagecolorexactalpha'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorexactalpha
Raccourcis clavier : aucun
Fonction PHP : imagecolorexactalpha

`php-template-imagecolormatch'

Menu : PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolormatch
Raccourcis clavier : aucun
Fonction PHP : imagecolormatch

`php-template-imagecolorresolve'

Menu : PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorresolve
Raccourcis clavier : aucun
Fonction PHP : imagecolorresolve

`php-template-imagecolorresolvealpha'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorresolvealpha
Raccourcis clavier : aucun
Fonction PHP : imagecolorresolvealpha

`php-template-imagecolorset'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorset
Raccourcis clavier : aucun
Fonction PHP : imagecolorset

`php-template-imagecolorsforindex'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorsforindex
Raccourcis clavier : aucun
Fonction PHP : imagecolorsforindex

`php-template-imagecolorstotal'

Menu : PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorstotal
Raccourcis clavier : aucun
Fonction PHP : imagecolorstotal

`php-template-imagecolortransparent'

Menu : PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolortransparent
Raccourcis clavier : aucun
Fonction PHP : imagecolortransparent

`php-template-imageconvolution'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imageconvolution
Raccourcis clavier : aucun
Fonction PHP : imageconvolution

`php-template-imagecopy'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopy
Raccourcis clavier : aucun
Fonction PHP : imagecopy

`php-template-imagecopymerge'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopymerge
Raccourcis clavier : aucun
Fonction PHP : imagecopymerge

`php-template-imagecopymergegray'

Menu : PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopymergegray
Raccourcis clavier : aucun
Fonction PHP : imagecopymergegray

`php-template-imagecopyresampled'

Menu : PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopyresampled
Raccourcis clavier : aucun
Fonction PHP : imagecopyresampled

`php-template-imagecopyresized'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopyresized
Raccourcis clavier : aucun
Fonction PHP : imagecopyresized

`php-template-imagecreate'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreate
Raccourcis clavier : aucun
Fonction PHP : imagecreate

`php-template-imagecreatefromgd2'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgd2
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromgd2

`php-template-imagecreatefromgd2part'

Menu : PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgd2part
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromgd2part

`php-template-imagecreatefromgd'

Menu : PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgd
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromgd

`php-template-imagecreatefromgif'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgif
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromgif

`php-template-imagecreatefromjpeg'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromjpeg
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromjpeg

`php-template-imagecreatefrompng'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefrompng
Raccourcis clavier : aucun
Fonction PHP : imagecreatefrompng

`php-template-imagecreatefromstring'

Menu : PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromstring
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromstring

`php-template-imagecreatefromwbmp'

Menu : PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatefromwbmp
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromwbmp

`php-template-imagecreatefromxbm'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatefromxbm
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromxbm

`php-template-imagecreatefromxpm'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatefromxpm
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromxpm

`php-template-imagecreatetruecolor'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatetruecolor
Raccourcis clavier : aucun
Fonction PHP : imagecreatetruecolor

`php-template-imagedashedline'

Menu : PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagedashedline
Raccourcis clavier : aucun
Fonction PHP : imagedashedline

`php-template-imagedestroy'

Menu : PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagedestroy
Raccourcis clavier : aucun
Fonction PHP : imagedestroy

`php-template-imageellipse'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imageellipse
Raccourcis clavier : aucun
Fonction PHP : imageellipse

`php-template-imagefill'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefill
Raccourcis clavier : aucun
Fonction PHP : imagefill

`php-template-imagefilledarc'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledarc
Raccourcis clavier : aucun
Fonction PHP : imagefilledarc

`php-template-imagefilledellipse'

Menu : PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledellipse
Raccourcis clavier : aucun
Fonction PHP : imagefilledellipse

`php-template-imagefilledpolygon'

Menu : PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledpolygon
Raccourcis clavier : aucun
Fonction PHP : imagefilledpolygon

`php-template-imagefilledrectangle'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledrectangle
Raccourcis clavier : aucun
Fonction PHP : imagefilledrectangle

`php-template-imagefilltoborder'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilltoborder
Raccourcis clavier : aucun
Fonction PHP : imagefilltoborder

`php-template-imagefilter'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilter
Raccourcis clavier : aucun
Fonction PHP : imagefilter

`php-template-imagefontheight'

Menu : PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefontheight
Raccourcis clavier : aucun
Fonction PHP : imagefontheight

`php-template-imagefontwidth'

Menu : PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefontwidth
Raccourcis clavier : aucun
Fonction PHP : imagefontwidth

`php-template-imageftbbox'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imageftbbox
Raccourcis clavier : aucun
Fonction PHP : imageftbbox

`php-template-imagefttext'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefttext
Raccourcis clavier : aucun
Fonction PHP : imagefttext

`php-template-imagegammacorrect'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagegammacorrect
Raccourcis clavier : aucun
Fonction PHP : imagegammacorrect

`php-template-imagegd2'

Menu : PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagegd2
Raccourcis clavier : aucun
Fonction PHP : imagegd2

`php-template-imagegd'

Menu : PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagegd
Raccourcis clavier : aucun
Fonction PHP : imagegd

`php-template-imagegif'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imagegif
Raccourcis clavier : aucun
Fonction PHP : imagegif

`php-template-imageinterlace'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imageinterlace
Raccourcis clavier : aucun
Fonction PHP : imageinterlace

`php-template-imageistruecolor'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imageistruecolor
Raccourcis clavier : aucun
Fonction PHP : imageistruecolor

`php-template-imagejpeg'

Menu : PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagejpeg
Raccourcis clavier : aucun
Fonction PHP : imagejpeg

`php-template-imagelayereffect'

Menu : PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagelayereffect
Raccourcis clavier : aucun
Fonction PHP : imagelayereffect

`php-template-imageline'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imageline
Raccourcis clavier : aucun
Fonction PHP : imageline

`php-template-imageloadfont'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imageloadfont
Raccourcis clavier : aucun
Fonction PHP : imageloadfont

`php-template-imagepalettecopy'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepalettecopy
Raccourcis clavier : aucun
Fonction PHP : imagepalettecopy

`php-template-imagepng'

Menu : PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepng
Raccourcis clavier : aucun
Fonction PHP : imagepng

`php-template-imagepolygon'

Menu : PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagepolygon
Raccourcis clavier : aucun
Fonction PHP : imagepolygon

`php-template-imagepsbbox'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imagepsbbox
Raccourcis clavier : aucun
Fonction PHP : imagepsbbox

`php-template-imagepsencodefont'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imagepsencodefont
Raccourcis clavier : aucun
Fonction PHP : imagepsencodefont

`php-template-imagepsextendfont'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepsextendfont
Raccourcis clavier : aucun
Fonction PHP : imagepsextendfont

`php-template-imagepsfreefont'

Menu : PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepsfreefont
Raccourcis clavier : aucun
Fonction PHP : imagepsfreefont

`php-template-imagepsloadfont'

Menu : PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagepsloadfont
Raccourcis clavier : aucun
Fonction PHP : imagepsloadfont

`php-template-imagepsslantfont'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imagepsslantfont
Raccourcis clavier : aucun
Fonction PHP : imagepsslantfont

`php-template-imagepstext'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imagepstext
Raccourcis clavier : aucun
Fonction PHP : imagepstext

`php-template-imagerectangle'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagerectangle
Raccourcis clavier : aucun
Fonction PHP : imagerectangle

`php-template-imagerotate'

Menu : PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagerotate
Raccourcis clavier : aucun
Fonction PHP : imagerotate

`php-template-imagesavealpha'

Menu : PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesavealpha
Raccourcis clavier : aucun
Fonction PHP : imagesavealpha

`php-template-imagesetbrush'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetbrush
Raccourcis clavier : aucun
Fonction PHP : imagesetbrush

`php-template-imagesetpixel'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetpixel
Raccourcis clavier : aucun
Fonction PHP : imagesetpixel

`php-template-imagesetstyle'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetstyle
Raccourcis clavier : aucun
Fonction PHP : imagesetstyle

`php-template-imagesetthickness'

Menu : PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetthickness
Raccourcis clavier : aucun
Fonction PHP : imagesetthickness

`php-template-imagesettile'

Menu : PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesettile
Raccourcis clavier : aucun
Fonction PHP : imagesettile

`php-template-imagestring'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> imagestring
Raccourcis clavier : aucun
Fonction PHP : imagestring

`php-template-imagestringup'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> imagestringup
Raccourcis clavier : aucun
Fonction PHP : imagestringup

`php-template-imagesx'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesx
Raccourcis clavier : aucun
Fonction PHP : imagesx

`php-template-imagesy'

Menu : PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesy
Raccourcis clavier : aucun
Fonction PHP : imagesy

`php-template-imagetruecolortopalette'

Menu : PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagetruecolortopalette
Raccourcis clavier : aucun
Fonction PHP : imagetruecolortopalette

`php-template-imagettfbbox'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> imagettfbbox
Raccourcis clavier : aucun
Fonction PHP : imagettfbbox

`php-template-imagettftext'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> imagettftext
Raccourcis clavier : aucun
Fonction PHP : imagettftext

`php-template-imagetypes'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagetypes
Raccourcis clavier : aucun
Fonction PHP : imagetypes

`php-template-imagewbmp'

Menu : PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagewbmp
Raccourcis clavier : aucun
Fonction PHP : imagewbmp

`php-template-imagexbm'

Menu : PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagexbm
Raccourcis clavier : aucun
Fonction PHP : imagexbm

`php-template-iptcembed'

Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> iptcembed
Raccourcis clavier : aucun
Fonction PHP : iptcembed

`php-template-iptcparse'

Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> iptcparse
Raccourcis clavier : aucun
Fonction PHP : iptcparse

`php-template-jpeg2wbmp'

Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> jpeg2wbmp
Raccourcis clavier : aucun
Fonction PHP : jpeg2wbmp

`php-template-png2wbmp'

Menu : PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> png2wbmp
Raccourcis clavier : aucun
Fonction PHP : png2wbmp


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.12 Mail

`php-template-ezmlm-hash'

Menu : PHP -> Templates -> Mail -> ezmlm_hash
Raccourcis clavier : aucun
Fonction PHP : ezmlm_hash

`php-template-mail'

Menu : PHP -> Templates -> Mail -> mail
Raccourcis clavier : aucun
Fonction PHP : mail


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.13 Mathématiques

`php-template-abs'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> abs
Raccourcis clavier : aucun
Fonction PHP : abs

`php-template-acos'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> acos
Raccourcis clavier : aucun
Fonction PHP : acos

`php-template-acosh'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> acosh
Raccourcis clavier : aucun
Fonction PHP : acosh

`php-template-asin'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> asin
Raccourcis clavier : aucun
Fonction PHP : asin

`php-template-asinh'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> asinh
Raccourcis clavier : aucun
Fonction PHP : asinh

`php-template-atan2'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> atan2
Raccourcis clavier : aucun
Fonction PHP : atan2

`php-template-atan'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> atan
Raccourcis clavier : aucun
Fonction PHP : atan

`php-template-atanh'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> atanh
Raccourcis clavier : aucun
Fonction PHP : atanh

`php-template-base-convert'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> base_convert
Raccourcis clavier : aucun
Fonction PHP : base_convert

`php-template-bindec'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> bindec
Raccourcis clavier : aucun
Fonction PHP : bindec

`php-template-ceil'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> ceil
Raccourcis clavier : aucun
Fonction PHP : ceil

`php-template-cos'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> cos
Raccourcis clavier : aucun
Fonction PHP : cos

`php-template-cosh'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> cosh
Raccourcis clavier : aucun
Fonction PHP : cosh

`php-template-decbin'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> decbin
Raccourcis clavier : aucun
Fonction PHP : decbin

`php-template-dechex'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> dechex
Raccourcis clavier : aucun
Fonction PHP : dechex

`php-template-decoct'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> decoct
Raccourcis clavier : aucun
Fonction PHP : decoct

`php-template-deg2rad'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> deg2rad
Raccourcis clavier : aucun
Fonction PHP : deg2rad

`php-template-exp'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> exp
Raccourcis clavier : aucun
Fonction PHP : exp

`php-template-expm1'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> expm1
Raccourcis clavier : aucun
Fonction PHP : expm1

`php-template-floor'

Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> floor
Raccourcis clavier : aucun
Fonction PHP : floor

`php-template-fmod'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> fmod
Raccourcis clavier : aucun
Fonction PHP : fmod

`php-template-getrandmax'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> getrandmax
Raccourcis clavier : aucun
Fonction PHP : getrandmax

`php-template-hexdec'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> hexdec
Raccourcis clavier : aucun
Fonction PHP : hexdec

`php-template-hypot'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> hypot
Raccourcis clavier : aucun
Fonction PHP : hypot

`php-template-is-finite'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> is_finite
Raccourcis clavier : aucun
Fonction PHP : is_finite

`php-template-is-infinite'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> is_infinite
Raccourcis clavier : aucun
Fonction PHP : is_infinite

`php-template-is-nan'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> is_nan
Raccourcis clavier : aucun
Fonction PHP : is_nan

`php-template-lcg-value'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> lcg_value
Raccourcis clavier : aucun
Fonction PHP : lcg_value

`php-template-log10'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> log10
Raccourcis clavier : aucun
Fonction PHP : log10

`php-template-log1p'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> log1p
Raccourcis clavier : aucun
Fonction PHP : log1p

`php-template-log'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> log
Raccourcis clavier : aucun
Fonction PHP : log

`php-template-max'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> max
Raccourcis clavier : aucun
Fonction PHP : max

`php-template-min'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> min
Raccourcis clavier : aucun
Fonction PHP : min

`php-template-mt-getrandmax'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> mt_getrandmax
Raccourcis clavier : aucun
Fonction PHP : mt_getrandmax

`php-template-mt-rand'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> mt_rand
Raccourcis clavier : aucun
Fonction PHP : mt_rand

`php-template-mt-srand'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> mt_srand
Raccourcis clavier : aucun
Fonction PHP : mt_srand

`php-template-octdec'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> octdec
Raccourcis clavier : aucun
Fonction PHP : octdec

`php-template-pi'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> pi
Raccourcis clavier : aucun
Fonction PHP : pi

`php-template-pow'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> pow
Raccourcis clavier : aucun
Fonction PHP : pow

`php-template-rad2deg'

Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> rad2deg
Raccourcis clavier : aucun
Fonction PHP : rad2deg

`php-template-rand'

Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> rand
Raccourcis clavier : aucun
Fonction PHP : rand

`php-template-round'

Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> round
Raccourcis clavier : aucun
Fonction PHP : round

`php-template-sin'

Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> sin
Raccourcis clavier : aucun
Fonction PHP : sin

`php-template-sinh'

Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> sinh
Raccourcis clavier : aucun
Fonction PHP : sinh

`php-template-sqrt'

Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> sqrt
Raccourcis clavier : aucun
Fonction PHP : sqrt

`php-template-srand'

Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> srand
Raccourcis clavier : aucun
Fonction PHP : srand

`php-template-tan'

Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> tan
Raccourcis clavier : aucun
Fonction PHP : tan

`php-template-tanh'

Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> tanh
Raccourcis clavier : aucun
Fonction PHP : tanh


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.14 Fonctions diverses

`php-template-connection-aborted'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> connection_aborted
Raccourcis clavier : aucun
Fonction PHP : connection_aborted

`php-template-connection-status'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> connection_status
Raccourcis clavier : aucun
Fonction PHP : connection_status

`php-template-connection-timeout'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> connection_timeout
Raccourcis clavier : aucun
Fonction PHP : connection_timeout

`php-template-constant'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> constant
Raccourcis clavier : aucun
Fonction PHP : constant

`php-template-define'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> define
Raccourcis clavier : aucun
Fonction PHP : define

`php-template-defined'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> defined
Raccourcis clavier : aucun
Fonction PHP : defined

`php-template-die'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> die
Raccourcis clavier : aucun
Fonction PHP : die

`php-template-eval'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> eval
Raccourcis clavier : aucun
Fonction PHP : eval

`php-template-exit'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> exit
Raccourcis clavier : aucun
Fonction PHP : exit

`php-template-get-browser'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> get_browser
Raccourcis clavier : aucun
Fonction PHP : get_browser

`php-template-halt-compiler'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> __halt_compiler
Raccourcis clavier : aucun
Fonction PHP : __halt_compiler

`php-template-highlight-file'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> highlight_file
Raccourcis clavier : aucun
Fonction PHP : highlight_file

`php-template-highlight-string'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> highlight_string
Raccourcis clavier : aucun
Fonction PHP : highlight_string

`php-template-ignore-user-abort'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> ignore_user_abort
Raccourcis clavier : aucun
Fonction PHP : ignore_user_abort

`php-template-pack'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> pack
Raccourcis clavier : aucun
Fonction PHP : pack

`php-template-php-check-syntax'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> php_check_syntax
Raccourcis clavier : aucun
Fonction PHP : php_check_syntax

`php-template-php-strip-whitespace'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> php_strip_whitespace
Raccourcis clavier : aucun
Fonction PHP : php_strip_whitespace

`php-template-show-source'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> show_source
Raccourcis clavier : aucun
Fonction PHP : show_source

`php-template-sleep'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> sleep
Raccourcis clavier : aucun
Fonction PHP : sleep

`php-template-sys-getloadavg'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> sys_getloadavg
Raccourcis clavier : aucun
Fonction PHP : sys_getloadavg

`php-template-time-nanosleep'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> time_nanosleep
Raccourcis clavier : aucun
Fonction PHP : time_nanosleep

`php-template-time-sleep-until'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> time_sleep_until
Raccourcis clavier : aucun
Fonction PHP : time_sleep_until

`php-template-uniqid'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> uniqid
Raccourcis clavier : aucun
Fonction PHP : uniqid

`php-template-unpack'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> unpack
Raccourcis clavier : aucun
Fonction PHP : unpack

`php-template-usleep'

Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> usleep
Raccourcis clavier : aucun
Fonction PHP : usleep


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.15 MySQL

`php-template-mysql-affected-rows'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_affected_rows
Raccourcis clavier : aucun
Fonction PHP : mysql_affected_rows

`php-template-mysql-change-user'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_change_user
Raccourcis clavier : aucun
Fonction PHP : mysql_change_user

`php-template-mysql-client-encoding'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_client_encoding
Raccourcis clavier : aucun
Fonction PHP : mysql_client_encoding

`php-template-mysql-close'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_close
Raccourcis clavier : aucun
Fonction PHP : mysql_close

`php-template-mysql-connect'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_connect
Raccourcis clavier : aucun
Fonction PHP : mysql_connect

`php-template-mysql-create-db'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_create_db
Raccourcis clavier : aucun
Fonction PHP : mysql_create_db

`php-template-mysql-data-seek'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_data_seek
Raccourcis clavier : aucun
Fonction PHP : mysql_data_seek

`php-template-mysql-db-name'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_db_name
Raccourcis clavier : aucun
Fonction PHP : mysql_db_name

`php-template-mysql-db-query'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_db_query
Raccourcis clavier : aucun
Fonction PHP : mysql_db_query

`php-template-mysql-drop-db'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_drop_db
Raccourcis clavier : aucun
Fonction PHP : mysql_drop_db

`php-template-mysql-errno'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_errno
Raccourcis clavier : aucun
Fonction PHP : mysql_errno

`php-template-mysql-error'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_error
Raccourcis clavier : aucun
Fonction PHP : mysql_error

`php-template-mysql-escape-string'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_escape_string
Raccourcis clavier : aucun
Fonction PHP : mysql_escape_string

`php-template-mysql-fetch-array'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_array
Raccourcis clavier : aucun
Fonction PHP : mysql_fetch_array

`php-template-mysql-fetch-assoc'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_assoc
Raccourcis clavier : aucun
Fonction PHP : mysql_fetch_assoc

`php-template-mysql-fetch-field'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_field
Raccourcis clavier : aucun
Fonction PHP : mysql_fetch_field

`php-template-mysql-fetch-lengths'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_lengths
Raccourcis clavier : aucun
Fonction PHP : mysql_fetch_lengths

`php-template-mysql-fetch-object'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_object
Raccourcis clavier : aucun
Fonction PHP : mysql_fetch_object

`php-template-mysql-fetch-row'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_row
Raccourcis clavier : aucun
Fonction PHP : mysql_fetch_row

`php-template-mysql-field-flags'

Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_field_flags
Raccourcis clavier : aucun
Fonction PHP : mysql_field_flags

`php-template-mysql-field-len'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_len
Raccourcis clavier : aucun
Fonction PHP : mysql_field_len

`php-template-mysql-field-name'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_name
Raccourcis clavier : aucun
Fonction PHP : mysql_field_name

`php-template-mysql-field-seek'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_seek
Raccourcis clavier : aucun
Fonction PHP : mysql_field_seek

`php-template-mysql-field-table'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_table
Raccourcis clavier : aucun
Fonction PHP : mysql_field_table

`php-template-mysql-field-type'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_type
Raccourcis clavier : aucun
Fonction PHP : mysql_field_type

`php-template-mysql-free-result'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_free_result
Raccourcis clavier : aucun
Fonction PHP : mysql_free_result

`php-template-mysql-get-client-info'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_client_info
Raccourcis clavier : aucun
Fonction PHP : mysql_get_client_info

`php-template-mysql-get-host-info'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_host_info
Raccourcis clavier : aucun
Fonction PHP : mysql_get_host_info

`php-template-mysql-get-proto-info'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_proto_info
Raccourcis clavier : aucun
Fonction PHP : mysql_get_proto_info

`php-template-mysql-get-server-info'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_server_info
Raccourcis clavier : aucun
Fonction PHP : mysql_get_server_info

`php-template-mysql-info'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_info
Raccourcis clavier : aucun
Fonction PHP : mysql_info

`php-template-mysql-insert-id'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_insert_id
Raccourcis clavier : aucun
Fonction PHP : mysql_insert_id

`php-template-mysql-list-dbs'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_dbs
Raccourcis clavier : aucun
Fonction PHP : mysql_list_dbs

`php-template-mysql-list-fields'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_fields
Raccourcis clavier : aucun
Fonction PHP : mysql_list_fields

`php-template-mysql-list-processes'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_processes
Raccourcis clavier : aucun
Fonction PHP : mysql_list_processes

`php-template-mysql-list-tables'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_tables
Raccourcis clavier : aucun
Fonction PHP : mysql_list_tables

`php-template-mysql-num-fields'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_num_fields
Raccourcis clavier : aucun
Fonction PHP : mysql_num_fields

`php-template-mysql-num-rows'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_num_rows
Raccourcis clavier : aucun
Fonction PHP : mysql_num_rows

`php-template-mysql-pconnect'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_pconnect
Raccourcis clavier : aucun
Fonction PHP : mysql_pconnect

`php-template-mysql-ping'

Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_ping
Raccourcis clavier : aucun
Fonction PHP : mysql_ping

`php-template-mysql-query'

Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_query
Raccourcis clavier : aucun
Fonction PHP : mysql_query

`php-template-mysql-real-escape-string'

Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_real_escape_string
Raccourcis clavier : aucun
Fonction PHP : mysql_real_escape_string

`php-template-mysql-result'

Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_result
Raccourcis clavier : aucun
Fonction PHP : mysql_result

`php-template-mysql-select-db'

Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_select_db
Raccourcis clavier : aucun
Fonction PHP : mysql_select_db

`php-template-mysql-stat'

Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_stat
Raccourcis clavier : aucun
Fonction PHP : mysql_stat

`php-template-mysql-tablename'

Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_tablename
Raccourcis clavier : aucun
Fonction PHP : mysql_tablename

`php-template-mysql-thread-id'

Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_thread_id
Raccourcis clavier : aucun
Fonction PHP : mysql_thread_id

`php-template-mysql-unbuffered-query'

Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_unbuffered_query
Raccourcis clavier : aucun
Fonction PHP : mysql_unbuffered_query


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.16 Autres

`php-template-class'

Menu : PHP -> Templates -> Others -> class
Raccourcis clavier : aucun
Fonction PHP : class

`php-template-function'

Menu : PHP -> Templates -> Others -> function
Raccourcis clavier : aucun
Fonction PHP : function


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.17 Expressions régulières

`php-template-ereg-replace'

Menu : PHP -> Templates -> Regular Expressions -> ereg_replace
Raccourcis clavier : aucun
Fonction PHP : ereg_replace

`php-template-ereg'

Menu : PHP -> Teemplates -> Regular Expressions -> ereg
Raccourcis clavier : aucun
Fonction PHP : ereg

`php-template-eregi-replace'

Menu : PHP -> Teemplates -> Regular Expressions -> eregi_replace
Raccourcis clavier : aucun
Fonction PHP : eregi_replace

`php-template-eregi'

Menu : PHP -> Templates -> Regular Expressions -> eregi
Raccourcis clavier : aucun
Fonction PHP : eregi

`php-template-split'

Menu : PHP -> Teemplates -> Regular Expressions -> split
Raccourcis clavier : aucun
Fonction PHP : split

`php-template-spliti'

Menu : PHP -> Teemplates -> Regular Expressions -> spliti
Raccourcis clavier : aucun
Fonction PHP : spliti

`php-template-sql-regcase'

Menu : PHP -> Templates -> Regular Expressions -> sql_regcase
Raccourcis clavier : aucun
Fonction PHP : sql_regcase


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.18 Session

`php-template-session-cache-expire'

Menu : PHP -> Templates -> Session -> session_cache_expire
Raccourcis clavier : aucun
Fonction PHP : session_cache_expire

`php-template-session-cache-limiter'

Menu : PHP -> Templates -> Session -> session_cache_limiter
Raccourcis clavier : aucun
Fonction PHP : session_cache_limiter

`php-template-session-commit'

Menu : PHP -> Templates -> Session -> session_commit
Raccourcis clavier : aucun
Fonction PHP : session_commit

`php-template-session-decode'

Menu : PHP -> Templates -> Session -> session_decode
Raccourcis clavier : aucun
Fonction PHP : session_decode

`php-template-session-destroy'

Menu : PHP -> Templates -> Session -> session_destroy
Raccourcis clavier : aucun
Fonction PHP : session_destroy

`php-template-session-encode'

Menu : PHP -> Templates -> Session -> session_encode
Raccourcis clavier : aucun
Fonction PHP : session_encode

`php-template-session-get-cookie-params'

Menu : PHP -> Templates -> Session -> session_get_cookie_params
Raccourcis clavier : aucun
Fonction PHP : session_get_cookie_params

`php-template-session-id'

Menu : PHP -> Templates -> Session -> session_id
Raccourcis clavier : aucun
Fonction PHP : session_id

`php-template-session-is-registered'

Menu : PHP -> Templates -> Session -> session_is_registered
Raccourcis clavier : aucun
Fonction PHP : session_is_registered

`php-template-session-module-name'

Menu : PHP -> Templates -> Session -> session_module_name
Raccourcis clavier : aucun
Fonction PHP : session_module_name

`php-template-session-name'

Menu : PHP -> Templates -> Session -> session_name
Raccourcis clavier : aucun
Fonction PHP : session_name

`php-template-session-regenerate-id'

Menu : PHP -> Templates -> Session -> session_regenerate_id
Raccourcis clavier : aucun
Fonction PHP : session_regenerate_id

`php-template-session-register'

Menu : PHP -> Templates -> Session -> session_register
Raccourcis clavier : aucun
Fonction PHP : session_register

`php-template-session-save-path'

Menu : PHP -> Templates -> Session -> session_save_path
Raccourcis clavier : aucun
Fonction PHP : session_save_path

`php-template-session-set-cookie-params'

Menu : PHP -> Templates -> Session -> session_set_cookie_params
Raccourcis clavier : aucun
Fonction PHP : session_set_cookie_params

`php-template-session-set-save-handler'

Menu : PHP -> Templates -> Session -> session_set_save_handler
Raccourcis clavier : aucun
Fonction PHP : session_set_save_handler

`php-template-session-start'

Menu : PHP -> Templates -> Session -> session_start
Raccourcis clavier : aucun
Fonction PHP : session_start

`php-template-session-unregister'

Menu : PHP -> Templates -> Session -> session_unregister
Raccourcis clavier : aucun
Fonction PHP : session_unregister

`php-template-session-unset'

Menu : PHP -> Templates -> Session -> session_unset
Raccourcis clavier : aucun
Fonction PHP : session_unset

`php-template-session-write-close'

Menu : PHP -> Templates -> Session -> session_write_close
Raccourcis clavier : aucun
Fonction PHP : session_write_close


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.19 Chaînes de caractères

`php-template-addcslashes'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> addcslashes
Raccourcis clavier : aucun
Fonction PHP : addcslashes

`php-template-addslashes'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> addslashes
Raccourcis clavier : aucun
Fonction PHP : addslashes

`php-template-bin2hex'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> bin2hex
Raccourcis clavier : aucun
Fonction PHP : bin2hex

`php-template-chop'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> chop
Raccourcis clavier : aucun
Fonction PHP : chop

`php-template-chr'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> chr
Raccourcis clavier : aucun
Fonction PHP : chr

`php-template-chunk-split'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> chunk_split
Raccourcis clavier : aucun
Fonction PHP : chunk_split

`php-template-convert-cyr-string'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> convert_cyr_string
Raccourcis clavier : aucun
Fonction PHP : convert_cyr_string

`php-template-convert-uudecode'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> convert_uudecode
Raccourcis clavier : aucun
Fonction PHP : convert_uudecode

`php-template-convert-uuencode'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> convert_uuencode
Raccourcis clavier : aucun
Fonction PHP : convert_uuencode

`php-template-count-chars'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> count_chars
Raccourcis clavier : aucun
Fonction PHP : count_chars

`php-template-crc32'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> crc32
Raccourcis clavier : aucun
Fonction PHP : crc32

`php-template-crypt'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> crypt
Raccourcis clavier : aucun
Fonction PHP : crypt

`php-template-echo'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> echo
Raccourcis clavier : aucun
Fonction PHP : echo

`php-template-explode'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> explode
Raccourcis clavier : aucun
Fonction PHP : explode

`php-template-fprintf'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> fprintf
Raccourcis clavier : aucun
Fonction PHP : fprintf

`php-template-get-html-translation-table'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> get_html_translation_table
Raccourcis clavier : aucun
Fonction PHP : get_html_translation_table

`php-template-hebrev'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> hebrev
Raccourcis clavier : aucun
Fonction PHP : hebrev

`php-template-hebrevc'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> hebrevc
Raccourcis clavier : aucun
Fonction PHP : hebrevc

`php-template-html-entity-decode'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> html_entity_decode
Raccourcis clavier : aucun
Fonction PHP : html_entity_decode

`php-template-htmlentities'

Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> htmlentities
Raccourcis clavier : aucun
Fonction PHP : htmlentities

`php-template-htmlspecialchars-decode'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> htmlspecialchars_decode
Raccourcis clavier : aucun
Fonction PHP : htmlspecialchars_decode

`php-template-htmlspecialchars'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> htmlspecialchars
Raccourcis clavier : aucun
Fonction PHP : htmlspecialchars

`php-template-implode'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> implode
Raccourcis clavier : aucun
Fonction PHP : implode

`php-template-join'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> join
Raccourcis clavier : aucun
Fonction PHP : join

`php-template-levenshtein'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> levenshtein
Raccourcis clavier : aucun
Fonction PHP : levenshtein

`php-template-localeconv'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> localeconv
Raccourcis clavier : aucun
Fonction PHP : localeconv

`php-template-ltrim'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> ltrim
Raccourcis clavier : aucun
Fonction PHP : ltrim

`php-template-md5-file'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> md5_file
Raccourcis clavier : aucun
Fonction PHP : md5_file

`php-template-md5'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> md5
Raccourcis clavier : aucun
Fonction PHP : md5

`php-template-metaphone'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> metaphone
Raccourcis clavier : aucun
Fonction PHP : metaphone

`php-template-money-format'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> money_format
Raccourcis clavier : aucun
Fonction PHP : money_format

`php-template-nl-langinfo'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> nl_langinfo
Raccourcis clavier : aucun
Fonction PHP : nl_langinfo

`php-template-nl2br'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> nl2br
Raccourcis clavier : aucun
Fonction PHP : nl2br

`php-template-number-format'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> number_format
Raccourcis clavier : aucun
Fonction PHP : number_format

`php-template-ord'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> ord
Raccourcis clavier : aucun
Fonction PHP : ord

`php-template-parse-str'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> parse_str
Raccourcis clavier : aucun
Fonction PHP : parse_str

`php-template-print'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> print
Raccourcis clavier : aucun
Fonction PHP : print

`php-template-printf'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> printf
Raccourcis clavier : aucun
Fonction PHP : printf

`php-template-quoted-printable-decode'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> quoted_printable_decode
Raccourcis clavier : aucun
Fonction PHP : quoted_printable_decode

`php-template-quotemeta'

Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> quotemeta
Raccourcis clavier : aucun
Fonction PHP : quotemeta

`php-template-rtrim'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> rtrim
Raccourcis clavier : aucun
Fonction PHP : rtrim

`php-template-setlocale'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> setlocale
Raccourcis clavier : aucun
Fonction PHP : setlocale

`php-template-sha1-file'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> sha1_file
Raccourcis clavier : aucun
Fonction PHP : sha1_file

`php-template-sha1'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> sha1
Raccourcis clavier : aucun
Fonction PHP : sha1

`php-template-similar-text'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> similar_text
Raccourcis clavier : aucun
Fonction PHP : similar_text

`php-template-soundex'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> soundex
Raccourcis clavier : aucun
Fonction PHP : soundex

`php-template-sprintf'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> sprintf
Raccourcis clavier : aucun
Fonction PHP : sprintf

`php-template-sscanf'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> sscanf
Raccourcis clavier : aucun
Fonction PHP : sscanf

`php-template-str-ireplace'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_ireplace
Raccourcis clavier : aucun
Fonction PHP : str_ireplace

`php-template-str-pad'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_pad
Raccourcis clavier : aucun
Fonction PHP : str_pad

`php-template-str-repeat'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_repeat
Raccourcis clavier : aucun
Fonction PHP : str_repeat

`php-template-str-replace'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_replace
Raccourcis clavier : aucun
Fonction PHP : str_replace

`php-template-str-rot13'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_rot13
Raccourcis clavier : aucun
Fonction PHP : str_rot13

`php-template-str-shuffle'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_shuffle
Raccourcis clavier : aucun
Fonction PHP : str_shuffle

`php-template-str-split'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_split
Raccourcis clavier : aucun
Fonction PHP : str_split

`php-template-str-word-count'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_word_count
Raccourcis clavier : aucun
Fonction PHP : str_word_count

`php-template-strcasecmp'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> strcasecmp
Raccourcis clavier : aucun
Fonction PHP : strcasecmp

`php-template-strchr'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> strchr
Raccourcis clavier : aucun
Fonction PHP : strchr

`php-template-strcmp'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> strcmp
Raccourcis clavier : aucun
Fonction PHP : strcmp

`php-template-strcoll'

Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> strcoll
Raccourcis clavier : aucun
Fonction PHP : strcoll

`php-template-strcspn'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strcspn
Raccourcis clavier : aucun
Fonction PHP : strcspn

`php-template-strip-tags'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strip_tags
Raccourcis clavier : aucun
Fonction PHP : strip_tags

`php-template-stripcslashes'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> stripcslashes
Raccourcis clavier : aucun
Fonction PHP : stripcslashes

`php-template-stripos'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> stripos
Raccourcis clavier : aucun
Fonction PHP : stripos

`php-template-stripslashes'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> stripslashes
Raccourcis clavier : aucun
Fonction PHP : stripslashes

`php-template-stristr'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> stristr
Raccourcis clavier : aucun
Fonction PHP : stristr

`php-template-strlen'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strlen
Raccourcis clavier : aucun
Fonction PHP : strlen

`php-template-strnatcasecmp'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strnatcasecmp
Raccourcis clavier : aucun
Fonction PHP : strnatcasecmp

`php-template-strnatcmp'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strnatcmp
Raccourcis clavier : aucun
Fonction PHP : strnatcmp

`php-template-strncasecmp'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strncasecmp
Raccourcis clavier : aucun
Fonction PHP : strncasecmp

`php-template-strncmp'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strncmp
Raccourcis clavier : aucun
Fonction PHP : strncmp

`php-template-strpbrk'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strpbrk
Raccourcis clavier : aucun
Fonction PHP : strpbrk

`php-template-strpos'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strpos
Raccourcis clavier : aucun
Fonction PHP : strpos

`php-template-strrchr'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strrchr
Raccourcis clavier : aucun
Fonction PHP : strrchr

`php-template-strrev'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strrev
Raccourcis clavier : aucun
Fonction PHP : strrev

`php-template-strripos'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strripos
Raccourcis clavier : aucun
Fonction PHP : strripos

`php-template-strrpos'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strrpos
Raccourcis clavier : aucun
Fonction PHP : strrpos

`php-template-strspn'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strspn
Raccourcis clavier : aucun
Fonction PHP : strspn

`php-template-strstr'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strstr
Raccourcis clavier : aucun
Fonction PHP : strstr

`php-template-strtok'

Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strtok
Raccourcis clavier : aucun
Fonction PHP : strtok

`php-template-strtolower'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> strtolower
Raccourcis clavier : aucun
Fonction PHP : strtolower

`php-template-strtoupper'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> strtoupper
Raccourcis clavier : aucun
Fonction PHP : strtoupper

`php-template-strtr'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> strtr
Raccourcis clavier : aucun
Fonction PHP : strtr

`php-template-substr-compare'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr_compare
Raccourcis clavier : aucun
Fonction PHP : substr_compare

`php-template-substr-count'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr_count
Raccourcis clavier : aucun
Fonction PHP : substr_count

`php-template-substr-replace'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr_replace
Raccourcis clavier : aucun
Fonction PHP : substr_replace

`php-template-substr'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr
Raccourcis clavier : aucun
Fonction PHP : substr

`php-template-trim'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> trim
Raccourcis clavier : aucun
Fonction PHP : trim

`php-template-ucfirst'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> ucfirst
Raccourcis clavier : aucun
Fonction PHP : ucfirst

`php-template-ucwords'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> ucwords
Raccourcis clavier : aucun
Fonction PHP : ucwords

`php-template-vfprintf'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> vfprintf
Raccourcis clavier : aucun
Fonction PHP : vfprintf

`php-template-vprintf'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> vprintf
Raccourcis clavier : aucun
Fonction PHP : vprintf

`php-template-vsprintf'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> vsprintf
Raccourcis clavier : aucun
Fonction PHP : vsprintf

`php-template-wordwrap'

Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> wordwrap
Raccourcis clavier : aucun
Fonction PHP : wordwrap


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.20 Variable

`php-template-debug-zval-dump'

Menu : PHP -> Templates -> Variable -> debug_zval_dump
Raccourcis clavier : aucun
Fonction PHP : debug_zval_dump

`php-template-doubleval'

Menu : PHP -> Templates -> Variable -> doubleval
Raccourcis clavier : aucun
Fonction PHP : doubleval

`php-template-empty'

Menu : PHP -> Templates -> Variable -> empty
Raccourcis clavier : aucun
Fonction PHP : empty

`php-template-floatval'

Menu : PHP -> Templates -> Variable -> floatval
Raccourcis clavier : aucun
Fonction PHP : floatval

`php-template-get-defined-vars'

Menu : PHP -> Templates -> Variable -> get_defined_vars
Raccourcis clavier : aucun
Fonction PHP : get_defined_vars

`php-template-get-resource-type'

Menu : PHP -> Templates -> Variable -> get_resource_type
Raccourcis clavier : aucun
Fonction PHP : get_resource_type

`php-template-gettype'

Menu : PHP -> Templates -> Variable -> gettype
Raccourcis clavier : aucun
Fonction PHP : gettype

`php-template-import-request-variables'

Menu : PHP -> Templates -> Variable -> import_request_variables
Raccourcis clavier : aucun
Fonction PHP : import_request_variables

`php-template-intval'

Menu : PHP -> Templates -> Variable -> intval
Raccourcis clavier : aucun
Fonction PHP : intval

`php-template-is-array'

Menu : PHP -> Templates -> Variable -> is_array
Raccourcis clavier : aucun
Fonction PHP : is_array

`php-template-is-bool'

Menu : PHP -> Templates -> Variable -> is_bool
Raccourcis clavier : aucun
Fonction PHP : is_bool

`php-template-is-callable'

Menu : PHP -> Templates -> Variable -> is_callable
Raccourcis clavier : aucun
Fonction PHP : is_callable

`php-template-is-double'

Menu : PHP -> Templates -> Variable -> is_double
Raccourcis clavier : aucun
Fonction PHP : is_double

`php-template-is-float'

Menu : PHP -> Templates -> Variable -> is_float
Raccourcis clavier : aucun
Fonction PHP : is_float

`php-template-is-int'

Menu : PHP -> Templates -> Variable -> is_int
Raccourcis clavier : aucun
Fonction PHP : is_int

`php-template-is-integer'

Menu : PHP -> Templates -> Variable -> is_integer
Raccourcis clavier : aucun
Fonction PHP : is_integer

`php-template-is-long'

Menu : PHP -> Templates -> Variable -> is_long
Raccourcis clavier : aucun
Fonction PHP : is_long

`php-template-is-null'

Menu : PHP -> Templates -> Variable -> is_null
Raccourcis clavier : aucun
Fonction PHP : is_null

`php-template-is-numeric'

Menu : PHP -> Templates -> Variable -> is_numeric
Raccourcis clavier : aucun
Fonction PHP : is_numeric

`php-template-is-object'

Menu : PHP -> Templates -> Variable -> is_object
Raccourcis clavier : aucun
Fonction PHP : is_object

`php-template-is-real'

Menu : PHP -> Templates -> Variable -> is_real
Raccourcis clavier : aucun
Fonction PHP : is_real

`php-template-is-resource'

Menu : PHP -> Templates -> Variable -> is_resource
Raccourcis clavier : aucun
Fonction PHP : is_resource

`php-template-is-scalar'

Menu : PHP -> Templates -> Variable -> is_scalar
Raccourcis clavier : aucun
Fonction PHP : is_scalar

`php-template-is-string'

Menu : PHP -> Templates -> Variable -> is_string
Raccourcis clavier : aucun
Fonction PHP : is_string

`php-template-isset'

Menu : PHP -> Templates -> Variable -> isset
Raccourcis clavier : aucun
Fonction PHP : isset

`php-template-print-r'

Menu : PHP -> Templates -> Variable -> print_r
Raccourcis clavier : aucun
Fonction PHP : print_r

`php-template-serialize'

Menu : PHP -> Templates -> Variable -> serialize
Raccourcis clavier : aucun
Fonction PHP : serialize

`php-template-settype'

Menu : PHP -> Templates -> Variable -> settype
Raccourcis clavier : aucun
Fonction PHP : settype

`php-template-strval'

Menu : PHP -> Templates -> Variable -> strval
Raccourcis clavier : aucun
Fonction PHP : strval

`php-template-unserialize'

Menu : PHP -> Templates -> Variable -> unserialize
Raccourcis clavier : aucun
Fonction PHP : unserialize

`php-template-unset'

Menu : PHP -> Templates -> Variable -> unset
Raccourcis clavier : aucun
Fonction PHP : unset

`php-template-var-dump'

Menu : PHP -> Templates -> Variable -> var_dump
Raccourcis clavier : aucun
Fonction PHP : var_dump

`php-template-var-export'

Menu : PHP -> Templates -> Variable -> var_export
Raccourcis clavier : aucun
Fonction PHP : var_export


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.21 XML

`php-template-utf8-decode'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> utf8_decode
Raccourcis clavier : aucun
Fonction PHP : utf8_decode

`php-template-utf8-encode'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> utf8_encode
Raccourcis clavier : aucun
Fonction PHP : utf8_encode

`php-template-xml-error-string'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_error_string
Raccourcis clavier : aucun
Fonction PHP : xml_error_string

`php-template-xml-get-current-byte-index'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_get_current_byte_index
Raccourcis clavier : aucun
Fonction PHP : xml_get_current_byte_index

`php-template-xml-get-current-column-number'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_get_current_column_number
Raccourcis clavier : aucun
Fonction PHP : xml_get_current_column_number

`php-template-xml-get-current-line-number'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_get_current_line_number
Raccourcis clavier : aucun
Fonction PHP : xml_get_current_line_number

`php-template-xml-get-error-code'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_get_error_code
Raccourcis clavier : aucun
Fonction PHP : xml_get_error_code

`php-template-xml-parse-into-struct'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parse_into_struct
Raccourcis clavier : aucun
Fonction PHP : xml_parse_into_struct

`php-template-xml-parse'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parse
Raccourcis clavier : aucun
Fonction PHP : xml_parse

`php-template-xml-parser-create-ns'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_create_ns
Raccourcis clavier : aucun
Fonction PHP : xml_parser_create_ns

`php-template-xml-parser-create'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_create
Raccourcis clavier : aucun
Fonction PHP : xml_parser_create

`php-template-xml-parser-free'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_free
Raccourcis clavier : aucun
Fonction PHP : xml_parser_free

`php-template-xml-parser-get-option'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_get_option
Raccourcis clavier : aucun
Fonction PHP : xml_parser_get_option

`php-template-xml-parser-set-option'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_set_option
Raccourcis clavier : aucun
Fonction PHP : xml_parser_set_option

`php-template-xml-set-character-data-handler'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_character_data_handler
Raccourcis clavier : aucun
Fonction PHP : xml_set_character_data_handler

`php-template-xml-set-default-handler'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_default_handler
Raccourcis clavier : aucun
Fonction PHP : xml_set_default_handler

`php-template-xml-set-element-handler'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_element_handler
Raccourcis clavier : aucun
Fonction PHP : xml_set_element_handler

`php-template-xml-set-end-namespace-decl-handler'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_end_namespace_decl_handler
Raccourcis clavier : aucun
Fonction PHP : xml_set_end_namespace_decl_handler

`php-template-xml-set-external-entity-ref-handler'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_external_entity_ref_handler
Raccourcis clavier : aucun
Fonction PHP : xml_set_external_entity_ref_handler

`php-template-xml-set-notation-decl-handler'

Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_notation_decl_handler
Raccourcis clavier : aucun
Fonction PHP : xml_set_notation_decl_handler

`php-template-xml-set-object'

Menu : PHP -> Templates -> XML -> XML (xml_set_object -> xml_set_unparsed_entity_decl_handler) -> xml_set_object
Raccourcis clavier : aucun
Fonction PHP : xml_set_object

`php-template-xml-set-processing-instruction-handler'

Menu : PHP -> Templates -> XML -> XML (xml_set_object -> xml_set_unparsed_entity_decl_handler) -> xml_set_processing_instruction_handler
Raccourcis clavier : aucun
Fonction PHP : xml_set_processing_instruction_handler

`php-template-xml-set-start-namespace-decl-handler'

Menu : PHP -> Templates -> XML -> XML (xml_set_object -> xml_set_unparsed_entity_decl_handler) -> xml_set_start_namespace_decl_handler
Raccourcis clavier : aucun
Fonction PHP : xml_set_start_namespace_decl_handler

`php-template-xml-set-unparsed-entity-decl-handler'

Menu : PHP -> Templates -> XML -> XML (xml_set_object -> xml_set_unparsed_entity_decl_handler) -> xml_set_unparsed_entity_decl_handler
Raccourcis clavier : aucun
Fonction PHP : xml_set_unparsed_entity_decl_handler


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

8.2.22 Fonctions Non-PHP

`php-template-header'

Menu : PHP -> Templates -> Insert Header
Raccourci clavier : aucun
Description : Cette fonction est utilisée pour insérer une en-tête dans le buffer.

`php-template-footer'

Menu : PHP -> Templates -> Insert Footer
Raccourci clavier : aucun
Description : Cette fonction est utilisée pour insérer un pied de page dans le buffer.

`php-template-insert-date'

Menu : PHP -> Templates -> Insert Date
Raccourci clavier : aucun
Description : Cette fonction est utilisée pour insérer la date dans le buffer.

`php-template-modify'

Menu : PHP -> Templates -> Modify Date
Raccourci clavier : aucun
Description : Cette fonction est utilisée pour modifier la date de dernière modification dans le buffer.


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

9. Bugs, Aide


[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

Index

Aller à:   .  
A   B   C   D   E   F   I   M   P   R   S   T   V   X  
Entrée d'index Section

.
.NET8.2.1 .NET

A
Aide9. Bugs, Aide
Apache8.2.2 Apache
APC8.2.3 APC
Autres8.2.16 Autres

B
Bégaiement7. Bégaiement
Bugs9. Bugs, Aide

C
Chaînes de caractères8.2.19 Chaînes de caractères
Complétion5. Complétion

D
Date/Temps8.2.6 Date/Temps
Divers3.1.6 Divers

E
En-tête3.1.3.1 En-tête
Erreur8.2.8 Erreur
Expressions régulières8.2.17 Expressions régulières

F
Fonctions3.2 Fonctions
Fonctions4.1.1 Fonctions
Fonctions4.3.2 Fonctions
Fonctions6.2 Fonctions
Fonctions7.2 Fonctions
Fonctions8.2 Fonctions
Fonctions8.2.10 Fonctions
Fonctions diverses8.2.14 Fonctions diverses
Fonctions Non-PHP8.2.22 Fonctions Non-PHP

I
Image8.2.11 Image
Indentation6. Indentation

M
Mail8.2.12 Mail
Mathématiques8.2.13 Mathématiques
Menu3.1.2 Menu
Menu Index4.2 Index
Menu PHP4.1 PHP
Menu Sources4.3 Sources
Menus4. Menus
Mode3.1.1 Mode
Mode3.2.1 Mode
MySQL8.2.15 MySQL

P
Paramètres3.1 Paramètres
Paramètres4.2.1 Paramètres
Paramètres4.3.1 Paramètres
Paramètres5.1 Paramètres
Paramètres6.1 Paramètres
Paramètres7.1 Paramètres
Paramètres8.1 Paramètres
PHPDocumentor3.1.5 PHPDocumentor

R
Répertoire8.2.7 Répertoire

S
Session8.2.18 Session
Structures de contrôle8.2.5 Structures de contrôle
Style3.1.4 Style
Système de fichier8.2.9 Système de fichier

T
Tableaux8.2.4 Tableaux
Template3.1.3 Template
Templates8. Templates

V
Variable8.2.20 Variable

X
XML8.2.21 XML

Aller à:   .  
A   B   C   D   E   F   I   M   P   R   S   T   V   X  

[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

Index des parametres

Aller à:   P  
Entrée d'index Section

P
php-add-fclose-with-fopen3.1.3 Template
php-add-mysql-close-when-connect3.1.3 Template
php-basic-offset3.1.4 Style
php-basic-offset6.1 Paramètres
php-class-tags3.1.5 PHPDocumentor
php-compay-name3.1.3.1 En-tête
php-copyright-string3.1.3.1 En-tête
php-date-format3.1.3.1 En-tête
php-electric-mode3.1.1 Mode
php-electric-mode8.1 Paramètres
php-enable-phpdocumentor-tags3.1.5 PHPDocumentor
php-file-footer3.1.3.1 En-tête
php-file-header3.1.3.1 En-tête
php-function-tags3.1.5 PHPDocumentor
php-include-in-parenthesis3.1.3 Template
php-indent-tabs-mode3.1.1 Mode
php-indent-tabs-mode6.1 Paramètres
php-index-menu3.1.2 Menu
php-index-menu4.2.1 Paramètres
php-index-menu-auto-rescan3.1.2 Menu
php-index-menu-auto-rescan4.2.1 Paramètres
php-intelligent-tab3.1.6 Divers
php-intelligent-tab5.1 Paramètres
php-modify-date-on-saving3.1.3.1 En-tête
php-modify-date-prefix-string3.1.3.1 En-tête
php-source-file-menu3.1.2 Menu
php-source-file-menu4.3.1 Paramètres
php-stutter-mode3.1.1 Mode
php-stutter-mode7.1 Paramètres
php-word-completion-case-sensitive3.1.6 Divers
php-word-completion-case-sensitive5.1 Paramètres
php-word-completion-in-minibuffer3.1.6 Divers
php-word-completion-in-minibuffer5.1 Paramètres

Aller à:   P  

[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

Index des fonctions

Aller à:   I   P  
Entrée d'index Section

I
indent-according-to-mode6.2 Fonctions

P
php-add-source-files-menu4.3.2 Fonctions
php-doc-mode4.1.1 Fonctions
php-electric-mode3.2.1 Mode
php-indent-buffer6.2 Fonctions
php-indent-region6.2 Fonctions
php-show-messages4.1.1 Fonctions
php-stutter-mode3.2.1 Mode
php-template-abs8.2.13 Mathématiques
php-template-acos8.2.13 Mathématiques
php-template-acosh8.2.13 Mathématiques
php-template-addcslashes8.2.19 Chaînes de caractères
php-template-addslashes8.2.19 Chaînes de caractères
php-template-apache-child-terminate8.2.2 Apache
php-template-apache-get-modules8.2.2 Apache
php-template-apache-get-version8.2.2 Apache
php-template-apache-getenv8.2.2 Apache
php-template-apache-lookup-uri8.2.2 Apache
php-template-apache-note8.2.2 Apache
php-template-apache-request-headers8.2.2 Apache
php-template-apache-reset-timeout8.2.2 Apache
php-template-apache-response-headers8.2.2 Apache
php-template-apache-setenv8.2.2 Apache
php-template-apc-cache-info8.2.3 APC
php-template-apc-clear-cache8.2.3 APC
php-template-apc-define-constants8.2.3 APC
php-template-apc-delete8.2.3 APC
php-template-apc-fetch8.2.3 APC
php-template-apc-load-constants8.2.3 APC
php-template-apc-sma-info8.2.3 APC
php-template-apc-store8.2.3 APC
php-template-array8.2.4 Tableaux
php-template-array-change-key-case8.2.4 Tableaux
php-template-array-chunk8.2.4 Tableaux
php-template-array-combine8.2.4 Tableaux
php-template-array-count-values8.2.4 Tableaux
php-template-array-diff8.2.4 Tableaux
php-template-array-diff-assoc8.2.4 Tableaux
php-template-array-diff-key8.2.4 Tableaux
php-template-array-diff-uassoc8.2.4 Tableaux
php-template-array-diff-ukey8.2.4 Tableaux
php-template-array-exists8.2.4 Tableaux
php-template-array-fill8.2.4 Tableaux
php-template-array-filter8.2.4 Tableaux
php-template-array-flip8.2.4 Tableaux
php-template-array-intersect8.2.4 Tableaux
php-template-array-intersect-assoc8.2.4 Tableaux
php-template-array-intersect-key8.2.4 Tableaux
php-template-array-intersect-uassoc8.2.4 Tableaux
php-template-array-intersect-ukey8.2.4 Tableaux
php-template-array-keys8.2.4 Tableaux
php-template-array-map8.2.4 Tableaux
php-template-array-merge8.2.4 Tableaux
php-template-array-merge-recursive8.2.4 Tableaux
php-template-array-multisort8.2.4 Tableaux
php-template-array-pad8.2.4 Tableaux
php-template-array-pop8.2.4 Tableaux
php-template-array-product8.2.4 Tableaux
php-template-array-push8.2.4 Tableaux
php-template-array-rand8.2.4 Tableaux
php-template-array-reduce8.2.4 Tableaux
php-template-array-reverse8.2.4 Tableaux
php-template-array-search8.2.4 Tableaux
php-template-array-shift8.2.4 Tableaux
php-template-array-slice8.2.4 Tableaux
php-template-array-splice8.2.4 Tableaux
php-template-array-sum8.2.4 Tableaux
php-template-array-udiff8.2.4 Tableaux
php-template-array-udiff-assoc8.2.4 Tableaux
php-template-array-udiff-uassoc8.2.4 Tableaux
php-template-array-uintersect8.2.4 Tableaux
php-template-array-uintersect-assoc8.2.4 Tableaux
php-template-array-uintersect-uassoc8.2.4 Tableaux
php-template-array-unique8.2.4 Tableaux
php-template-array-unshift8.2.4 Tableaux
php-template-array-values8.2.4 Tableaux
php-template-array-walk8.2.4 Tableaux
php-template-array-walk-recursive8.2.4 Tableaux
php-template-arsort8.2.4 Tableaux
php-template-ascii2ebcdic8.2.2 Apache
php-template-asin8.2.13 Mathématiques
php-template-asinh8.2.13 Mathématiques
php-template-asort8.2.4 Tableaux
php-template-atan8.2.13 Mathématiques
php-template-atan28.2.13 Mathématiques
php-template-atanh8.2.13 Mathématiques
php-template-base-convert8.2.13 Mathématiques
php-template-basename8.2.9 Système de fichier
php-template-bin2hex8.2.19 Chaînes de caractères
php-template-bindec8.2.13 Mathématiques
php-template-break8.2.5 Structures de contrôle
php-template-call-user-func8.2.10 Fonctions
php-template-call-user-func-array8.2.10 Fonctions
php-template-ceil8.2.13 Mathématiques
php-template-chdir8.2.7 Répertoire
php-template-checkdate8.2.6 Date/Temps
php-template-chgrp8.2.9 Système de fichier
php-template-chmod8.2.9 Système de fichier
php-template-chop8.2.19 Chaînes de caractères
php-template-chown8.2.9 Système de fichier
php-template-chr8.2.19 Chaînes de caractères
php-template-chroot8.2.7 Répertoire
php-template-chunk-split8.2.19 Chaînes de caractères
php-template-class8.2.16 Autres
php-template-clearstatcache8.2.9 Système de fichier
php-template-closedir8.2.7 Répertoire
php-template-compact8.2.4 Tableaux
php-template-connection-aborted8.2.14 Fonctions diverses
php-template-connection-status8.2.14 Fonctions diverses
php-template-connection-timeout8.2.14 Fonctions diverses
php-template-constant8.2.14 Fonctions diverses
php-template-continue8.2.5 Structures de contrôle
php-template-convert-cyr-string8.2.19 Chaînes de caractères
php-template-convert-uudecode8.2.19 Chaînes de caractères
php-template-convert-uuencode8.2.19 Chaînes de caractères
php-template-copy8.2.9 Système de fichier
php-template-cos8.2.13 Mathématiques
php-template-cosh8.2.13 Mathématiques
php-template-count8.2.4 Tableaux
php-template-count-chars8.2.19 Chaînes de caractères
php-template-crc328.2.19 Chaînes de caractères
php-template-create-function8.2.10 Fonctions
php-template-crypt8.2.19 Chaînes de caractères
php-template-current8.2.4 Tableaux
php-template-date8.2.6 Date/Temps
php-template-date-default-timezone-get8.2.6 Date/Temps
php-template-date-default-timezone-set8.2.6 Date/Temps
php-template-date-sunrise8.2.6 Date/Temps
php-template-date-sunset8.2.6 Date/Temps
php-template-debug-backtrace8.2.8 Erreur
php-template-debug-print-backtrace8.2.8 Erreur
php-template-debug-zval-dump8.2.20 Variable
php-template-decbin8.2.13 Mathématiques
php-template-dechex8.2.13 Mathématiques
php-template-decoct8.2.13 Mathématiques
php-template-define8.2.14 Fonctions diverses
php-template-defined8.2.14 Fonctions diverses
php-template-deg2rad8.2.13 Mathématiques
php-template-delete8.2.9 Système de fichier
php-template-die8.2.14 Fonctions diverses
php-template-dir8.2.7 Répertoire
php-template-dirname8.2.9 Système de fichier
php-template-disk-free-space8.2.9 Système de fichier
php-template-disk-total-space8.2.9 Système de fichier
php-template-diskfreespace8.2.9 Système de fichier
php-template-do-while8.2.5 Structures de contrôle
php-template-dotnet-load8.2.1 .NET
php-template-doubleval8.2.20 Variable
php-template-each8.2.4 Tableaux
php-template-ebcdic2ascii8.2.2 Apache
php-template-echo8.2.19 Chaînes de caractères
php-template-else8.2.5 Structures de contrôle
php-template-elseif8.2.5 Structures de contrôle
php-template-empty8.2.20 Variable
php-template-end8.2.4 Tableaux
php-template-ereg8.2.17 Expressions régulières
php-template-ereg-replace8.2.17 Expressions régulières
php-template-eregi8.2.17 Expressions régulières
php-template-eregi-replace8.2.17 Expressions régulières
php-template-error-log8.2.8 Erreur
php-template-error-reporting8.2.8 Erreur
php-template-eval8.2.14 Fonctions diverses
php-template-exit8.2.14 Fonctions diverses
php-template-exp8.2.13 Mathématiques
php-template-explode8.2.19 Chaînes de caractères
php-template-expm18.2.13 Mathématiques
php-template-extract8.2.4 Tableaux
php-template-ezmlm-hash8.2.12 Mail
php-template-fclose8.2.9 Système de fichier
php-template-feof8.2.9 Système de fichier
php-template-fflush8.2.9 Système de fichier
php-template-fgetc8.2.9 Système de fichier
php-template-fgetcsv8.2.9 Système de fichier
php-template-fgets8.2.9 Système de fichier
php-template-fgetss8.2.9 Système de fichier
php-template-file8.2.9 Système de fichier
php-template-file-exists8.2.9 Système de fichier
php-template-file-get-contents8.2.9 Système de fichier
php-template-file-put-contents8.2.9 Système de fichier
php-template-fileatime8.2.9 Système de fichier
php-template-filectime8.2.9 Système de fichier
php-template-filegroup8.2.9 Système de fichier
php-template-fileinode8.2.9 Système de fichier
php-template-filemtime8.2.9 Système de fichier
php-template-fileowner8.2.9 Système de fichier
php-template-fileperms8.2.9 Système de fichier
php-template-filesize8.2.9 Système de fichier
php-template-filetype8.2.9 Système de fichier
php-template-floatval8.2.20 Variable
php-template-flock8.2.9 Système de fichier
php-template-floor8.2.13 Mathématiques
php-template-fmod8.2.13 Mathématiques
php-template-fnmatch8.2.9 Système de fichier
php-template-footer8.2.22 Fonctions Non-PHP
php-template-fopen8.2.9 Système de fichier
php-template-for8.2.5 Structures de contrôle
php-template-foreach8.2.5 Structures de contrôle
php-template-fpassthru8.2.9 Système de fichier
php-template-fprintf8.2.19 Chaînes de caractères
php-template-fputcsv8.2.9 Système de fichier
php-template-fread8.2.9 Système de fichier
php-template-fseek8.2.9 Système de fichier
php-template-fstat8.2.9 Système de fichier
php-template-ftell8.2.9 Système de fichier
php-template-ftruncate8.2.9 Système de fichier
php-template-func-get-arg8.2.10 Fonctions
php-template-func-get-args8.2.10 Fonctions
php-template-func-num-args8.2.10 Fonctions
php-template-function8.2.16 Autres
php-template-function-exists8.2.10 Fonctions
php-template-fwrite8.2.9 Système de fichier
php-template-fwrite8.2.9 Système de fichier
php-template-gd-info8.2.11 Image
php-template-get-browser8.2.14 Fonctions diverses
php-template-get-defined-functions8.2.10 Fonctions
php-template-get-defined-vars8.2.20 Variable
php-template-get-html-translation-table8.2.19 Chaînes de caractères
php-template-get-resource-type8.2.20 Variable
php-template-getallheaders8.2.2 Apache
php-template-getcwd8.2.7 Répertoire
php-template-getdate8.2.6 Date/Temps
php-template-getimagesize8.2.11 Image
php-template-getrandmax8.2.13 Mathématiques
php-template-gettimeofday8.2.6 Date/Temps
php-template-gettype8.2.20 Variable
php-template-glob8.2.9 Système de fichier
php-template-gmdate8.2.6 Date/Temps
php-template-gmmktime8.2.6 Date/Temps
php-template-gmstrftime8.2.6 Date/Temps
php-template-halt-compiler8.2.14 Fonctions diverses
php-template-header8.2.22 Fonctions Non-PHP
php-template-hebrev8.2.19 Chaînes de caractères
php-template-hebrevc8.2.19 Chaînes de caractères
php-template-hexdec8.2.13 Mathématiques
php-template-highlight-file8.2.14 Fonctions diverses
php-template-highlight-string8.2.14 Fonctions diverses
php-template-html-entity-decode8.2.19 Chaînes de caractères
php-template-htmlentities8.2.19 Chaînes de caractères
php-template-htmlspecialchars8.2.19 Chaînes de caractères
php-template-htmlspecialchars-decode8.2.19 Chaînes de caractères
php-template-hypot8.2.13 Mathématiques
php-template-idate8.2.6 Date/Temps
php-template-if8.2.5 Structures de contrôle
php-template-ignore-user-abort8.2.14 Fonctions diverses
php-template-image-type-to-extension8.2.11 Image
php-template-image-type-to-mime-type8.2.11 Image
php-template-image2wbmp8.2.11 Image
php-template-imagealphablending8.2.11 Image
php-template-imageantialias8.2.11 Image
php-template-imagearc8.2.11 Image
php-template-imagechar8.2.11 Image
php-template-imagecharup8.2.11 Image
php-template-imagecolorallocate8.2.11 Image
php-template-imagecolorallocatealpha8.2.11 Image
php-template-imagecolorat8.2.11 Image
php-template-imagecolorclosest8.2.11 Image
php-template-imagecolorclosestalpha8.2.11 Image
php-template-imagecolorclosesthwb8.2.11 Image
php-template-imagecolordeallocate8.2.11 Image
php-template-imagecolorexact8.2.11 Image
php-template-imagecolorexactalpha8.2.11 Image
php-template-imagecolormatch8.2.11 Image
php-template-imagecolorresolve8.2.11 Image
php-template-imagecolorresolvealpha8.2.11 Image
php-template-imagecolorset8.2.11 Image
php-template-imagecolorsforindex8.2.11 Image
php-template-imagecolorstotal8.2.11 Image
php-template-imagecolortransparent8.2.11 Image
php-template-imageconvolution8.2.11 Image
php-template-imagecopy8.2.11 Image
php-template-imagecopymerge8.2.11 Image
php-template-imagecopymergegray8.2.11 Image
php-template-imagecopyresampled8.2.11 Image
php-template-imagecopyresized8.2.11 Image
php-template-imagecreate8.2.11 Image
php-template-imagecreatefromgd8.2.11 Image
php-template-imagecreatefromgd28.2.11 Image
php-template-imagecreatefromgd2part8.2.11 Image
php-template-imagecreatefromgif8.2.11 Image
php-template-imagecreatefromjpeg8.2.11 Image
php-template-imagecreatefrompng8.2.11 Image
php-template-imagecreatefromstring8.2.11 Image
php-template-imagecreatefromwbmp8.2.11 Image
php-template-imagecreatefromxbm8.2.11 Image
php-template-imagecreatefromxpm8.2.11 Image
php-template-imagecreatetruecolor8.2.11 Image
php-template-imagedashedline8.2.11 Image
php-template-imagedestroy8.2.11 Image
php-template-imageellipse8.2.11 Image
php-template-imagefill8.2.11 Image
php-template-imagefilledarc8.2.11 Image
php-template-imagefilledellipse8.2.11 Image
php-template-imagefilledpolygon8.2.11 Image
php-template-imagefilledrectangle8.2.11 Image
php-template-imagefilltoborder8.2.11 Image
php-template-imagefilter8.2.11 Image
php-template-imagefontheight8.2.11 Image
php-template-imagefontwidth8.2.11 Image
php-template-imageftbbox8.2.11 Image
php-template-imagefttext8.2.11 Image
php-template-imagegammacorrect8.2.11 Image
php-template-imagegd8.2.11 Image
php-template-imagegd28.2.11 Image
php-template-imagegif8.2.11 Image
php-template-imageinterlace8.2.11 Image
php-template-imageistruecolor8.2.11 Image
php-template-imagejpeg8.2.11 Image
php-template-imagelayereffect8.2.11 Image
php-template-imageline8.2.11 Image
php-template-imageloadfont8.2.11 Image
php-template-imagepalettecopy8.2.11 Image
php-template-imagepng8.2.11 Image
php-template-imagepolygon8.2.11 Image
php-template-imagepsbbox8.2.11 Image
php-template-imagepsencodefont8.2.11 Image
php-template-imagepsextendfont8.2.11 Image
php-template-imagepsfreefont8.2.11 Image
php-template-imagepsloadfont8.2.11 Image
php-template-imagepsslantfont8.2.11 Image
php-template-imagepstext8.2.11 Image
php-template-imagerectangle8.2.11 Image
php-template-imagerotate8.2.11 Image
php-template-imagesavealpha8.2.11 Image
php-template-imagesetbrush8.2.11 Image
php-template-imagesetpixel8.2.11 Image
php-template-imagesetstyle8.2.11 Image
php-template-imagesetthickness8.2.11 Image
php-template-imagesettile8.2.11 Image
php-template-imagestring8.2.11 Image
php-template-imagestringup8.2.11 Image
php-template-imagesx8.2.11 Image
php-template-imagesy8.2.11 Image
php-template-imagetruecolortopalette8.2.11 Image
php-template-imagettfbbox8.2.11 Image
php-template-imagettftext8.2.11 Image
php-template-imagetypes8.2.11 Image
php-template-imagewbmp8.2.11 Image
php-template-imagexbm8.2.11 Image
php-template-implode8.2.19 Chaînes de caractères
php-template-import-request-variables8.2.20 Variable
php-template-in-array8.2.4 Tableaux
php-template-include8.2.5 Structures de contrôle
php-template-include-once8.2.5 Structures de contrôle
php-template-insert-date8.2.22 Fonctions Non-PHP
php-template-intval8.2.20 Variable
php-template-iptcembed8.2.11 Image
php-template-iptcparse8.2.11 Image
php-template-is-array8.2.20 Variable
php-template-is-bool8.2.20 Variable
php-template-is-callable8.2.20 Variable
php-template-is-dir8.2.9 Système de fichier
php-template-is-double8.2.20 Variable
php-template-is-executable8.2.9 Système de fichier
php-template-is-file8.2.9 Système de fichier
php-template-is-finite8.2.13 Mathématiques
php-template-is-float8.2.20 Variable
php-template-is-infinite8.2.13 Mathématiques
php-template-is-int8.2.20 Variable
php-template-is-integer8.2.20 Variable
php-template-is-link8.2.9 Système de fichier
php-template-is-long8.2.20 Variable
php-template-is-nan8.2.13 Mathématiques
php-template-is-null8.2.20 Variable
php-template-is-numeric8.2.20 Variable
php-template-is-object8.2.20 Variable
php-template-is-readable8.2.9 Système de fichier
php-template-is-real8.2.20 Variable
php-template-is-resource8.2.20 Variable
php-template-is-scalar8.2.20 Variable
php-template-is-string8.2.20 Variable
php-template-is-uploaded-file8.2.9 Système de fichier
php-template-is-writable8.2.9 Système de fichier
php-template-is-writable8.2.9 Système de fichier
php-template-isset8.2.20 Variable
php-template-join8.2.19 Chaînes de caractères
php-template-jpeg2wbmp8.2.11 Image
php-template-key8.2.4 Tableaux
php-template-krsort8.2.4 Tableaux
php-template-ksort8.2.4 Tableaux
php-template-lcg-value8.2.13 Mathématiques
php-template-levenshtein8.2.19 Chaînes de caractères
php-template-link8.2.9 Système de fichier
php-template-linkinfo8.2.9 Système de fichier
php-template-list8.2.4 Tableaux
php-template-localeconv8.2.19 Chaînes de caractères
php-template-localtime8.2.6 Date/Temps
php-template-log8.2.13 Mathématiques
php-template-log108.2.13 Mathématiques
php-template-log1p8.2.13 Mathématiques
php-template-lstat8.2.9 Système de fichier
php-template-ltrim8.2.19 Chaînes de caractères
php-template-mail8.2.12 Mail
php-template-max8.2.13 Mathématiques
php-template-md58.2.19 Chaînes de caractères
php-template-md5-file8.2.19 Chaînes de caractères
php-template-metaphone8.2.19 Chaînes de caractères
php-template-microtime8.2.6 Date/Temps
php-template-min8.2.13 Mathématiques
php-template-mkdir8.2.9 Système de fichier
php-template-mktime8.2.6 Date/Temps
php-template-modify8.2.22 Fonctions Non-PHP
php-template-money-format8.2.19 Chaînes de caractères
php-template-move-uploaded-file8.2.9 Système de fichier
php-template-mt-getrandmax8.2.13 Mathématiques
php-template-mt-rand8.2.13 Mathématiques
php-template-mt-srand8.2.13 Mathématiques
php-template-mysql-affected-rows8.2.15 MySQL
php-template-mysql-change-user8.2.15 MySQL
php-template-mysql-client-encoding8.2.15 MySQL
php-template-mysql-close8.2.15 MySQL
php-template-mysql-connect8.2.15 MySQL
php-template-mysql-create-db8.2.15 MySQL
php-template-mysql-data-seek8.2.15 MySQL
php-template-mysql-db-name8.2.15 MySQL
php-template-mysql-db-query8.2.15 MySQL
php-template-mysql-drop-db8.2.15 MySQL
php-template-mysql-errno8.2.15 MySQL
php-template-mysql-error8.2.15 MySQL
php-template-mysql-escape-string8.2.15 MySQL
php-template-mysql-fetch-array8.2.15 MySQL
php-template-mysql-fetch-assoc8.2.15 MySQL
php-template-mysql-fetch-field8.2.15 MySQL
php-template-mysql-fetch-lengths8.2.15 MySQL
php-template-mysql-fetch-object8.2.15 MySQL
php-template-mysql-fetch-row8.2.15 MySQL
php-template-mysql-field-flags8.2.15 MySQL
php-template-mysql-field-len8.2.15 MySQL
php-template-mysql-field-name8.2.15 MySQL
php-template-mysql-field-seek8.2.15 MySQL
php-template-mysql-field-table8.2.15 MySQL
php-template-mysql-field-type8.2.15 MySQL
php-template-mysql-free-result8.2.15 MySQL
php-template-mysql-get-client-info8.2.15 MySQL
php-template-mysql-get-host-info8.2.15 MySQL
php-template-mysql-get-proto-info8.2.15 MySQL
php-template-mysql-get-server-info8.2.15 MySQL
php-template-mysql-info8.2.15 MySQL
php-template-mysql-insert-id8.2.15 MySQL
php-template-mysql-list-dbs8.2.15 MySQL
php-template-mysql-list-fields8.2.15 MySQL
php-template-mysql-list-processes8.2.15 MySQL
php-template-mysql-list-tables8.2.15 MySQL
php-template-mysql-num-fields8.2.15 MySQL
php-template-mysql-num-rows8.2.15 MySQL
php-template-mysql-pconnect8.2.15 MySQL
php-template-mysql-ping8.2.15 MySQL
php-template-mysql-query8.2.15 MySQL
php-template-mysql-real-escape-string8.2.15 MySQL
php-template-mysql-result8.2.15 MySQL
php-template-mysql-select-db8.2.15 MySQL
php-template-mysql-stat8.2.15 MySQL
php-template-mysql-tablename8.2.15 MySQL
php-template-mysql-thread-id8.2.15 MySQL
php-template-mysql-unbuffered-query8.2.15 MySQL
php-template-natcasesort8.2.4 Tableaux
php-template-natsort8.2.4 Tableaux
php-template-next8.2.4 Tableaux
php-template-nl-langinfo8.2.19 Chaînes de caractères
php-template-nl2br8.2.19 Chaînes de caractères
php-template-number-format8.2.19 Chaînes de caractères
php-template-octdec8.2.13 Mathématiques
php-template-opendir8.2.7 Répertoire
php-template-ord8.2.19 Chaînes de caractères
php-template-pack8.2.14 Fonctions diverses
php-template-parse-ini-file8.2.9 Système de fichier
php-template-parse-str8.2.19 Chaînes de caractères
php-template-pathinfo8.2.9 Système de fichier
php-template-pclose8.2.9 Système de fichier
php-template-php-check-syntax8.2.14 Fonctions diverses
php-template-php-strip-whitespace8.2.14 Fonctions diverses
php-template-pi8.2.13 Mathématiques
php-template-png2wbmp8.2.11 Image
php-template-popen8.2.9 Système de fichier
php-template-pos8.2.4 Tableaux
php-template-pow8.2.13 Mathématiques
php-template-prev8.2.4 Tableaux
php-template-print8.2.19 Chaînes de caractères
php-template-print-r8.2.20 Variable
php-template-printf8.2.19 Chaînes de caractères
php-template-quoted-printable-decode8.2.19 Chaînes de caractères
php-template-quotemeta8.2.19 Chaînes de caractères
php-template-rad2deg8.2.13 Mathématiques
php-template-rand8.2.13 Mathématiques
php-template-range8.2.4 Tableaux
php-template-readdir8.2.7 Répertoire
php-template-readfile8.2.9 Système de fichier
php-template-readlink8.2.9 Système de fichier
php-template-realpath8.2.9 Système de fichier
php-template-register-shutdown-function8.2.10 Fonctions
php-template-register-tick-function8.2.10 Fonctions
php-template-rename8.2.9 Système de fichier
php-template-require8.2.5 Structures de contrôle
php-template-require-once8.2.5 Structures de contrôle
php-template-reset8.2.4 Tableaux
php-template-restore-error-handler8.2.8 Erreur
php-template-restore-exception-handler8.2.8 Erreur
php-template-return8.2.5 Structures de contrôle
php-template-rewind8.2.9 Système de fichier
php-template-rewinddir8.2.7 Répertoire
php-template-rmdir8.2.9 Système de fichier
php-template-round8.2.13 Mathématiques
php-template-rsort8.2.4 Tableaux
php-template-rtrim8.2.19 Chaînes de caractères
php-template-scandir8.2.7 Répertoire
php-template-serialize8.2.20 Variable
php-template-session-cache-expire8.2.18 Session
php-template-session-cache-limiter8.2.18 Session
php-template-session-commit8.2.18 Session
php-template-session-decode8.2.18 Session
php-template-session-destroy8.2.18 Session
php-template-session-encode8.2.18 Session
php-template-session-get-cookie-params8.2.18 Session
php-template-session-id8.2.18 Session
php-template-session-is-registered8.2.18 Session
php-template-session-module-name8.2.18 Session
php-template-session-name8.2.18 Session
php-template-session-regenerate-id8.2.18 Session
php-template-session-register8.2.18 Session
php-template-session-save-path8.2.18 Session
php-template-session-set-cookie-params8.2.18 Session
php-template-session-set-save-handler8.2.18 Session
php-template-session-start8.2.18 Session
php-template-session-unregister8.2.18 Session
php-template-session-unset8.2.18 Session
php-template-session-write-close8.2.18 Session
php-template-set-error-handler8.2.8 Erreur
php-template-set-exception-handler8.2.8 Erreur
php-template-setlocale8.2.19 Chaînes de caractères
php-template-settype8.2.20 Variable
php-template-sha18.2.19 Chaînes de caractères
php-template-sha1-file8.2.19 Chaînes de caractères
php-template-show-source8.2.14 Fonctions diverses
php-template-shuffle8.2.4 Tableaux
php-template-similar-text8.2.19 Chaînes de caractères
php-template-sin8.2.13 Mathématiques
php-template-sinh8.2.13 Mathématiques
php-template-sizeof8.2.4 Tableaux
php-template-sleep8.2.14 Fonctions diverses
php-template-sort8.2.4 Tableaux
php-template-soundex8.2.19 Chaînes de caractères
php-template-split8.2.17 Expressions régulières
php-template-spliti8.2.17 Expressions régulières
php-template-sprintf8.2.19 Chaînes de caractères
php-template-sql-regcase8.2.17 Expressions régulières
php-template-sqrt8.2.13 Mathématiques
php-template-srand8.2.13 Mathématiques
php-template-sscanf8.2.19 Chaînes de caractères
php-template-stat8.2.9 Système de fichier
php-template-str-ireplace8.2.19 Chaînes de caractères
php-template-str-pad8.2.19 Chaînes de caractères
php-template-str-repeat8.2.19 Chaînes de caractères
php-template-str-replace8.2.19 Chaînes de caractères
php-template-str-rot138.2.19 Chaînes de caractères
php-template-str-shuffle8.2.19 Chaînes de caractères
php-template-str-split8.2.19 Chaînes de caractères
php-template-str-word-count8.2.19 Chaînes de caractères
php-template-strcasecmp8.2.19 Chaînes de caractères
php-template-strchr8.2.19 Chaînes de caractères
php-template-strcmp8.2.19 Chaînes de caractères
php-template-strcoll8.2.19 Chaînes de caractères
php-template-strcspn8.2.19 Chaînes de caractères
php-template-strftime8.2.6 Date/Temps
php-template-strip-tags8.2.19 Chaînes de caractères
php-template-stripcslashes8.2.19 Chaînes de caractères
php-template-stripos8.2.19 Chaînes de caractères
php-template-stripslashes8.2.19 Chaînes de caractères
php-template-stristr8.2.19 Chaînes de caractères
php-template-strlen8.2.19 Chaînes de caractères
php-template-strnatcasecmp8.2.19 Chaînes de caractères
php-template-strnatcmp8.2.19 Chaînes de caractères
php-template-strncasecmp8.2.19 Chaînes de caractères
php-template-strncmp8.2.19 Chaînes de caractères
php-template-strpbrk8.2.19 Chaînes de caractères
php-template-strpos8.2.19 Chaînes de caractères
php-template-strptime8.2.6 Date/Temps
php-template-strrchr8.2.19 Chaînes de caractères
php-template-strrev8.2.19 Chaînes de caractères
php-template-strripos8.2.19 Chaînes de caractères
php-template-strrpos8.2.19 Chaînes de caractères
php-template-strspn8.2.19 Chaînes de caractères
php-template-strstr8.2.19 Chaînes de caractères
php-template-strtok8.2.19 Chaînes de caractères
php-template-strtolower8.2.19 Chaînes de caractères
php-template-strtotime8.2.6 Date/Temps
php-template-strtoupper8.2.19 Chaînes de caractères
php-template-strtr8.2.19 Chaînes de caractères
php-template-strval8.2.20 Variable
php-template-substr8.2.19 Chaînes de caractères
php-template-substr-compare8.2.19 Chaînes de caractères
php-template-substr-count8.2.19 Chaînes de caractères
php-template-substr-replace8.2.19 Chaînes de caractères
php-template-switch8.2.5 Structures de contrôle
php-template-symlink8.2.9 Système de fichier
php-template-sys-getloadavg8.2.14 Fonctions diverses
php-template-tan8.2.13 Mathématiques
php-template-tanh8.2.13 Mathématiques
php-template-tempnam8.2.9 Système de fichier
php-template-time8.2.6 Date/Temps
php-template-time-nanosleep8.2.14 Fonctions diverses
php-template-time-sleep-until8.2.14 Fonctions diverses
php-template-tmpfile8.2.9 Système de fichier
php-template-touch8.2.9 Système de fichier
php-template-trigger-error8.2.8 Erreur
php-template-trim8.2.19 Chaînes de caractères
php-template-uasort8.2.4 Tableaux
php-template-ucfirst8.2.19 Chaînes de caractères
php-template-ucwords8.2.19 Chaînes de caractères
php-template-uksort8.2.4 Tableaux
php-template-umask8.2.9 Système de fichier
php-template-uniqid8.2.14 Fonctions diverses
php-template-unlink8.2.9 Système de fichier
php-template-unpack8.2.14 Fonctions diverses
php-template-unregister-tick-function8.2.10 Fonctions
php-template-unserialize8.2.20 Variable
php-template-unset8.2.20 Variable
php-template-user-error8.2.8 Erreur
php-template-usleep8.2.14 Fonctions diverses
php-template-usort8.2.4 Tableaux
php-template-utf8-decode8.2.21 XML
php-template-utf8-encode8.2.21 XML
php-template-var-dump8.2.20 Variable
php-template-var-export8.2.20 Variable
php-template-vfprintf8.2.19 Chaînes de caractères
php-template-virtual8.2.2 Apache
php-template-vprintf8.2.19 Chaînes de caractères
php-template-vsprintf8.2.19 Chaînes de caractères
php-template-while8.2.5 Structures de contrôle
php-template-wordwrap8.2.19 Chaînes de caractères
php-template-xml-error-string8.2.21 XML
php-template-xml-get-current-byte-index8.2.21 XML
php-template-xml-get-current-column-number8.2.21 XML
php-template-xml-get-current-line-number8.2.21 XML
php-template-xml-get-error-code8.2.21 XML
php-template-xml-parse8.2.21 XML
php-template-xml-parse-into-struct8.2.21 XML
php-template-xml-parser-create8.2.21 XML
php-template-xml-parser-create-ns8.2.21 XML
php-template-xml-parser-free8.2.21 XML
php-template-xml-parser-get-option8.2.21 XML
php-template-xml-parser-set-option8.2.21 XML
php-template-xml-set-character-data-handler8.2.21 XML
php-template-xml-set-default-handler8.2.21 XML
php-template-xml-set-element-handler8.2.21 XML
php-template-xml-set-end-namespace-decl-handler8.2.21 XML
php-template-xml-set-external-entity-ref-handler8.2.21 XML
php-template-xml-set-notation-decl-handler8.2.21 XML
php-template-xml-set-object8.2.21 XML
php-template-xml-set-processing-instruction-handler8.2.21 XML
php-template-xml-set-start-namespace-decl-handler8.2.21 XML
php-template-xml-set-unparsed-entity-decl-handler8.2.21 XML
php-version4.1.1 Fonctions

Aller à:   I   P  

[ < ] [ > ]   [ << ] [Plus haut] [ >> ]         [Top] [Table des matières] [Index] [ ? ]

Index des touches de Stuttering

Aller à:   (   )   *   ;   }  
E   S  
Entrée d'index Section

(
(7.2 Fonctions

)
)7.2 Fonctions

*
*7.2 Fonctions

;
;7.2 Fonctions

}
}7.2 Fonctions

E
ENTER7.2 Fonctions

S
SPACE7.2 Fonctions

Aller à:   (   )   *   ;   }  
E   S  

[Top] [Table des matières] [Index] [ ? ]

Table des matières


[Top] [Table des matières] [Index] [ ? ]

Résumé du contenu


[Top] [Table des matières] [Index] [ ? ]

A propos de ce document

Ce document a été généré par Vincent DEBOUT le 17 Mars 2007 en utilisant texi2html 1.76.

Les boutons de navigation ont la signification suivante :

Bouton Nom Aller à Depuis 1.2.3 aller à
[ < ] Back section précédente dans l'ordre de lecture 1.2.2
[ > ] Forward section suivante dans l'ordre de lecture 1.2.4
[ << ] FastBack début de ce chapitre ou chapitre précédent 1
[Plus haut] Up section supérieure 1.2
[ >> ] FastForward chapitre suivant 2
[Top] Top couverture (top) du document  
[Table des matières] Contents table des matières  
[Index] Index index  
[ ? ] About à propos (page d'aide)  

Dans cet exemple on est à Sous section un-deux-trois dans un document dont la structure est :


Ce document a été généré par Vincent DEBOUT le 17 Mars 2007 en utilisant texi2html 1.76.