[Top] | [Table des matières] | [Index] | [ ? ] |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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.1 Pré-recquis | ||
2.2 Télécharger | ||
2.3 Installation/Mise à jour | ||
2.4 Invoquer le PHP-Mode | ||
Installation | ||
---|---|---|
2.3.1 Installation | ||
2.3.2 Mise à jour |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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] | [ ? ] |
Deux adresse internet à votre disposition pour télécharger PHP Mode :
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
2.3.1 Installation | ||
2.3.2 Mise à jour |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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] | [ ? ] |
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] | [ ? ] |
Vous avez deux possibilités pour invoquer le PHP Mode.
M-x php-mode
(setq auto-mode-alist (append '(("\\.php$" . php-mode) ("\\.php5$" . php-mode)) auto-mode-alist)) |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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....
3.1 Paramètres | ||
3.2 Fonctions | ||
Paramètres | ||
---|---|---|
3.1.1 Mode | ||
3.1.2 Menu | ||
3.1.3 Template | ||
3.1.4 Style | ||
3.1.5 PHPDocumentor | ||
3.1.6 Divers | ||
Fonctions | ||
3.2.1 Mode |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
3.1.1 Mode | ||
3.1.2 Menu | ||
3.1.3 Template | ||
3.1.4 Style | ||
3.1.5 PHPDocumentor | ||
3.1.6 Divers |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
PHP Mode contient 3 modes permettant de faciliter l'écriture du PHP. Vous pouvez activer/désactiver chacun des modes séparément.
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'.
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'.
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] | [ ? ] |
PHP Mode contient aussi 2 menus que vous pouvez activer/désactiver. Les menus Index et Sources sont spécifiques à chaques fichiers PHP ouverts.
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.
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.
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] | [ ? ] |
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';
)
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é.
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é.
3.1.3.1 En-tête |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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.
Type : chaîne de caractères
Valeur par défaut : `""'
Description : La fin du fichier à insérer.
Voir `php-file-header' pour la syntaxe.
Type : chaîne de caractères
Valeur par défaut : `""'
Description : Nom de la société.
Type : chaîne de caractères
Valeur par défaut : `""'
Description : Copyright à insérer.
Type : chaîne de caractères
Valeur par défaut : `"%Y-%m-%d"'
Description : Format de la date.
Type : chaîne de caractères
Valeur par défaut : `" * Last update: "'
Description : Préfixe de la date de dernière modification.
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] | [ ? ] |
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] | [ ? ] |
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.
Type : liste (chaînes de caractères)
Valeur par défaut : `'("package")'
Description : Liste des
tags PHP-Documentor à ajouter dans les commentaires des classes.
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] | [ ? ] |
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.
Type : bool
Valeur par défaut : `t'
Description : Si `t'; active la completion
dans le minibuffer.
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.1 Mode |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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.
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] | [ ? ] |
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.
4.1 PHP | ||
4.2 Index | ||
4.3 Sources |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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.
4.1.1 Fonctions |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Show Messages
Raccourci clavier : C-c M-m
Description : Cette fonction ouvre le buffer *Messages* pour afficher les messages d'erreur.
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).
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] | [ ? ] |
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.
4.2.1 Paramètres |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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.
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] | [ ? ] |
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.
4.3.1 Paramètres | ||
4.3.2 Fonctions |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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] | [ ? ] |
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] | [ ? ] |
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.
5.1 Paramètres |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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.
Type : bool
Valeur par défaut : `t'
Description : Si `t'; active la completion
dans le minibuffer.
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] | [ ? ] |
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.
6.1 Paramètres | ||
6.2 Fonctions |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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.
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] | [ ? ] |
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).
Menu : PHP -> Indent -> Region
Raccourci clavier : M-C-, Cette fonction est utilisée pour indenter la region selectionnée dans le buffer courant.
Description :
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] | [ ? ] |
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.
7.1 Paramètres | ||
7.2 Fonctions |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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] | [ ? ] |
Si dans un commentaire, indente le commentaire et ajoute une nouvelle ligne si besoin. Dans les autres cas, ajoute un espace.
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] | [ ? ] |
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).
8.1 Paramètres | ||
8.2 Fonctions |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
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] | [ ? ] |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> .NET -> dotnet_load
Raccourcis clavier : aucun
Fonction PHP : dotnet_load
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Apache -> apache_child_terminate
Raccourcis clavier : aucun
Fonction PHP : apache_child_terminate
Menu : PHP -> Templates -> Apache -> apache_get_modules
Raccourcis clavier : aucun
Fonction PHP : apache_get_modules
Menu : PHP -> Templates -> Apache -> apache_get_version
Raccourcis clavier : aucun
Fonction PHP : apache_get_version
Menu : PHP -> Templates -> Apache -> apache_getenv
Raccourcis clavier : aucun
Fonction PHP : apache_getenv
Menu : PHP -> Templates -> Apache -> apache_lookup_uri
Raccourcis clavier : aucun
Fonction PHP : apache_lookup_uri
Menu : PHP -> Templates -> Apache -> apache_note
Raccourcis clavier : aucun
Fonction PHP : apache_note
Menu : PHP -> Templates -> Apache -> apache_request_headers
Raccourcis clavier : aucun
Fonction PHP : apache_request_headers
Menu : PHP -> Templates -> Apache -> apache_reset_timeout
Raccourcis clavier : aucun
Fonction PHP : apache_reset_timeout
Menu : PHP -> Templates -> Apache -> apache_response_headers
Raccourcis clavier : aucun
Fonction PHP : apache_response_headers
Menu : PHP -> Templates -> Apache -> apache_setenv
Raccourcis clavier : aucun
Fonction PHP : apache_setenv
Menu : PHP -> Templates -> Apache -> ascii2ebcdic
Raccourcis clavier : aucun
Fonction PHP : ascii2ebcdic
Menu : PHP -> Templates -> Apache -> ebcdic2ascii
Raccourcis clavier : aucun
Fonction PHP : ebcdic2ascii
Menu : PHP -> Templates -> Apache -> getallheaders
Raccourcis clavier : aucun
Fonction PHP : getallheaders
Menu : PHP -> Templates -> Apache -> virtual
Raccourcis clavier : aucun
Fonction PHP : virtual
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> APC -> apc_cache_info
Raccourcis clavier : aucun
Fonction PHP : apc_cache_info
Menu : PHP -> Templates -> APC -> apc_clear_cache
Raccourcis clavier : aucun
Fonction PHP : apc_clear_cache
Menu : PHP -> Templates -> APC -> apc_define_constants
Raccourcis clavier : aucun
Fonction PHP : apc_define_constants
Menu : PHP -> Templates -> APC -> apc_delete
Raccourcis clavier : aucun
Fonction PHP : apc_delete
Menu : PHP -> Templates -> APC -> apc_fetch
Raccourcis clavier : aucun
Fonction PHP : apc_fetch
Menu : PHP -> Templates -> APC -> apc_load_constants
Raccourcis clavier : aucun
Fonction PHP : apc_load_constants
Menu : PHP -> Templates -> APC -> apc_sma_info
Raccourcis clavier : aucun
Fonction PHP : apc_sma_info
Menu : PHP -> Templates -> APC -> apc_store
Raccourcis clavier : aucun
Fonction PHP : apc_store
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_change_key_case
Raccourcis clavier : aucun
Fonction PHP : array_change_key_case
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_chunk
Raccourcis clavier : aucun
Fonction PHP : array_chunk
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_combine
Raccourcis clavier : aucun
Fonction PHP : array_combine
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_count_values
Raccourcis clavier : aucun
Fonction PHP : array_count_values
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_assoc
Raccourcis clavier : aucun
Fonction PHP : array_diff_assoc
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_key
Raccourcis clavier : aucun
Fonction PHP : array_diff_key
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_uassoc
Raccourcis clavier : aucun
Fonction PHP : array_diff_uassoc
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_ukey
Raccourcis clavier : aucun
Fonction PHP : array_diff_ukey
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff
Raccourcis clavier : aucun
Fonction PHP : array_diff
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_fill
Raccourcis clavier : aucun
Fonction PHP : array_fill
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_filter
Raccourcis clavier : aucun
Fonction PHP : array_filter
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_flip
Raccourcis clavier : aucun
Fonction PHP : array_flip
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_assoc
Raccourcis clavier : aucun
Fonction PHP : array_intersect_assoc
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_key
Raccourcis clavier : aucun
Fonction PHP : array_intersect_key
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_uassoc
Raccourcis clavier : aucun
Fonction PHP : array_intersect_uassoc
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_ukey
Raccourcis clavier : aucun
Fonction PHP : array_intersect_ukey
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect
Raccourcis clavier : aucun
Fonction PHP : array_intersect
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_key_exists
Raccourcis clavier : aucun
Fonction PHP : array_key_exists
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_keys
Raccourcis clavier : aucun
Fonction PHP : array_keys
Menu : PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_map
Raccourcis clavier : aucun
Fonction PHP : array_map
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_merge_recursive
Raccourcis clavier : aucun
Fonction PHP : array_merge_recursive
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_merge
Raccourcis clavier : aucun
Fonction PHP : array_merge
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_multisort
Raccourcis clavier : aucun
Fonction PHP : array_multisort
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_pad
Raccourcis clavier : aucun
Fonction PHP : array_pad
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_pop
Raccourcis clavier : aucun
Fonction PHP : array_pop
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_product
Raccourcis clavier : aucun
Fonction PHP : array_product
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_push
Raccourcis clavier : aucun
Fonction PHP : array_push
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_rand
Raccourcis clavier : aucun
Fonction PHP : array_rand
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_reduce
Raccourcis clavier : aucun
Fonction PHP : array_reduce
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_reverse
Raccourcis clavier : aucun
Fonction PHP : array_reverse
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_search
Raccourcis clavier : aucun
Fonction PHP : array_search
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_shift
Raccourcis clavier : aucun
Fonction PHP : array_shift
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_slice
Raccourcis clavier : aucun
Fonction PHP : array_slice
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_splice
Raccourcis clavier : aucun
Fonction PHP : array_splice
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_sum
Raccourcis clavier : aucun
Fonction PHP : array_sum
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_udiff_assoc
Raccourcis clavier : aucun
Fonction PHP : array_udiff_assoc
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_udiff_uassoc
Raccourcis clavier : aucun
Fonction PHP : array_udiff_uassoc
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_udiff
Raccourcis clavier : aucun
Fonction PHP : array_udiff
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_uintersect_assoc
Raccourcis clavier : aucun
Fonction PHP : array_uintersect_assoc
Menu : PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_assoc) -> array_uintersect_uassoc
Raccourcis clavier : aucun
Fonction PHP : array_uintersect_uassoc
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_uintersect
Raccourcis clavier : aucun
Fonction PHP : array_uintersect
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_unique
Raccourcis clavier : aucun
Fonction PHP : array_unique
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_unshift
Raccourcis clavier : aucun
Fonction PHP : array_unshift
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_values
Raccourcis clavier : aucun
Fonction PHP : array_values
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_walk_recursive
Raccourcis clavier : aucun
Fonction PHP : array_walk_recursive
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_walk
Raccourcis clavier : aucun
Fonction PHP : array_walk
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array
Raccourcis clavier : aucun
Fonction PHP : array
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> arsort
Raccourcis clavier : aucun
Fonction PHP : arsort
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> asort
Raccourcis clavier : aucun
Fonction PHP : asort
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> compact
Raccourcis clavier : aucun
Fonction PHP : compact
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> count
Raccourcis clavier : aucun
Fonction PHP : count
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> current
Raccourcis clavier : aucun
Fonction PHP : current
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> each
Raccourcis clavier : aucun
Fonction PHP : each
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> end
Raccourcis clavier : aucun
Fonction PHP : end
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> extract
Raccourcis clavier : aucun
Fonction PHP : extract
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> in_array
Raccourcis clavier : aucun
Fonction PHP : in_array
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> key
Raccourcis clavier : aucun
Fonction PHP : key
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> krsort
Raccourcis clavier : aucun
Fonction PHP : krsort
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> ksort
Raccourcis clavier : aucun
Fonction PHP : ksort
Menu : PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> list
Raccourcis clavier : aucun
Fonction PHP : list
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> natcasesort
Raccourcis clavier : aucun
Fonction PHP : natcasesort
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> natsort
Raccourcis clavier : aucun
Fonction PHP : natsort
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> next
Raccourcis clavier : aucun
Fonction PHP : next
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> pos
Raccourcis clavier : aucun
Fonction PHP : pos
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> prev
Raccourcis clavier : aucun
Fonction PHP : prev
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> range
Raccourcis clavier : aucun
Fonction PHP : range
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> reset
Raccourcis clavier : aucun
Fonction PHP : reset
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> rsort
Raccourcis clavier : aucun
Fonction PHP : rsort
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> shuffle
Raccourcis clavier : aucun
Fonction PHP : shuffle
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> sizeof
Raccourcis clavier : aucun
Fonction PHP : sizeof
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> sort
Raccourcis clavier : aucun
Fonction PHP : sort
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> uasort
Raccourcis clavier : aucun
Fonction PHP : uasort
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> uksort
Raccourcis clavier : aucun
Fonction PHP : uksort
Menu : PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> usort
Raccourcis clavier : aucun
Fonction PHP : usort
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Control Structures -> break
Raccourcis clavier : aucun
Fonction PHP : break
Menu : PHP -> Templates -> Control Structures -> continue
Raccourcis clavier : aucun
Fonction PHP : continue
Menu : PHP -> Templates -> Control Structures -> do-while
Raccourcis clavier : aucun
Fonction PHP : do-while
Menu : PHP -> Templates -> Control Structures -> else
Raccourcis clavier : aucun
Fonction PHP : else
Menu : PHP -> Templates -> Control Structures -> elseif
Raccourcis clavier : aucun
Fonction PHP : elseif
Menu : PHP -> Templates -> Control Structures -> for
Raccourcis clavier : aucun
Fonction PHP : for
Menu : PHP -> Templates -> Control Structures -> foreach
Raccourcis clavier : aucun
Fonction PHP : foreach
Menu : PHP -> Templates -> Control Structures -> if
Raccourcis clavier : aucun
Fonction PHP : if
Menu : PHP -> Templates -> Control Structures -> include
Raccourcis clavier : aucun
Fonction PHP : include
Menu : PHP -> Templates -> Control Structures -> include_once
Raccourcis clavier : aucun
Fonction PHP : include_once
Menu : PHP -> Templates -> Control Structures -> require
Raccourcis clavier : aucun
Fonction PHP : require
Menu : PHP -> Templates -> Control Structures -> require_once
Raccourcis clavier : aucun
Fonction PHP : require_once
Menu : PHP -> Templates -> Control Structures -> return
Raccourcis clavier : aucun
Fonction PHP : return
Menu : PHP -> Templates -> Control Structures -> switch
Raccourcis clavier : aucun
Fonction PHP : switch
Menu : PHP -> Templates -> Control Structures -> while
Raccourcis clavier : aucun
Fonction PHP : while
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Date/Time Functions -> checkdate
Raccourcis clavier : aucun
Fonction PHP : checkdate
Menu : PHP -> Templates -> Date/Time Functions -> date_default_timezone_get
Raccourcis clavier : aucun
Fonction PHP : date_default_timezone_get
Menu : PHP -> Templates -> Date/Time Functions -> date_default_timezone_set
Raccourcis clavier : aucun
Fonction PHP : date_default_timezone_set
Menu : PHP -> Templates -> Date/Time Functions -> date_sunrise
Raccourcis clavier : aucun
Fonction PHP : date_sunrise
Menu : PHP -> Templates -> Date/Time Functions -> date_sunset
Raccourcis clavier : aucun
Fonction PHP : date_sunset
Menu : PHP -> Templates -> Date/Time Functions -> date
Raccourcis clavier : aucun
Fonction PHP : date
Menu : PHP -> Templates -> Date/Time Functions -> getdate
Raccourcis clavier : aucun
Fonction PHP : getdate
Menu : PHP -> Templates -> Date/Time Functions -> gettimeofday
Raccourcis clavier : aucun
Fonction PHP : gettimeofday
Menu : PHP -> Templates -> Date/Time Functions -> gmdate
Raccourcis clavier : aucun
Fonction PHP : gmdate
Menu : PHP -> Templates -> Date/Time Functions -> gmmktime
Raccourcis clavier : aucun
Fonction PHP : gmmktime
Menu : PHP -> Templates -> Date/Time Functions -> gmstrftime
Raccourcis clavier : aucun
Fonction PHP : gmstrftime
Menu : PHP -> Templates -> Date/Time Functions -> idate
Raccourcis clavier : aucun
Fonction PHP : idate
Menu : PHP -> Templates -> Date/Time Functions -> localtime
Raccourcis clavier : aucun
Fonction PHP : localtime
Menu : PHP -> Templates -> Date/Time Functions -> microtime
Raccourcis clavier : aucun
Fonction PHP : microtime
Menu : PHP -> Templates -> Date/Time Functions -> mktime
Raccourcis clavier : aucun
Fonction PHP : mktime
Menu : PHP -> Templates -> Date/Time Functions -> strftime
Raccourcis clavier : aucun
Fonction PHP : strftime
Menu : PHP -> Templates -> Date/Time Functions -> strptime
Raccourcis clavier : aucun
Fonction PHP : strptime
Menu : PHP -> Templates -> Date/Time Functions -> strtotime
Raccourcis clavier : aucun
Fonction PHP : strtotime
Menu : PHP -> Templates -> Date/Time Functions -> time
Raccourcis clavier : aucun
Fonction PHP : time
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Directory Functions -> chdir
Raccourcis clavier : aucun
Fonction PHP : chdir
Menu : PHP -> Templates -> Directory Functions -> chroot
Raccourcis clavier : aucun
Fonction PHP : chroot
Menu : PHP -> Templates -> Directory Functions -> dir
Raccourcis clavier : aucun
Fonction PHP : dir
Menu : PHP -> Templates -> Directory Functions -> closedir
Raccourcis clavier : aucun
Fonction PHP : closedir
Menu : PHP -> Templates -> Directory Functions -> getcwd
Raccourcis clavier : aucun
Fonction PHP : getcwd
Menu : PHP -> Templates -> Directory Functions -> opendir
Raccourcis clavier : aucun
Fonction PHP : opendir
Menu : PHP -> Templates -> Directory Functions -> readdir
Raccourcis clavier : aucun
Fonction PHP : readdir
Menu : PHP -> Templates -> Directory Functions -> rewinddir
Raccourcis clavier : aucun
Fonction PHP : rewinddir
Menu : PHP -> Templates -> Directory Functions -> scandir
Raccourcis clavier : aucun
Fonction PHP : scandir
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Error and Logging -> debug_backtrace
Raccourcis clavier : aucun
Fonction PHP : debug_backtrace
Menu : PHP -> Templates -> Error and Logging -> debug_print_backtrace
Raccourcis clavier : aucun
Fonction PHP : debug_print_backtrace
Menu : PHP -> Templates -> Error and Logging -> error_log
Raccourcis clavier : aucun
Fonction PHP : error_log
Menu : PHP -> Templates -> Error and Logging -> error_reporting
Raccourcis clavier : aucun
Fonction PHP : error_reporting
Menu : PHP -> Templates -> Error and Logging -> restore_error_handler
Raccourcis clavier : aucun
Fonction PHP : restore_error_handler
Menu : PHP -> Templates -> Error and Logging -> restore_exception_handler
Raccourcis clavier : aucun
Fonction PHP : restore_exception_handler
Menu : PHP -> Templates -> Error and Logging -> set_error_handler
Raccourcis clavier : aucun
Fonction PHP : set_error_handler
Menu : PHP -> Templates -> Error and Logging -> set_exception_handler
Raccourcis clavier : aucun
Fonction PHP : set_exception_handler
Menu : PHP -> Templates -> Error and Logging -> trigger_error
Raccourcis clavier : aucun
Fonction PHP : trigger_error
Menu : PHP -> Templates -> Error and Logging -> user_error
Raccourcis clavier : aucun
Fonction PHP : user_error
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> basename
Raccourcis clavier : aucun
Fonction PHP : basename
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> chgrp
Raccourcis clavier : aucun
Fonction PHP : chgrp
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> chmod
Raccourcis clavier : aucun
Fonction PHP : chmod
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> chown
Raccourcis clavier : aucun
Fonction PHP : chown
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> clearstatcache
Raccourcis clavier : aucun
Fonction PHP : clearstatcache
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> copy
Raccourcis clavier : aucun
Fonction PHP : copy
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> delete
Raccourcis clavier : aucun
Fonction PHP : delete
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> dirname
Raccourcis clavier : aucun
Fonction PHP : dirname
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> disk_free_space
Raccourcis clavier : aucun
Fonction PHP : disk_free_space
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> disk_total_space
Raccourcis clavier : aucun
Fonction PHP : disk_total_space
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> diskfreespace
Raccourcis clavier : aucun
Fonction PHP : diskfreespace
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fclose
Raccourcis clavier : aucun
Fonction PHP : fclose
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> feof
Raccourcis clavier : aucun
Fonction PHP : feof
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fflush
Raccourcis clavier : aucun
Fonction PHP : fflush
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgetc
Raccourcis clavier : aucun
Fonction PHP : fgetc
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgetcsv
Raccourcis clavier : aucun
Fonction PHP : fgetcsv
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgets
Raccourcis clavier : aucun
Fonction PHP : fgets
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgetss
Raccourcis clavier : aucun
Fonction PHP : fgetss
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> file_exists
Raccourcis clavier : aucun
Fonction PHP : file_exists
Menu : PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> file_get_contents
Raccourcis clavier : aucun
Fonction PHP : file_get_contents
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> file_put_contents
Raccourcis clavier : aucun
Fonction PHP : file_put_contents
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> file
Raccourcis clavier : aucun
Fonction PHP : file
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileatime
Raccourcis clavier : aucun
Fonction PHP : fileatime
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filectime
Raccourcis clavier : aucun
Fonction PHP : filectime
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filegroup
Raccourcis clavier : aucun
Fonction PHP : filegroup
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileinode
Raccourcis clavier : aucun
Fonction PHP : fileinode
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filemtime
Raccourcis clavier : aucun
Fonction PHP : filemtime
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileowner
Raccourcis clavier : aucun
Fonction PHP : fileowner
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileperms
Raccourcis clavier : aucun
Fonction PHP : fileperms
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filesize
Raccourcis clavier : aucun
Fonction PHP : filesize
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filetype
Raccourcis clavier : aucun
Fonction PHP : filetype
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> flock
Raccourcis clavier : aucun
Fonction PHP : flock
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fnmatch
Raccourcis clavier : aucun
Fonction PHP : fnmatch
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fopen
Raccourcis clavier : aucun
Fonction PHP : fopen
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fpassthru
Raccourcis clavier : aucun
Fonction PHP : fpassthru
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fputcsv
Raccourcis clavier : aucun
Fonction PHP : fputcsv
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fputs
Raccourcis clavier : aucun
Fonction PHP : fputs
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fread
Raccourcis clavier : aucun
Fonction PHP : fread
Menu : PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fseek
Raccourcis clavier : aucun
Fonction PHP : fseek
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> fstat
Raccourcis clavier : aucun
Fonction PHP : fstat
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> ftell
Raccourcis clavier : aucun
Fonction PHP : ftell
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> ftruncate
Raccourcis clavier : aucun
Fonction PHP : ftruncate
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> fwrite
Raccourcis clavier : aucun
Fonction PHP : fwrite
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> glob
Raccourcis clavier : aucun
Fonction PHP : glob
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_dir
Raccourcis clavier : aucun
Fonction PHP : is_dir
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_executable
Raccourcis clavier : aucun
Fonction PHP : is_executable
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_file
Raccourcis clavier : aucun
Fonction PHP : is_file
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_link
Raccourcis clavier : aucun
Fonction PHP : is_link
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_readable
Raccourcis clavier : aucun
Fonction PHP : is_readable
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_uploaded_file
Raccourcis clavier : aucun
Fonction PHP : is_uploaded_file
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_writable
Raccourcis clavier : aucun
Fonction PHP : is_writable
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_writeable
Raccourcis clavier : aucun
Fonction PHP : is_writeable
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> link
Raccourcis clavier : aucun
Fonction PHP : link
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> linkinfo
Raccourcis clavier : aucun
Fonction PHP : linkinfo
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> lstat
Raccourcis clavier : aucun
Fonction PHP : lstat
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> mkdir
Raccourcis clavier : aucun
Fonction PHP : mkdir
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> move_uploaded_file
Raccourcis clavier : aucun
Fonction PHP : move_uploaded_file
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> parse_ini_file
Raccourcis clavier : aucun
Fonction PHP : parse_ini_file
Menu : PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> pathinfo
Raccourcis clavier : aucun
Fonction PHP : pathinfo
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> pclose
Raccourcis clavier : aucun
Fonction PHP : pclose
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> popen
Raccourcis clavier : aucun
Fonction PHP : popen
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> readfile
Raccourcis clavier : aucun
Fonction PHP : readfile
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> readlink
Raccourcis clavier : aucun
Fonction PHP : readlink
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> realpath
Raccourcis clavier : aucun
Fonction PHP : realpath
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> rename
Raccourcis clavier : aucun
Fonction PHP : rename
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> rewind
Raccourcis clavier : aucun
Fonction PHP : rewind
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> rmdir
Raccourcis clavier : aucun
Fonction PHP : rmdir
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> stat
Raccourcis clavier : aucun
Fonction PHP : stat
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> symlink
Raccourcis clavier : aucun
Fonction PHP : symlink
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> tempnam
Raccourcis clavier : aucun
Fonction PHP : tempnam
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> tmpfile
Raccourcis clavier : aucun
Fonction PHP : tmpfile
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> touch
Raccourcis clavier : aucun
Fonction PHP : touch
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> umask
Raccourcis clavier : aucun
Fonction PHP : umask
Menu : PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> unlink
Raccourcis clavier : aucun
Fonction PHP : unlink
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Functions -> call_user_func_array
Raccourcis clavier : aucun
Fonction PHP : call_user_func_array
Menu : PHP -> Templates -> Functions -> call_user_func
Raccourcis clavier : aucun
Fonction PHP : call_user_func
Menu : PHP -> Templates -> Functions -> create_function
Raccourcis clavier : aucun
Fonction PHP : create_function
Menu : PHP -> Templates -> Functions -> func_get_arg
Raccourcis clavier : aucun
Fonction PHP : func_get_arg
Menu : PHP -> Templates -> Functions -> func_get_args
Raccourcis clavier : aucun
Fonction PHP : func_get_args
Menu : PHP -> Templates -> Functions -> func_num_args
Raccourcis clavier : aucun
Fonction PHP : func_num_args
Menu : PHP -> Templates -> Functions -> function_exists
Raccourcis clavier : aucun
Fonction PHP : function_exists
Menu : PHP -> Templates -> Functions -> get_defined_functions
Raccourcis clavier : aucun
Fonction PHP : get_defined_functions
Menu : PHP -> Templates -> Functions -> register_shutdown_function
Raccourcis clavier : aucun
Fonction PHP : register_shutdown_function
Menu : PHP -> Templates -> Functions -> register_tick_function
Raccourcis clavier : aucun
Fonction PHP : register_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] | [ ? ] |
Menu : PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> gd_info
Raccourcis clavier : aucun
Fonction PHP : gd_info
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> getimagesize
Raccourcis clavier : aucun
Fonction PHP : getimagesize
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> image_type_to_extension
Raccourcis clavier : aucun
Fonction PHP : image_type_to_extension
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
Menu : PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> image2wbmp
Raccourcis clavier : aucun
Fonction PHP : image2wbmp
Menu : PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> imagealphablending
Raccourcis clavier : aucun
Fonction PHP : imagealphablending
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> imageantialias
Raccourcis clavier : aucun
Fonction PHP : imageantialias
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> imagearc
Raccourcis clavier : aucun
Fonction PHP : imagearc
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagechar
Raccourcis clavier : aucun
Fonction PHP : imagechar
Menu : PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecharup
Raccourcis clavier : aucun
Fonction PHP : imagecharup
Menu : PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorallocate
Raccourcis clavier : aucun
Fonction PHP : imagecolorallocate
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorallocatealpha
Raccourcis clavier : aucun
Fonction PHP : imagecolorallocatealpha
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorat
Raccourcis clavier : aucun
Fonction PHP : imagecolorat
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorclosest
Raccourcis clavier : aucun
Fonction PHP : imagecolorclosest
Menu : PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorclosestalpha
Raccourcis clavier : aucun
Fonction PHP : imagecolorclosestalpha
Menu : PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorclosesthwb
Raccourcis clavier : aucun
Fonction PHP : imagecolorclosesthwb
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> imagecolordeallocate
Raccourcis clavier : aucun
Fonction PHP : imagecolordeallocate
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorexact
Raccourcis clavier : aucun
Fonction PHP : imagecolorexact
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorexactalpha
Raccourcis clavier : aucun
Fonction PHP : imagecolorexactalpha
Menu : PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolormatch
Raccourcis clavier : aucun
Fonction PHP : imagecolormatch
Menu : PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorresolve
Raccourcis clavier : aucun
Fonction PHP : imagecolorresolve
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorresolvealpha
Raccourcis clavier : aucun
Fonction PHP : imagecolorresolvealpha
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorset
Raccourcis clavier : aucun
Fonction PHP : imagecolorset
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorsforindex
Raccourcis clavier : aucun
Fonction PHP : imagecolorsforindex
Menu : PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorstotal
Raccourcis clavier : aucun
Fonction PHP : imagecolorstotal
Menu : PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolortransparent
Raccourcis clavier : aucun
Fonction PHP : imagecolortransparent
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imageconvolution
Raccourcis clavier : aucun
Fonction PHP : imageconvolution
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopy
Raccourcis clavier : aucun
Fonction PHP : imagecopy
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopymerge
Raccourcis clavier : aucun
Fonction PHP : imagecopymerge
Menu : PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopymergegray
Raccourcis clavier : aucun
Fonction PHP : imagecopymergegray
Menu : PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopyresampled
Raccourcis clavier : aucun
Fonction PHP : imagecopyresampled
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopyresized
Raccourcis clavier : aucun
Fonction PHP : imagecopyresized
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreate
Raccourcis clavier : aucun
Fonction PHP : imagecreate
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgd2
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromgd2
Menu : PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgd2part
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromgd2part
Menu : PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgd
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromgd
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgif
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromgif
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromjpeg
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromjpeg
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefrompng
Raccourcis clavier : aucun
Fonction PHP : imagecreatefrompng
Menu : PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromstring
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromstring
Menu : PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatefromwbmp
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromwbmp
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatefromxbm
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromxbm
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatefromxpm
Raccourcis clavier : aucun
Fonction PHP : imagecreatefromxpm
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatetruecolor
Raccourcis clavier : aucun
Fonction PHP : imagecreatetruecolor
Menu : PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagedashedline
Raccourcis clavier : aucun
Fonction PHP : imagedashedline
Menu : PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagedestroy
Raccourcis clavier : aucun
Fonction PHP : imagedestroy
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imageellipse
Raccourcis clavier : aucun
Fonction PHP : imageellipse
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefill
Raccourcis clavier : aucun
Fonction PHP : imagefill
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledarc
Raccourcis clavier : aucun
Fonction PHP : imagefilledarc
Menu : PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledellipse
Raccourcis clavier : aucun
Fonction PHP : imagefilledellipse
Menu : PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledpolygon
Raccourcis clavier : aucun
Fonction PHP : imagefilledpolygon
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledrectangle
Raccourcis clavier : aucun
Fonction PHP : imagefilledrectangle
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilltoborder
Raccourcis clavier : aucun
Fonction PHP : imagefilltoborder
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilter
Raccourcis clavier : aucun
Fonction PHP : imagefilter
Menu : PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefontheight
Raccourcis clavier : aucun
Fonction PHP : imagefontheight
Menu : PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefontwidth
Raccourcis clavier : aucun
Fonction PHP : imagefontwidth
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imageftbbox
Raccourcis clavier : aucun
Fonction PHP : imageftbbox
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefttext
Raccourcis clavier : aucun
Fonction PHP : imagefttext
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagegammacorrect
Raccourcis clavier : aucun
Fonction PHP : imagegammacorrect
Menu : PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagegd2
Raccourcis clavier : aucun
Fonction PHP : imagegd2
Menu : PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagegd
Raccourcis clavier : aucun
Fonction PHP : imagegd
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imagegif
Raccourcis clavier : aucun
Fonction PHP : imagegif
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imageinterlace
Raccourcis clavier : aucun
Fonction PHP : imageinterlace
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imageistruecolor
Raccourcis clavier : aucun
Fonction PHP : imageistruecolor
Menu : PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagejpeg
Raccourcis clavier : aucun
Fonction PHP : imagejpeg
Menu : PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagelayereffect
Raccourcis clavier : aucun
Fonction PHP : imagelayereffect
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imageline
Raccourcis clavier : aucun
Fonction PHP : imageline
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imageloadfont
Raccourcis clavier : aucun
Fonction PHP : imageloadfont
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepalettecopy
Raccourcis clavier : aucun
Fonction PHP : imagepalettecopy
Menu : PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepng
Raccourcis clavier : aucun
Fonction PHP : imagepng
Menu : PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagepolygon
Raccourcis clavier : aucun
Fonction PHP : imagepolygon
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imagepsbbox
Raccourcis clavier : aucun
Fonction PHP : imagepsbbox
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imagepsencodefont
Raccourcis clavier : aucun
Fonction PHP : imagepsencodefont
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepsextendfont
Raccourcis clavier : aucun
Fonction PHP : imagepsextendfont
Menu : PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepsfreefont
Raccourcis clavier : aucun
Fonction PHP : imagepsfreefont
Menu : PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagepsloadfont
Raccourcis clavier : aucun
Fonction PHP : imagepsloadfont
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imagepsslantfont
Raccourcis clavier : aucun
Fonction PHP : imagepsslantfont
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imagepstext
Raccourcis clavier : aucun
Fonction PHP : imagepstext
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagerectangle
Raccourcis clavier : aucun
Fonction PHP : imagerectangle
Menu : PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagerotate
Raccourcis clavier : aucun
Fonction PHP : imagerotate
Menu : PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesavealpha
Raccourcis clavier : aucun
Fonction PHP : imagesavealpha
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetbrush
Raccourcis clavier : aucun
Fonction PHP : imagesetbrush
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetpixel
Raccourcis clavier : aucun
Fonction PHP : imagesetpixel
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetstyle
Raccourcis clavier : aucun
Fonction PHP : imagesetstyle
Menu : PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetthickness
Raccourcis clavier : aucun
Fonction PHP : imagesetthickness
Menu : PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesettile
Raccourcis clavier : aucun
Fonction PHP : imagesettile
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> imagestring
Raccourcis clavier : aucun
Fonction PHP : imagestring
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> imagestringup
Raccourcis clavier : aucun
Fonction PHP : imagestringup
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesx
Raccourcis clavier : aucun
Fonction PHP : imagesx
Menu : PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesy
Raccourcis clavier : aucun
Fonction PHP : imagesy
Menu : PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagetruecolortopalette
Raccourcis clavier : aucun
Fonction PHP : imagetruecolortopalette
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> imagettfbbox
Raccourcis clavier : aucun
Fonction PHP : imagettfbbox
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> imagettftext
Raccourcis clavier : aucun
Fonction PHP : imagettftext
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagetypes
Raccourcis clavier : aucun
Fonction PHP : imagetypes
Menu : PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagewbmp
Raccourcis clavier : aucun
Fonction PHP : imagewbmp
Menu : PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagexbm
Raccourcis clavier : aucun
Fonction PHP : imagexbm
Menu : PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> iptcembed
Raccourcis clavier : aucun
Fonction PHP : iptcembed
Menu : PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> iptcparse
Raccourcis clavier : aucun
Fonction PHP : iptcparse
Menu : PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> jpeg2wbmp
Raccourcis clavier : aucun
Fonction PHP : jpeg2wbmp
Menu : PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> png2wbmp
Raccourcis clavier : aucun
Fonction PHP : png2wbmp
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Mail -> ezmlm_hash
Raccourcis clavier : aucun
Fonction PHP : ezmlm_hash
Menu : PHP -> Templates -> Mail -> mail
Raccourcis clavier : aucun
Fonction PHP : mail
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> abs
Raccourcis clavier : aucun
Fonction PHP : abs
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> acos
Raccourcis clavier : aucun
Fonction PHP : acos
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> acosh
Raccourcis clavier : aucun
Fonction PHP : acosh
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> asin
Raccourcis clavier : aucun
Fonction PHP : asin
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> asinh
Raccourcis clavier : aucun
Fonction PHP : asinh
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> atan2
Raccourcis clavier : aucun
Fonction PHP : atan2
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> atan
Raccourcis clavier : aucun
Fonction PHP : atan
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> atanh
Raccourcis clavier : aucun
Fonction PHP : atanh
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> base_convert
Raccourcis clavier : aucun
Fonction PHP : base_convert
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> bindec
Raccourcis clavier : aucun
Fonction PHP : bindec
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> ceil
Raccourcis clavier : aucun
Fonction PHP : ceil
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> cos
Raccourcis clavier : aucun
Fonction PHP : cos
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> cosh
Raccourcis clavier : aucun
Fonction PHP : cosh
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> decbin
Raccourcis clavier : aucun
Fonction PHP : decbin
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> dechex
Raccourcis clavier : aucun
Fonction PHP : dechex
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> decoct
Raccourcis clavier : aucun
Fonction PHP : decoct
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> deg2rad
Raccourcis clavier : aucun
Fonction PHP : deg2rad
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> exp
Raccourcis clavier : aucun
Fonction PHP : exp
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> expm1
Raccourcis clavier : aucun
Fonction PHP : expm1
Menu : PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> floor
Raccourcis clavier : aucun
Fonction PHP : floor
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> fmod
Raccourcis clavier : aucun
Fonction PHP : fmod
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> getrandmax
Raccourcis clavier : aucun
Fonction PHP : getrandmax
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> hexdec
Raccourcis clavier : aucun
Fonction PHP : hexdec
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> hypot
Raccourcis clavier : aucun
Fonction PHP : hypot
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> is_finite
Raccourcis clavier : aucun
Fonction PHP : is_finite
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> is_infinite
Raccourcis clavier : aucun
Fonction PHP : is_infinite
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> is_nan
Raccourcis clavier : aucun
Fonction PHP : is_nan
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> lcg_value
Raccourcis clavier : aucun
Fonction PHP : lcg_value
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> log10
Raccourcis clavier : aucun
Fonction PHP : log10
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> log1p
Raccourcis clavier : aucun
Fonction PHP : log1p
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> log
Raccourcis clavier : aucun
Fonction PHP : log
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> max
Raccourcis clavier : aucun
Fonction PHP : max
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> min
Raccourcis clavier : aucun
Fonction PHP : min
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> mt_getrandmax
Raccourcis clavier : aucun
Fonction PHP : mt_getrandmax
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> mt_rand
Raccourcis clavier : aucun
Fonction PHP : mt_rand
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> mt_srand
Raccourcis clavier : aucun
Fonction PHP : mt_srand
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> octdec
Raccourcis clavier : aucun
Fonction PHP : octdec
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> pi
Raccourcis clavier : aucun
Fonction PHP : pi
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> pow
Raccourcis clavier : aucun
Fonction PHP : pow
Menu : PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> rad2deg
Raccourcis clavier : aucun
Fonction PHP : rad2deg
Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> rand
Raccourcis clavier : aucun
Fonction PHP : rand
Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> round
Raccourcis clavier : aucun
Fonction PHP : round
Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> sin
Raccourcis clavier : aucun
Fonction PHP : sin
Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> sinh
Raccourcis clavier : aucun
Fonction PHP : sinh
Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> sqrt
Raccourcis clavier : aucun
Fonction PHP : sqrt
Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> srand
Raccourcis clavier : aucun
Fonction PHP : srand
Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> tan
Raccourcis clavier : aucun
Fonction PHP : tan
Menu : PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> tanh
Raccourcis clavier : aucun
Fonction PHP : tanh
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> connection_aborted
Raccourcis clavier : aucun
Fonction PHP : connection_aborted
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> connection_status
Raccourcis clavier : aucun
Fonction PHP : connection_status
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> connection_timeout
Raccourcis clavier : aucun
Fonction PHP : connection_timeout
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> constant
Raccourcis clavier : aucun
Fonction PHP : constant
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> define
Raccourcis clavier : aucun
Fonction PHP : define
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> defined
Raccourcis clavier : aucun
Fonction PHP : defined
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> die
Raccourcis clavier : aucun
Fonction PHP : die
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> eval
Raccourcis clavier : aucun
Fonction PHP : eval
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> exit
Raccourcis clavier : aucun
Fonction PHP : exit
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> get_browser
Raccourcis clavier : aucun
Fonction PHP : get_browser
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> __halt_compiler
Raccourcis clavier : aucun
Fonction PHP : __halt_compiler
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> highlight_file
Raccourcis clavier : aucun
Fonction PHP : highlight_file
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> highlight_string
Raccourcis clavier : aucun
Fonction PHP : highlight_string
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> ignore_user_abort
Raccourcis clavier : aucun
Fonction PHP : ignore_user_abort
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> pack
Raccourcis clavier : aucun
Fonction PHP : pack
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> php_check_syntax
Raccourcis clavier : aucun
Fonction PHP : php_check_syntax
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> php_strip_whitespace
Raccourcis clavier : aucun
Fonction PHP : php_strip_whitespace
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> show_source
Raccourcis clavier : aucun
Fonction PHP : show_source
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> sleep
Raccourcis clavier : aucun
Fonction PHP : sleep
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> sys_getloadavg
Raccourcis clavier : aucun
Fonction PHP : sys_getloadavg
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> time_nanosleep
Raccourcis clavier : aucun
Fonction PHP : time_nanosleep
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> time_sleep_until
Raccourcis clavier : aucun
Fonction PHP : time_sleep_until
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> uniqid
Raccourcis clavier : aucun
Fonction PHP : uniqid
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> unpack
Raccourcis clavier : aucun
Fonction PHP : unpack
Menu : PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> usleep
Raccourcis clavier : aucun
Fonction PHP : usleep
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_affected_rows
Raccourcis clavier : aucun
Fonction PHP : mysql_affected_rows
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_change_user
Raccourcis clavier : aucun
Fonction PHP : mysql_change_user
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_client_encoding
Raccourcis clavier : aucun
Fonction PHP : mysql_client_encoding
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_close
Raccourcis clavier : aucun
Fonction PHP : mysql_close
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_connect
Raccourcis clavier : aucun
Fonction PHP : mysql_connect
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_create_db
Raccourcis clavier : aucun
Fonction PHP : mysql_create_db
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_data_seek
Raccourcis clavier : aucun
Fonction PHP : mysql_data_seek
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_db_name
Raccourcis clavier : aucun
Fonction PHP : mysql_db_name
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_db_query
Raccourcis clavier : aucun
Fonction PHP : mysql_db_query
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_drop_db
Raccourcis clavier : aucun
Fonction PHP : mysql_drop_db
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_errno
Raccourcis clavier : aucun
Fonction PHP : mysql_errno
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_error
Raccourcis clavier : aucun
Fonction PHP : mysql_error
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_escape_string
Raccourcis clavier : aucun
Fonction PHP : mysql_escape_string
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_array
Raccourcis clavier : aucun
Fonction PHP : mysql_fetch_array
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_assoc
Raccourcis clavier : aucun
Fonction PHP : mysql_fetch_assoc
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_field
Raccourcis clavier : aucun
Fonction PHP : mysql_fetch_field
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_lengths
Raccourcis clavier : aucun
Fonction PHP : mysql_fetch_lengths
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_object
Raccourcis clavier : aucun
Fonction PHP : mysql_fetch_object
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_row
Raccourcis clavier : aucun
Fonction PHP : mysql_fetch_row
Menu : PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_field_flags
Raccourcis clavier : aucun
Fonction PHP : mysql_field_flags
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_len
Raccourcis clavier : aucun
Fonction PHP : mysql_field_len
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_name
Raccourcis clavier : aucun
Fonction PHP : mysql_field_name
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_seek
Raccourcis clavier : aucun
Fonction PHP : mysql_field_seek
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_table
Raccourcis clavier : aucun
Fonction PHP : mysql_field_table
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_type
Raccourcis clavier : aucun
Fonction PHP : mysql_field_type
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_free_result
Raccourcis clavier : aucun
Fonction PHP : mysql_free_result
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_client_info
Raccourcis clavier : aucun
Fonction PHP : mysql_get_client_info
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_host_info
Raccourcis clavier : aucun
Fonction PHP : mysql_get_host_info
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_proto_info
Raccourcis clavier : aucun
Fonction PHP : mysql_get_proto_info
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_server_info
Raccourcis clavier : aucun
Fonction PHP : mysql_get_server_info
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_info
Raccourcis clavier : aucun
Fonction PHP : mysql_info
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_insert_id
Raccourcis clavier : aucun
Fonction PHP : mysql_insert_id
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_dbs
Raccourcis clavier : aucun
Fonction PHP : mysql_list_dbs
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_fields
Raccourcis clavier : aucun
Fonction PHP : mysql_list_fields
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_processes
Raccourcis clavier : aucun
Fonction PHP : mysql_list_processes
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_tables
Raccourcis clavier : aucun
Fonction PHP : mysql_list_tables
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_num_fields
Raccourcis clavier : aucun
Fonction PHP : mysql_num_fields
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_num_rows
Raccourcis clavier : aucun
Fonction PHP : mysql_num_rows
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_pconnect
Raccourcis clavier : aucun
Fonction PHP : mysql_pconnect
Menu : PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_ping
Raccourcis clavier : aucun
Fonction PHP : mysql_ping
Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_query
Raccourcis clavier : aucun
Fonction PHP : mysql_query
Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_real_escape_string
Raccourcis clavier : aucun
Fonction PHP : mysql_real_escape_string
Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_result
Raccourcis clavier : aucun
Fonction PHP : mysql_result
Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_select_db
Raccourcis clavier : aucun
Fonction PHP : mysql_select_db
Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_stat
Raccourcis clavier : aucun
Fonction PHP : mysql_stat
Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_tablename
Raccourcis clavier : aucun
Fonction PHP : mysql_tablename
Menu : PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_thread_id
Raccourcis clavier : aucun
Fonction PHP : mysql_thread_id
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] | [ ? ] |
Menu : PHP -> Templates -> Others -> class
Raccourcis clavier : aucun
Fonction PHP : class
Menu : PHP -> Templates -> Others -> function
Raccourcis clavier : aucun
Fonction PHP : function
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Regular Expressions -> ereg_replace
Raccourcis clavier : aucun
Fonction PHP : ereg_replace
Menu : PHP -> Teemplates -> Regular Expressions -> ereg
Raccourcis clavier : aucun
Fonction PHP : ereg
Menu : PHP -> Teemplates -> Regular Expressions -> eregi_replace
Raccourcis clavier : aucun
Fonction PHP : eregi_replace
Menu : PHP -> Templates -> Regular Expressions -> eregi
Raccourcis clavier : aucun
Fonction PHP : eregi
Menu : PHP -> Teemplates -> Regular Expressions -> split
Raccourcis clavier : aucun
Fonction PHP : split
Menu : PHP -> Teemplates -> Regular Expressions -> spliti
Raccourcis clavier : aucun
Fonction PHP : spliti
Menu : PHP -> Templates -> Regular Expressions -> sql_regcase
Raccourcis clavier : aucun
Fonction PHP : sql_regcase
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Session -> session_cache_expire
Raccourcis clavier : aucun
Fonction PHP : session_cache_expire
Menu : PHP -> Templates -> Session -> session_cache_limiter
Raccourcis clavier : aucun
Fonction PHP : session_cache_limiter
Menu : PHP -> Templates -> Session -> session_commit
Raccourcis clavier : aucun
Fonction PHP : session_commit
Menu : PHP -> Templates -> Session -> session_decode
Raccourcis clavier : aucun
Fonction PHP : session_decode
Menu : PHP -> Templates -> Session -> session_destroy
Raccourcis clavier : aucun
Fonction PHP : session_destroy
Menu : PHP -> Templates -> Session -> session_encode
Raccourcis clavier : aucun
Fonction PHP : session_encode
Menu : PHP -> Templates -> Session -> session_get_cookie_params
Raccourcis clavier : aucun
Fonction PHP : session_get_cookie_params
Menu : PHP -> Templates -> Session -> session_id
Raccourcis clavier : aucun
Fonction PHP : session_id
Menu : PHP -> Templates -> Session -> session_is_registered
Raccourcis clavier : aucun
Fonction PHP : session_is_registered
Menu : PHP -> Templates -> Session -> session_module_name
Raccourcis clavier : aucun
Fonction PHP : session_module_name
Menu : PHP -> Templates -> Session -> session_name
Raccourcis clavier : aucun
Fonction PHP : session_name
Menu : PHP -> Templates -> Session -> session_regenerate_id
Raccourcis clavier : aucun
Fonction PHP : session_regenerate_id
Menu : PHP -> Templates -> Session -> session_register
Raccourcis clavier : aucun
Fonction PHP : session_register
Menu : PHP -> Templates -> Session -> session_save_path
Raccourcis clavier : aucun
Fonction PHP : session_save_path
Menu : PHP -> Templates -> Session -> session_set_cookie_params
Raccourcis clavier : aucun
Fonction PHP : session_set_cookie_params
Menu : PHP -> Templates -> Session -> session_set_save_handler
Raccourcis clavier : aucun
Fonction PHP : session_set_save_handler
Menu : PHP -> Templates -> Session -> session_start
Raccourcis clavier : aucun
Fonction PHP : session_start
Menu : PHP -> Templates -> Session -> session_unregister
Raccourcis clavier : aucun
Fonction PHP : session_unregister
Menu : PHP -> Templates -> Session -> session_unset
Raccourcis clavier : aucun
Fonction PHP : session_unset
Menu : PHP -> Templates -> Session -> session_write_close
Raccourcis clavier : aucun
Fonction PHP : session_write_close
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> addcslashes
Raccourcis clavier : aucun
Fonction PHP : addcslashes
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> addslashes
Raccourcis clavier : aucun
Fonction PHP : addslashes
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> bin2hex
Raccourcis clavier : aucun
Fonction PHP : bin2hex
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> chop
Raccourcis clavier : aucun
Fonction PHP : chop
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> chr
Raccourcis clavier : aucun
Fonction PHP : chr
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> chunk_split
Raccourcis clavier : aucun
Fonction PHP : chunk_split
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> convert_cyr_string
Raccourcis clavier : aucun
Fonction PHP : convert_cyr_string
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> convert_uudecode
Raccourcis clavier : aucun
Fonction PHP : convert_uudecode
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> convert_uuencode
Raccourcis clavier : aucun
Fonction PHP : convert_uuencode
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> count_chars
Raccourcis clavier : aucun
Fonction PHP : count_chars
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> crc32
Raccourcis clavier : aucun
Fonction PHP : crc32
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> crypt
Raccourcis clavier : aucun
Fonction PHP : crypt
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> echo
Raccourcis clavier : aucun
Fonction PHP : echo
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> explode
Raccourcis clavier : aucun
Fonction PHP : explode
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> fprintf
Raccourcis clavier : aucun
Fonction PHP : fprintf
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> get_html_translation_table
Raccourcis clavier : aucun
Fonction PHP : get_html_translation_table
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> hebrev
Raccourcis clavier : aucun
Fonction PHP : hebrev
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> hebrevc
Raccourcis clavier : aucun
Fonction PHP : hebrevc
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> html_entity_decode
Raccourcis clavier : aucun
Fonction PHP : html_entity_decode
Menu : PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> htmlentities
Raccourcis clavier : aucun
Fonction PHP : htmlentities
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> htmlspecialchars_decode
Raccourcis clavier : aucun
Fonction PHP : htmlspecialchars_decode
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> htmlspecialchars
Raccourcis clavier : aucun
Fonction PHP : htmlspecialchars
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> implode
Raccourcis clavier : aucun
Fonction PHP : implode
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> join
Raccourcis clavier : aucun
Fonction PHP : join
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> levenshtein
Raccourcis clavier : aucun
Fonction PHP : levenshtein
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> localeconv
Raccourcis clavier : aucun
Fonction PHP : localeconv
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> ltrim
Raccourcis clavier : aucun
Fonction PHP : ltrim
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> md5_file
Raccourcis clavier : aucun
Fonction PHP : md5_file
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> md5
Raccourcis clavier : aucun
Fonction PHP : md5
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> metaphone
Raccourcis clavier : aucun
Fonction PHP : metaphone
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> money_format
Raccourcis clavier : aucun
Fonction PHP : money_format
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> nl_langinfo
Raccourcis clavier : aucun
Fonction PHP : nl_langinfo
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> nl2br
Raccourcis clavier : aucun
Fonction PHP : nl2br
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> number_format
Raccourcis clavier : aucun
Fonction PHP : number_format
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> ord
Raccourcis clavier : aucun
Fonction PHP : ord
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> parse_str
Raccourcis clavier : aucun
Fonction PHP : parse_str
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> print
Raccourcis clavier : aucun
Fonction PHP : print
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> printf
Raccourcis clavier : aucun
Fonction PHP : printf
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> quoted_printable_decode
Raccourcis clavier : aucun
Fonction PHP : quoted_printable_decode
Menu : PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> quotemeta
Raccourcis clavier : aucun
Fonction PHP : quotemeta
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> rtrim
Raccourcis clavier : aucun
Fonction PHP : rtrim
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> setlocale
Raccourcis clavier : aucun
Fonction PHP : setlocale
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> sha1_file
Raccourcis clavier : aucun
Fonction PHP : sha1_file
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> sha1
Raccourcis clavier : aucun
Fonction PHP : sha1
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> similar_text
Raccourcis clavier : aucun
Fonction PHP : similar_text
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> soundex
Raccourcis clavier : aucun
Fonction PHP : soundex
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> sprintf
Raccourcis clavier : aucun
Fonction PHP : sprintf
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> sscanf
Raccourcis clavier : aucun
Fonction PHP : sscanf
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_ireplace
Raccourcis clavier : aucun
Fonction PHP : str_ireplace
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_pad
Raccourcis clavier : aucun
Fonction PHP : str_pad
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_repeat
Raccourcis clavier : aucun
Fonction PHP : str_repeat
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_replace
Raccourcis clavier : aucun
Fonction PHP : str_replace
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_rot13
Raccourcis clavier : aucun
Fonction PHP : str_rot13
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_shuffle
Raccourcis clavier : aucun
Fonction PHP : str_shuffle
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_split
Raccourcis clavier : aucun
Fonction PHP : str_split
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_word_count
Raccourcis clavier : aucun
Fonction PHP : str_word_count
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> strcasecmp
Raccourcis clavier : aucun
Fonction PHP : strcasecmp
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> strchr
Raccourcis clavier : aucun
Fonction PHP : strchr
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> strcmp
Raccourcis clavier : aucun
Fonction PHP : strcmp
Menu : PHP -> Templates -> String -> String (rtrim -> strcoll) -> strcoll
Raccourcis clavier : aucun
Fonction PHP : strcoll
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strcspn
Raccourcis clavier : aucun
Fonction PHP : strcspn
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strip_tags
Raccourcis clavier : aucun
Fonction PHP : strip_tags
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> stripcslashes
Raccourcis clavier : aucun
Fonction PHP : stripcslashes
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> stripos
Raccourcis clavier : aucun
Fonction PHP : stripos
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> stripslashes
Raccourcis clavier : aucun
Fonction PHP : stripslashes
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> stristr
Raccourcis clavier : aucun
Fonction PHP : stristr
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strlen
Raccourcis clavier : aucun
Fonction PHP : strlen
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strnatcasecmp
Raccourcis clavier : aucun
Fonction PHP : strnatcasecmp
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strnatcmp
Raccourcis clavier : aucun
Fonction PHP : strnatcmp
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strncasecmp
Raccourcis clavier : aucun
Fonction PHP : strncasecmp
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strncmp
Raccourcis clavier : aucun
Fonction PHP : strncmp
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strpbrk
Raccourcis clavier : aucun
Fonction PHP : strpbrk
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strpos
Raccourcis clavier : aucun
Fonction PHP : strpos
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strrchr
Raccourcis clavier : aucun
Fonction PHP : strrchr
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strrev
Raccourcis clavier : aucun
Fonction PHP : strrev
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strripos
Raccourcis clavier : aucun
Fonction PHP : strripos
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strrpos
Raccourcis clavier : aucun
Fonction PHP : strrpos
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strspn
Raccourcis clavier : aucun
Fonction PHP : strspn
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strstr
Raccourcis clavier : aucun
Fonction PHP : strstr
Menu : PHP -> Templates -> String -> String (strcspn -> strtok) -> strtok
Raccourcis clavier : aucun
Fonction PHP : strtok
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> strtolower
Raccourcis clavier : aucun
Fonction PHP : strtolower
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> strtoupper
Raccourcis clavier : aucun
Fonction PHP : strtoupper
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> strtr
Raccourcis clavier : aucun
Fonction PHP : strtr
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr_compare
Raccourcis clavier : aucun
Fonction PHP : substr_compare
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr_count
Raccourcis clavier : aucun
Fonction PHP : substr_count
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr_replace
Raccourcis clavier : aucun
Fonction PHP : substr_replace
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr
Raccourcis clavier : aucun
Fonction PHP : substr
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> trim
Raccourcis clavier : aucun
Fonction PHP : trim
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> ucfirst
Raccourcis clavier : aucun
Fonction PHP : ucfirst
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> ucwords
Raccourcis clavier : aucun
Fonction PHP : ucwords
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> vfprintf
Raccourcis clavier : aucun
Fonction PHP : vfprintf
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> vprintf
Raccourcis clavier : aucun
Fonction PHP : vprintf
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> vsprintf
Raccourcis clavier : aucun
Fonction PHP : vsprintf
Menu : PHP -> Templates -> String -> String (strtolower -> wordwrap) -> wordwrap
Raccourcis clavier : aucun
Fonction PHP : wordwrap
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> Variable -> debug_zval_dump
Raccourcis clavier : aucun
Fonction PHP : debug_zval_dump
Menu : PHP -> Templates -> Variable -> doubleval
Raccourcis clavier : aucun
Fonction PHP : doubleval
Menu : PHP -> Templates -> Variable -> empty
Raccourcis clavier : aucun
Fonction PHP : empty
Menu : PHP -> Templates -> Variable -> floatval
Raccourcis clavier : aucun
Fonction PHP : floatval
Menu : PHP -> Templates -> Variable -> get_defined_vars
Raccourcis clavier : aucun
Fonction PHP : get_defined_vars
Menu : PHP -> Templates -> Variable -> get_resource_type
Raccourcis clavier : aucun
Fonction PHP : get_resource_type
Menu : PHP -> Templates -> Variable -> gettype
Raccourcis clavier : aucun
Fonction PHP : gettype
Menu : PHP -> Templates -> Variable -> import_request_variables
Raccourcis clavier : aucun
Fonction PHP : import_request_variables
Menu : PHP -> Templates -> Variable -> intval
Raccourcis clavier : aucun
Fonction PHP : intval
Menu : PHP -> Templates -> Variable -> is_array
Raccourcis clavier : aucun
Fonction PHP : is_array
Menu : PHP -> Templates -> Variable -> is_bool
Raccourcis clavier : aucun
Fonction PHP : is_bool
Menu : PHP -> Templates -> Variable -> is_callable
Raccourcis clavier : aucun
Fonction PHP : is_callable
Menu : PHP -> Templates -> Variable -> is_double
Raccourcis clavier : aucun
Fonction PHP : is_double
Menu : PHP -> Templates -> Variable -> is_float
Raccourcis clavier : aucun
Fonction PHP : is_float
Menu : PHP -> Templates -> Variable -> is_int
Raccourcis clavier : aucun
Fonction PHP : is_int
Menu : PHP -> Templates -> Variable -> is_integer
Raccourcis clavier : aucun
Fonction PHP : is_integer
Menu : PHP -> Templates -> Variable -> is_long
Raccourcis clavier : aucun
Fonction PHP : is_long
Menu : PHP -> Templates -> Variable -> is_null
Raccourcis clavier : aucun
Fonction PHP : is_null
Menu : PHP -> Templates -> Variable -> is_numeric
Raccourcis clavier : aucun
Fonction PHP : is_numeric
Menu : PHP -> Templates -> Variable -> is_object
Raccourcis clavier : aucun
Fonction PHP : is_object
Menu : PHP -> Templates -> Variable -> is_real
Raccourcis clavier : aucun
Fonction PHP : is_real
Menu : PHP -> Templates -> Variable -> is_resource
Raccourcis clavier : aucun
Fonction PHP : is_resource
Menu : PHP -> Templates -> Variable -> is_scalar
Raccourcis clavier : aucun
Fonction PHP : is_scalar
Menu : PHP -> Templates -> Variable -> is_string
Raccourcis clavier : aucun
Fonction PHP : is_string
Menu : PHP -> Templates -> Variable -> isset
Raccourcis clavier : aucun
Fonction PHP : isset
Menu : PHP -> Templates -> Variable -> print_r
Raccourcis clavier : aucun
Fonction PHP : print_r
Menu : PHP -> Templates -> Variable -> serialize
Raccourcis clavier : aucun
Fonction PHP : serialize
Menu : PHP -> Templates -> Variable -> settype
Raccourcis clavier : aucun
Fonction PHP : settype
Menu : PHP -> Templates -> Variable -> strval
Raccourcis clavier : aucun
Fonction PHP : strval
Menu : PHP -> Templates -> Variable -> unserialize
Raccourcis clavier : aucun
Fonction PHP : unserialize
Menu : PHP -> Templates -> Variable -> unset
Raccourcis clavier : aucun
Fonction PHP : unset
Menu : PHP -> Templates -> Variable -> var_dump
Raccourcis clavier : aucun
Fonction PHP : var_dump
Menu : PHP -> Templates -> Variable -> var_export
Raccourcis clavier : aucun
Fonction PHP : var_export
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> utf8_decode
Raccourcis clavier : aucun
Fonction PHP : utf8_decode
Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> utf8_encode
Raccourcis clavier : aucun
Fonction PHP : utf8_encode
Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_error_string
Raccourcis clavier : aucun
Fonction PHP : xml_error_string
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
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
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
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
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
Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parse
Raccourcis clavier : aucun
Fonction PHP : xml_parse
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
Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_create
Raccourcis clavier : aucun
Fonction PHP : xml_parser_create
Menu : PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_free
Raccourcis clavier : aucun
Fonction PHP : xml_parser_free
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
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
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
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
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
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
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
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
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
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
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
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] | [ ? ] |
Menu : PHP -> Templates -> Insert Header
Raccourci clavier : aucun
Description : Cette fonction est utilisée pour insérer une en-tête dans le buffer.
Menu : PHP -> Templates -> Insert Footer
Raccourci clavier : aucun
Description : Cette fonction est utilisée pour insérer un pied de page dans le buffer.
Menu : PHP -> Templates -> Insert Date
Raccourci clavier : aucun
Description : Cette fonction est utilisée pour insérer la date dans le buffer.
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] | [ ? ] |
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Aller à: | .
A B C D E F I M P R S T V X |
---|
Aller à: | .
A B C D E F I M P R S T V X |
---|
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Aller à: | P |
---|
Aller à: | P |
---|
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Aller à: | I P |
---|
Aller à: | I P |
---|
[ < ] | [ > ] | [ << ] | [Plus haut] | [ >> ] | [Top] | [Table des matières] | [Index] | [ ? ] |
Aller à: | (
)
*
;
}
E S |
---|
Entrée d'index | Section | |
---|---|---|
| ||
( | ||
( | 7.2 Fonctions | |
| ||
) | ||
) | 7.2 Fonctions | |
| ||
* | ||
* | 7.2 Fonctions | |
| ||
; | ||
; | 7.2 Fonctions | |
| ||
} | ||
} | 7.2 Fonctions | |
| ||
E | ||
ENTER | 7.2 Fonctions | |
| ||
S | ||
SPACE | 7.2 Fonctions | |
|
Aller à: | (
)
*
;
}
E S |
---|
[Top] | [Table des matières] | [Index] | [ ? ] |
[Top] | [Table des matières] | [Index] | [ ? ] |
[Top] | [Table des matières] | [Index] | [ ? ] |
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.