[Top] | [Contents] | [Index] | [ ? ] |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Inspired from PHP-Mode and from VHDL-Mode, this new PHP Mode combines the advantages of the two modes to simplify the writing of PHP code: highlight, indentation, completion, templates, navigation into the file (functions and class), navigation into source files...
Features (new features in bold) :
This manual describes PHP Mode version 0.0.3.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
2.1 Requirements | ||
2.2 Download | ||
2.3 Installation | ||
2.4 Invoke PHP-Mode | ||
Installation | ||
---|---|---|
2.3.1 Installation | ||
2.3.2 Update |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
PHP Mode is a XEmacs major mode that needs the following software/packages:
Before continuing, you must be sure to have all this packages installed.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Two internet address to download PHP Mode :
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
2.3.1 Installation | ||
2.3.2 Update |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
To install PHP Mode you need to choose an installation directory (for example `/usr/local/share/lisp' or `c:\lisp'). The administrator must have the write rights on this directory.
With your favorite unzip software, unzip the archive in the installation directory.
Example:
cd /usr/local/share/lisp tar zxvf php-mode-0.0.3.tar.gz |
Now you have a `php' directory in the installation directory. This directory contains 2 files `php-mode.el' and `php-mode.elc' and another directory `docs' containing the documentation.
You need to configure XEmacs. open you initialization file `init.el' (open the file or start XEmacs then choose the Options menu and Edit Init File). Add the following lines (the installation directory in this example is `/usr/local/share/lisp') :
(setq load-path (append (list "/usr/local/share/lisp/") load-path)) (autoload 'php-mode "php-mode" "PHP mode" t) |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The update is easy. You need to unzip the archive in the installation directory to remove the old release.
Example:
cd /usr/local/share/lisp rm -rf php tar zxvf php-mode-0.0.3.tar.gz |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
You have two possibilities to invoke the PHP Mode.
M-x php-mode
(setq auto-mode-alist (append '(("\\.php$" . php-mode) ("\\.php5$" . php-mode)) auto-mode-alist)) |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This chapter describes the differents parameters and functions that you can change to customize PHP Mode. To do that, open a PHP file, click on the PHP menu and choose Options then Browse Options....
3.1 Parameters | ||
3.2 Functions | ||
Paramètres | ||
---|---|---|
3.1.1 Mode | ||
3.1.2 Menu | ||
3.1.3 Templates | ||
3.1.4 Style | ||
3.1.5 PHPDocumentor | ||
3.1.6 Miscellaneous | ||
Fonctions | ||
3.2.1 Mode |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
3.1.1 Mode | ||
3.1.2 Menu | ||
3.1.3 Templates | ||
3.1.4 Style | ||
3.1.5 PHPDocumentor | ||
3.1.6 Miscellaneous |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
PHP Mode has 3 modes allowing to simplify the writing of PHP code. You can enable/disable each mode individually.
Type: boolean
Default value: `t'
Description: If `t'; enable automatic generation of template.
If `nil'; template generators can still be invoked through key bindings and
menu. Is indicated in the modeline by "/e" after the mode name and can be
toggled by `php-electric-mode'.
Type: boolean
Default value: `t'
Description: If `t'; enable the stuttering. Is indicated in
the modeline by "/s" after the mode name and can be toggled by `php-stutter-mode'.
Type: boolean
Default value: `nil'
Description: If `t'; indentation is made with tabs.
If `nil'; indentation is made with spaces.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
PHP Mode has also 2 menus tha you can enable/disable. The menus Index and Sources are specific to each PHP files opened.
Type: boolean
Default value: `t'
Description: If `t'; the Index menu is enabled. It shows
the list of class and functions of the opened file. The Index menu scans the file when it is
opened.
Type: boolean
Default value: `t'
Description: If `t'; the Index menu is updated
when a function or a class is added or removed.
Type: boolean
Default value: `t'
Description: If `t'; the Sources menu is enabled. This
menu contains the list of PHP file located in the current directory. The Sources menu scans
the directory when a file is opened.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type: boolean
Default value: `t'
Description: If `t'; the include et require
functions are used with parenthesis (example : require( 'required_file.php' );
).
If `nil'; the include and require functions are used without parenthesis
(example : include_once 'required_file.php';
)
Type: boolean
Default value: `t'
Description: If `t'; the fclose function is added
when the template of the fopen function is executed.
Type: boolean
Default value: `t'
Description: If `t'; the mysql_close
function is added when the template of mysql_connect function is executed.
3.1.3.1 Header |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type: string
Default value: `"
/**
* <description string>
*
*
* Created: <date>
* Last update: <date>
*
* @link <link string>
* @copyright <copyright>
* @author <author>
* @package <package string>
* @version <version string>
*/
<cursor>"'
Description: String or file to insert as file header. If the string specifies an existing file name the contents
of the file is inserted; otherwise the string itself is inserted as file header.
Type `C-j' for newlines.
The follonwing keywords are supported:
<filename>: replaced by
the file name.
<author>: replaced by the user name and email address.
<login>:
replaced by `user-login-name'.
<company>: replaced by `php-company-name' content.
<date>:
replaced by the current date.
<year>: replaced by the current year.
<copyright>: replaced by
`php-copyright-string' content.
<cursor>: final cursor position.
Type: string
Default value: `""'
Description: String or file to insert as file footer.
See `php-file-header'
Type: string
Default value: `""'
Description: Name of the company to insert in file header.
Type: string
Default value: `""'
Description: Coryright string to insert in file header.
Type: string
Default value: `"%Y-%m-%d"'
Description: Date format.
Type: string
Default value: `" * Last update: "'
Description: Prefix string of
modification date in PHP file header.
Type: bool
Default value: `t'
Description: If `t'; update the modification date
when the buffer is saved.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type: integer
Default value: `4'
Description: Amount of basic offset used for indentation.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type: bool
Default value: `t'
Description: If `t'; PHP-Documentor tags are
added into the class and functions comments.
Type: list (string)
Default value: `'("package")'
Description: List of PHP-Documentor tags to add
into the class comments.
Type: list (string)
Default value: `'()'
Description: List of PHP-Documentor tags to add
into the functions comments.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type: bool
Default value: `t'
Description: If `t'; TAB does indentation; completion and
insert tabulations. If `nil'; TAB does only indentation.
Type: bool
Default value: `t'
Description: If `t'; enable completion in the
minibuffer.
Type: bool
Default value: `nil'
Description: If `t'; completion is case
sensitive.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
3.2.1 Mode |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Options -> Mode -> Electric Mode
Keybinding: C-c C-m C-e
Description: This functions is used to enable/disable the electric mode.
Menu: PHP -> Options -> Mode -> Stutter Mode
Keybinding: C-c C-m C-s
Description: This function is used to enable/disable the stutter mode.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
There are 3 menus: PHP, Index and Sources. All theses menus can be accessed from the menubar or from the right click. This chapter describes each menus.
4.1 PHP | ||
4.2 Index | ||
4.3 Sources |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
This is the main menu of PHP Mode. It allows an easy access to the main features of the PHP Mode: Templates (see Templates), Indentation (see Indentation) and Options (see Customization).
This menu contains also 3 functions that are discussed in the next part.
4.1.1 Functions |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Show Messages
Keybinding: C-c M-m
Description: This function opens the *Messages* buffer to display previous error messages.
Menu: PHP -> PHP Mode Documentation
Keybinding: C-c C-h
Description: This function opens the *Help* buffer and prints in it the PHP Mode documentation.
Menu: PHP -> Version
Keybinding: C-c C-v
Description: This function displays in the minibuffer the current PHP Mode version with the timestamp.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The Index menu allows you to navigate into the current buffer to find functions and classes. This menu is built during the buffer openning and you need to refresh it if you add or remove functions or classes. There is one Index menu per buffer.
4.2.1 Customization |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type: boolean
Default value: `t'
Description: If `t'; the Index menu is enabled. It shows
the list of class and functions of the opened file. The Index menu scans the file when it is
opened.
Type: boolean
Default value: `t'
Description: If `t'; the Index menu is updated
when a function or a class is added or removed.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The Sources menu shows the PHP files in the current directory. If you add or delete a file in the current directory, you need to refresh the menu.
4.3.1 Customization | ||
4.3.2 Functions |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type: boolean
Default value: `t'
Description: If `t'; the Sources menu is enabled. This
menu contains the list of PHP file located in the current directory. The Sources menu scans
the directory when a file is opened.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: Sources -> *Rescan*
Keybinding: C-c C-s C-u
Description: This function is used to refresh the Sources menu.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Completion allows you to write PHP code by reducing errors in function names or variable names. It also suggests PHP function names.
To use completion, write the first letters and use TAB to complete the word until you find the perfect completion. For example, in a blank PHP buffer, type "mysql_" and complete the function name with TAB: all mysql_* functions are proposed.
Completion can occurs with the supported PHP functions, the PHP code written in the current buffer and the PHP code written in all other files that are opened in the current XEmacs window.
Completion is customizable.
5.1 Customization |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type: bool
Default value: `t'
Description: If `t'; TAB does indentation; completion and
insert tabulations. If `nil'; TAB does only indentation.
Type: bool
Default value: `t'
Description: If `t'; enable completion in the
minibuffer.
Type: bool
Default value: `nil'
Description: If `t'; completion is case
sensitive.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Indentation can be done with spaces or TAB characters. A new line is automtically indented. Tou can manually indent or remove indentation by placing the cursor at the beginning of the first word and by using the TAB key.
6.1 Customization | ||
6.2 Functions |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type: boolean
Default value: `nil'
Description: If `t'; indentation is made with tabs.
If `nil'; indentation is made with spaces.
Type: integer
Default value: `4'
Description: Amount of basic offset used for indentation.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Indent -> Line
Keybinding: C-c C-i C-l
Description: This function is used to indent the current line (the line where the cursor is).
Menu: PHP -> Indent -> Region
Keybinding: M-C-, This function is used to indent the selected region in the current buffer.
Description:
Menu: PHP -> Indent -> Buffer
Keybinding: C-c C-i C-b
Description: This function is used to indent the buffer.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The stutter mode is a mode that affects a function to a key. For example, when you use the ENTER key, the associated function will create a new line and indent it.
7.1 Customization | ||
7.2 Functions |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type: boolean
Default value: `t'
Description: If `t'; enable the stuttering. Is indicated in
the modeline by "/s" after the mode name and can be toggled by `php-stutter-mode'.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
If in comment, indent the comment and add new line if necessary. In other case, add a space.
Insert a new line and indent it.
Insert a new line and indent it.
Insert a new line and indent it.
If the previous character is a `/', a prompt will ask you for inserting a
`/* */' comment type (with the SPACE key) or
`/**
*
*/' coment type (with the * key).
If the previous character is a `(', the `((' will be replaced by `['.
If the previous character is a `[', the `[(' will be replaced by `{'.
In other case, insert a `('.
If the previous character is a `)', the `))' will be replaced by `]'.
If the previous character is a `]', the `])' will be replaced by `}'.
In other case, insert a `)'.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
In the PHP Mode, the PHP functions (like if, while, for, fopen, fclose) are predefined in functions called "Templates".
Each template can be invoked by the function name or by using the SPACE key after the PHP function name in the buffer (Note, using M-SPACE disable the template).
A template can be aborted by using the C-g or by lefting empty the tempate prompt (in the minibuffer).
8.1 Customization | ||
8.2 Functions |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Type: boolean
Default value: `t'
Description: If `t'; enable automatic generation of template.
If `nil'; template generators can still be invoked through key bindings and
menu. Is indicated in the modeline by "/e" after the mode name and can be
toggled by `php-electric-mode'.
For a complete description of the template customizable variables, see Templates
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> .NET -> dotnet_load
Keybinding: none
PHP Function: dotnet_load
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Apache -> apache_child_terminate
Keybinding: none
PHP Function: apache_child_terminate
Menu: PHP -> Templates -> Apache -> apache_get_modules
Keybinding: none
PHP Function: apache_get_modules
Menu: PHP -> Templates -> Apache -> apache_get_version
Keybinding: none
PHP Function: apache_get_version
Menu: PHP -> Templates -> Apache -> apache_getenv
Keybinding: none
PHP Function: apache_getenv
Menu: PHP -> Templates -> Apache -> apache_lookup_uri
Keybinding: none
PHP Function: apache_lookup_uri
Menu: PHP -> Templates -> Apache -> apache_note
Keybinding: none
PHP Function: apache_note
Menu: PHP -> Templates -> Apache -> apache_request_headers
Keybinding: none
PHP Function: apache_request_headers
Menu: PHP -> Templates -> Apache -> apache_reset_timeout
Keybinding: none
PHP Function: apache_reset_timeout
Menu: PHP -> Templates -> Apache -> apache_response_headers
Keybinding: none
PHP Function: apache_response_headers
Menu: PHP -> Templates -> Apache -> apache_setenv
Keybinding: none
PHP Function: apache_setenv
Menu: PHP -> Templates -> Apache -> ascii2ebcdic
Keybinding: none
PHP Function: ascii2ebcdic
Menu: PHP -> Templates -> Apache -> ebcdic2ascii
Keybinding: none
PHP Function: ebcdic2ascii
Menu: PHP -> Templates -> Apache -> getallheaders
Keybinding: none
PHP Function: getallheaders
Menu: PHP -> Templates -> Apache -> virtual
Keybinding: none
PHP Function: virtual
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_change_key_case
Keybinding: none
PHP Function: array_change_key_case
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_chunk
Keybinding: none
PHP Function: array_chunk
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_combine
Keybinding: none
PHP Function: array_combine
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_count_values
Keybinding: none
PHP Function: array_count_values
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_assoc
Keybinding: none
PHP Function: array_diff_assoc
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_key
Keybinding: none
PHP Function: array_diff_key
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_uassoc
Keybinding: none
PHP Function: array_diff_uassoc
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_ukey
Keybinding: none
PHP Function: array_diff_ukey
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff
Keybinding: none
PHP Function: array_diff
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_fill
Keybinding: none
PHP Function: array_fill
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_filter
Keybinding: none
PHP Function: array_filter
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_flip
Keybinding: none
PHP Function: array_flip
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_assoc
Keybinding: none
PHP Function: array_intersect_assoc
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_key
Keybinding: none
PHP Function: array_intersect_key
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_uassoc
Keybinding: none
PHP Function: array_intersect_uassoc
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_ukey
Keybinding: none
PHP Function: array_intersect_ukey
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect
Keybinding: none
PHP Function: array_intersect
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_key_exists
Keybinding: none
PHP Function: array_key_exists
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_keys
Keybinding: none
PHP Function: array_keys
Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_map
Keybinding: none
PHP Function: array_map
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_merge_recursive
Keybinding: none
PHP Function: array_merge_recursive
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_merge
Keybinding: none
PHP Function: array_merge
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_multisort
Keybinding: none
PHP Function: array_multisort
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_pad
Keybinding: none
PHP Function: array_pad
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_pop
Keybinding: none
PHP Function: array_pop
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_product
Keybinding: none
PHP Function: array_product
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_push
Keybinding: none
PHP Function: array_push
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_rand
Keybinding: none
PHP Function: array_rand
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_reduce
Keybinding: none
PHP Function: array_reduce
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_reverse
Keybinding: none
PHP Function: array_reverse
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_search
Keybinding: none
PHP Function: array_search
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_shift
Keybinding: none
PHP Function: array_shift
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_slice
Keybinding: none
PHP Function: array_slice
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_splice
Keybinding: none
PHP Function: array_splice
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_sum
Keybinding: none
PHP Function: array_sum
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_udiff_assoc
Keybinding: none
PHP Function: array_udiff_assoc
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_udiff_uassoc
Keybinding: none
PHP Function: array_udiff_uassoc
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_udiff
Keybinding: none
PHP Function: array_udiff
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_uintersect_assoc
Keybinding: none
PHP Function: array_uintersect_assoc
Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_assoc) -> array_uintersect_uassoc
Keybinding: none
PHP Function: array_uintersect_uassoc
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_uintersect
Keybinding: none
PHP Function: array_uintersect
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_unique
Keybinding: none
PHP Function: array_unique
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_unshift
Keybinding: none
PHP Function: array_unshift
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_values
Keybinding: none
PHP Function: array_values
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_walk_recursive
Keybinding: none
PHP Function: array_walk_recursive
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_walk
Keybinding: none
PHP Function: array_walk
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array
Keybinding: none
PHP Function: array
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> arsort
Keybinding: none
PHP Function: arsort
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> asort
Keybinding: none
PHP Function: asort
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> compact
Keybinding: none
PHP Function: compact
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> count
Keybinding: none
PHP Function: count
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> current
Keybinding: none
PHP Function: current
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> each
Keybinding: none
PHP Function: each
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> end
Keybinding: none
PHP Function: end
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> extract
Keybinding: none
PHP Function: extract
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> in_array
Keybinding: none
PHP Function: in_array
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> key
Keybinding: none
PHP Function: key
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> krsort
Keybinding: none
PHP Function: krsort
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> ksort
Keybinding: none
PHP Function: ksort
Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> list
Keybinding: none
PHP Function: list
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> natcasesort
Keybinding: none
PHP Function: natcasesort
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> natsort
Keybinding: none
PHP Function: natsort
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> next
Keybinding: none
PHP Function: next
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> pos
Keybinding: none
PHP Function: pos
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> prev
Keybinding: none
PHP Function: prev
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> range
Keybinding: none
PHP Function: range
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> reset
Keybinding: none
PHP Function: reset
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> rsort
Keybinding: none
PHP Function: rsort
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> shuffle
Keybinding: none
PHP Function: shuffle
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> sizeof
Keybinding: none
PHP Function: sizeof
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> sort
Keybinding: none
PHP Function: sort
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> uasort
Keybinding: none
PHP Function: uasort
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> uksort
Keybinding: none
PHP Function: uksort
Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> usort
Keybinding: none
PHP Function: usort
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Control Structures -> break
Keybinding: none
PHP Function: break
Menu: PHP -> Templates -> Control Structures -> continue
Keybinding: none
PHP Function: continue
Menu: PHP -> Templates -> Control Structures -> do-while
Keybinding: none
PHP Function: do-while
Menu: PHP -> Templates -> Control Structures -> else
Keybinding: none
PHP Function: else
Menu: PHP -> Templates -> Control Structures -> elseif
Keybinding: none
PHP Function: elseif
Menu: PHP -> Templates -> Control Structures -> for
Keybinding: none
PHP Function: for
Menu: PHP -> Templates -> Control Structures -> foreach
Keybinding: none
PHP Function: foreach
Menu: PHP -> Templates -> Control Structures -> if
Keybinding: none
PHP Function: if
Menu: PHP -> Templates -> Control Structures -> include
Keybinding: none
PHP Function: include
Menu: PHP -> Templates -> Control Structures -> include_once
Keybinding: none
PHP Function: include_once
Menu: PHP -> Templates -> Control Structures -> require
Keybinding: none
PHP Function: require
Menu: PHP -> Templates -> Control Structures -> require_once
Keybinding: none
PHP Function: require_once
Menu: PHP -> Templates -> Control Structures -> return
Keybinding: none
PHP Function: return
Menu: PHP -> Templates -> Control Structures -> switch
Keybinding: none
PHP Function: switch
Menu: PHP -> Templates -> Control Structures -> while
Keybinding: none
PHP Function: while
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Date/Time Functions -> checkdate
Keybinding: none
PHP Function: checkdate
Menu: PHP -> Templates -> Date/Time Functions -> date_default_timezone_get
Keybinding: none
PHP Function: date_default_timezone_get
Menu: PHP -> Templates -> Date/Time Functions -> date_default_timezone_set
Keybinding: none
PHP Function: date_default_timezone_set
Menu: PHP -> Templates -> Date/Time Functions -> date_sunrise
Keybinding: none
PHP Function: date_sunrise
Menu: PHP -> Templates -> Date/Time Functions -> date_sunset
Keybinding: none
PHP Function: date_sunset
Menu: PHP -> Templates -> Date/Time Functions -> date
Keybinding: none
PHP Function: date
Menu: PHP -> Templates -> Date/Time Functions -> getdate
Keybinding: none
PHP Function: getdate
Menu: PHP -> Templates -> Date/Time Functions -> gettimeofday
Keybinding: none
PHP Function: gettimeofday
Menu: PHP -> Templates -> Date/Time Functions -> gmdate
Keybinding: none
PHP Function: gmdate
Menu: PHP -> Templates -> Date/Time Functions -> gmmktime
Keybinding: none
PHP Function: gmmktime
Menu: PHP -> Templates -> Date/Time Functions -> gmstrftime
Keybinding: none
PHP Function: gmstrftime
Menu: PHP -> Templates -> Date/Time Functions -> idate
Keybinding: none
PHP Function: idate
Menu: PHP -> Templates -> Date/Time Functions -> localtime
Keybinding: none
PHP Function: localtime
Menu: PHP -> Templates -> Date/Time Functions -> microtime
Keybinding: none
PHP Function: microtime
Menu: PHP -> Templates -> Date/Time Functions -> mktime
Keybinding: none
PHP Function: mktime
Menu: PHP -> Templates -> Date/Time Functions -> strftime
Keybinding: none
PHP Function: strftime
Menu: PHP -> Templates -> Date/Time Functions -> strptime
Keybinding: none
PHP Function: strptime
Menu: PHP -> Templates -> Date/Time Functions -> strtotime
Keybinding: none
PHP Function: strtotime
Menu: PHP -> Templates -> Date/Time Functions -> time
Keybinding: none
PHP Function: time
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Directory Functions -> chdir
Keybinding: none
PHP Function: chdir
Menu: PHP -> Templates -> Directory Functions -> chroot
Keybinding: none
PHP Function: chroot
Menu: PHP -> Templates -> Directory Functions -> dir
Keybinding: none
PHP Function: dir
Menu: PHP -> Templates -> Directory Functions -> closedir
Keybinding: none
PHP Function: closedir
Menu: PHP -> Templates -> Directory Functions -> getcwd
Keybinding: none
PHP Function: getcwd
Menu: PHP -> Templates -> Directory Functions -> opendir
Keybinding: none
PHP Function: opendir
Menu: PHP -> Templates -> Directory Functions -> readdir
Keybinding: none
PHP Function: readdir
Menu: PHP -> Templates -> Directory Functions -> rewinddir
Keybinding: none
PHP Function: rewinddir
Menu: PHP -> Templates -> Directory Functions -> scandir
Keybinding: none
PHP Function: scandir
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Error and Logging -> debug_backtrace
Keybinding: none
PHP Function: debug_backtrace
Menu: PHP -> Templates -> Error and Logging -> debug_print_backtrace
Keybinding: none
PHP Function: debug_print_backtrace
Menu: PHP -> Templates -> Error and Logging -> error_log
Keybinding: none
PHP Function: error_log
Menu: PHP -> Templates -> Error and Logging -> error_reporting
Keybinding: none
PHP Function: error_reporting
Menu: PHP -> Templates -> Error and Logging -> restore_error_handler
Keybinding: none
PHP Function: restore_error_handler
Menu: PHP -> Templates -> Error and Logging -> restore_exception_handler
Keybinding: none
PHP Function: restore_exception_handler
Menu: PHP -> Templates -> Error and Logging -> set_error_handler
Keybinding: none
PHP Function: set_error_handler
Menu: PHP -> Templates -> Error and Logging -> set_exception_handler
Keybinding: none
PHP Function: set_exception_handler
Menu: PHP -> Templates -> Error and Logging -> trigger_error
Keybinding: none
PHP Function: trigger_error
Menu: PHP -> Templates -> Error and Logging -> user_error
Keybinding: none
PHP Function: user_error
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> basename
Keybinding: none
PHP Function: basename
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> chgrp
Keybinding: none
PHP Function: chgrp
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> chmod
Keybinding: none
PHP Function: chmod
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> chown
Keybinding: none
PHP Function: chown
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> clearstatcache
Keybinding: none
PHP Function: clearstatcache
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> copy
Keybinding: none
PHP Function: copy
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> delete
Keybinding: none
PHP Function: delete
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> dirname
Keybinding: none
PHP Function: dirname
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> disk_free_space
Keybinding: none
PHP Function: disk_free_space
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> disk_total_space
Keybinding: none
PHP Function: disk_total_space
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> diskfreespace
Keybinding: none
PHP Function: diskfreespace
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fclose
Keybinding: none
PHP Function: fclose
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> feof
Keybinding: none
PHP Function: feof
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fflush
Keybinding: none
PHP Function: fflush
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgetc
Keybinding: none
PHP Function: fgetc
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgetcsv
Keybinding: none
PHP Function: fgetcsv
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgets
Keybinding: none
PHP Function: fgets
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgetss
Keybinding: none
PHP Function: fgetss
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> file_exists
Keybinding: none
PHP Function: file_exists
Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> file_get_contents
Keybinding: none
PHP Function: file_get_contents
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> file_put_contents
Keybinding: none
PHP Function: file_put_contents
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> file
Keybinding: none
PHP Function: file
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileatime
Keybinding: none
PHP Function: fileatime
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filectime
Keybinding: none
PHP Function: filectime
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filegroup
Keybinding: none
PHP Function: filegroup
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileinode
Keybinding: none
PHP Function: fileinode
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filemtime
Keybinding: none
PHP Function: filemtime
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileowner
Keybinding: none
PHP Function: fileowner
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileperms
Keybinding: none
PHP Function: fileperms
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filesize
Keybinding: none
PHP Function: filesize
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filetype
Keybinding: none
PHP Function: filetype
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> flock
Keybinding: none
PHP Function: flock
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fnmatch
Keybinding: none
PHP Function: fnmatch
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fopen
Keybinding: none
PHP Function: fopen
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fpassthru
Keybinding: none
PHP Function: fpassthru
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fputcsv
Keybinding: none
PHP Function: fputcsv
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fputs
Keybinding: none
PHP Function: fputs
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fread
Keybinding: none
PHP Function: fread
Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fseek
Keybinding: none
PHP Function: fseek
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> fstat
Keybinding: none
PHP Function: fstat
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> ftell
Keybinding: none
PHP Function: ftell
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> ftruncate
Keybinding: none
PHP Function: ftruncate
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> fwrite
Keybinding: none
PHP Function: fwrite
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> glob
Keybinding: none
PHP Function: glob
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_dir
Keybinding: none
PHP Function: is_dir
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_executable
Keybinding: none
PHP Function: is_executable
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_file
Keybinding: none
PHP Function: is_file
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_link
Keybinding: none
PHP Function: is_link
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_readable
Keybinding: none
PHP Function: is_readable
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_uploaded_file
Keybinding: none
PHP Function: is_uploaded_file
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_writable
Keybinding: none
PHP Function: is_writable
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_writeable
Keybinding: none
PHP Function: is_writeable
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> link
Keybinding: none
PHP Function: link
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> linkinfo
Keybinding: none
PHP Function: linkinfo
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> lstat
Keybinding: none
PHP Function: lstat
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> mkdir
Keybinding: none
PHP Function: mkdir
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> move_uploaded_file
Keybinding: none
PHP Function: move_uploaded_file
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> parse_ini_file
Keybinding: none
PHP Function: parse_ini_file
Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> pathinfo
Keybinding: none
PHP Function: pathinfo
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> pclose
Keybinding: none
PHP Function: pclose
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> popen
Keybinding: none
PHP Function: popen
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> readfile
Keybinding: none
PHP Function: readfile
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> readlink
Keybinding: none
PHP Function: readlink
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> realpath
Keybinding: none
PHP Function: realpath
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> rename
Keybinding: none
PHP Function: rename
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> rewind
Keybinding: none
PHP Function: rewind
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> rmdir
Keybinding: none
PHP Function: rmdir
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> stat
Keybinding: none
PHP Function: stat
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> symlink
Keybinding: none
PHP Function: symlink
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> tempnam
Keybinding: none
PHP Function: tempnam
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> tmpfile
Keybinding: none
PHP Function: tmpfile
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> touch
Keybinding: none
PHP Function: touch
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> umask
Keybinding: none
PHP Function: umask
Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> unlink
Keybinding: none
PHP Function: unlink
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Functions -> call_user_func_array
Keybinding: none
PHP Function: call_user_func_array
Menu: PHP -> Templates -> Functions -> call_user_func
Keybinding: none
PHP Function: call_user_func
Menu: PHP -> Templates -> Functions -> create_function
Keybinding: none
PHP Function: create_function
Menu: PHP -> Templates -> Functions -> func_get_arg
Keybinding: none
PHP Function: func_get_arg
Menu: PHP -> Templates -> Functions -> func_get_args
Keybinding: none
PHP Function: func_get_args
Menu: PHP -> Templates -> Functions -> func_num_args
Keybinding: none
PHP Function: func_num_args
Menu: PHP -> Templates -> Functions -> function_exists
Keybinding: none
PHP Function: function_exists
Menu: PHP -> Templates -> Functions -> get_defined_functions
Keybinding: none
PHP Function: get_defined_functions
Menu: PHP -> Templates -> Functions -> register_shutdown_function
Keybinding: none
PHP Function: register_shutdown_function
Menu: PHP -> Templates -> Functions -> register_tick_function
Keybinding: none
PHP Function: register_tick_function
Menu: PHP -> Templates -> Functions -> unregister_tick_function
Keybinding: none
PHP Function: unregister_tick_function
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> gd_info
Keybinding: none
PHP Function: gd_info
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> getimagesize
Keybinding: none
PHP Function: getimagesize
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> image_type_to_extension
Keybinding: none
PHP Function: image_type_to_extension
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> image_type_to_mime_type
Keybinding: none
PHP Function: image_type_to_mime_type
Menu: PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> image2wbmp
Keybinding: none
PHP Function: image2wbmp
Menu: PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> imagealphablending
Keybinding: none
PHP Function: imagealphablending
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> imageantialias
Keybinding: none
PHP Function: imageantialias
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> imagearc
Keybinding: none
PHP Function: imagearc
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagechar
Keybinding: none
PHP Function: imagechar
Menu: PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecharup
Keybinding: none
PHP Function: imagecharup
Menu: PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorallocate
Keybinding: none
PHP Function: imagecolorallocate
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorallocatealpha
Keybinding: none
PHP Function: imagecolorallocatealpha
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorat
Keybinding: none
PHP Function: imagecolorat
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorclosest
Keybinding: none
PHP Function: imagecolorclosest
Menu: PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorclosestalpha
Keybinding: none
PHP Function: imagecolorclosestalpha
Menu: PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorclosesthwb
Keybinding: none
PHP Function: imagecolorclosesthwb
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> imagecolordeallocate
Keybinding: none
PHP Function: imagecolordeallocate
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorexact
Keybinding: none
PHP Function: imagecolorexact
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorexactalpha
Keybinding: none
PHP Function: imagecolorexactalpha
Menu: PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolormatch
Keybinding: none
PHP Function: imagecolormatch
Menu: PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorresolve
Keybinding: none
PHP Function: imagecolorresolve
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorresolvealpha
Keybinding: none
PHP Function: imagecolorresolvealpha
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorset
Keybinding: none
PHP Function: imagecolorset
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorsforindex
Keybinding: none
PHP Function: imagecolorsforindex
Menu: PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorstotal
Keybinding: none
PHP Function: imagecolorstotal
Menu: PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolortransparent
Keybinding: none
PHP Function: imagecolortransparent
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imageconvolution
Keybinding: none
PHP Function: imageconvolution
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopy
Keybinding: none
PHP Function: imagecopy
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopymerge
Keybinding: none
PHP Function: imagecopymerge
Menu: PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopymergegray
Keybinding: none
PHP Function: imagecopymergegray
Menu: PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopyresampled
Keybinding: none
PHP Function: imagecopyresampled
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopyresized
Keybinding: none
PHP Function: imagecopyresized
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreate
Keybinding: none
PHP Function: imagecreate
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgd2
Keybinding: none
PHP Function: imagecreatefromgd2
Menu: PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgd2part
Keybinding: none
PHP Function: imagecreatefromgd2part
Menu: PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgd
Keybinding: none
PHP Function: imagecreatefromgd
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgif
Keybinding: none
PHP Function: imagecreatefromgif
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromjpeg
Keybinding: none
PHP Function: imagecreatefromjpeg
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefrompng
Keybinding: none
PHP Function: imagecreatefrompng
Menu: PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromstring
Keybinding: none
PHP Function: imagecreatefromstring
Menu: PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatefromwbmp
Keybinding: none
PHP Function: imagecreatefromwbmp
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatefromxbm
Keybinding: none
PHP Function: imagecreatefromxbm
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatefromxpm
Keybinding: none
PHP Function: imagecreatefromxpm
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatetruecolor
Keybinding: none
PHP Function: imagecreatetruecolor
Menu: PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagedashedline
Keybinding: none
PHP Function: imagedashedline
Menu: PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagedestroy
Keybinding: none
PHP Function: imagedestroy
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imageellipse
Keybinding: none
PHP Function: imageellipse
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefill
Keybinding: none
PHP Function: imagefill
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledarc
Keybinding: none
PHP Function: imagefilledarc
Menu: PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledellipse
Keybinding: none
PHP Function: imagefilledellipse
Menu: PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledpolygon
Keybinding: none
PHP Function: imagefilledpolygon
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledrectangle
Keybinding: none
PHP Function: imagefilledrectangle
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilltoborder
Keybinding: none
PHP Function: imagefilltoborder
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilter
Keybinding: none
PHP Function: imagefilter
Menu: PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefontheight
Keybinding: none
PHP Function: imagefontheight
Menu: PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefontwidth
Keybinding: none
PHP Function: imagefontwidth
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imageftbbox
Keybinding: none
PHP Function: imageftbbox
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefttext
Keybinding: none
PHP Function: imagefttext
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagegammacorrect
Keybinding: none
PHP Function: imagegammacorrect
Menu: PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagegd2
Keybinding: none
PHP Function: imagegd2
Menu: PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagegd
Keybinding: none
PHP Function: imagegd
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imagegif
Keybinding: none
PHP Function: imagegif
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imageinterlace
Keybinding: none
PHP Function: imageinterlace
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imageistruecolor
Keybinding: none
PHP Function: imageistruecolor
Menu: PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagejpeg
Keybinding: none
PHP Function: imagejpeg
Menu: PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagelayereffect
Keybinding: none
PHP Function: imagelayereffect
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imageline
Keybinding: none
PHP Function: imageline
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imageloadfont
Keybinding: none
PHP Function: imageloadfont
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepalettecopy
Keybinding: none
PHP Function: imagepalettecopy
Menu: PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepng
Keybinding: none
PHP Function: imagepng
Menu: PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagepolygon
Keybinding: none
PHP Function: imagepolygon
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imagepsbbox
Keybinding: none
PHP Function: imagepsbbox
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imagepsencodefont
Keybinding: none
PHP Function: imagepsencodefont
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepsextendfont
Keybinding: none
PHP Function: imagepsextendfont
Menu: PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepsfreefont
Keybinding: none
PHP Function: imagepsfreefont
Menu: PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagepsloadfont
Keybinding: none
PHP Function: imagepsloadfont
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imagepsslantfont
Keybinding: none
PHP Function: imagepsslantfont
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imagepstext
Keybinding: none
PHP Function: imagepstext
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagerectangle
Keybinding: none
PHP Function: imagerectangle
Menu: PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagerotate
Keybinding: none
PHP Function: imagerotate
Menu: PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesavealpha
Keybinding: none
PHP Function: imagesavealpha
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetbrush
Keybinding: none
PHP Function: imagesetbrush
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetpixel
Keybinding: none
PHP Function: imagesetpixel
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetstyle
Keybinding: none
PHP Function: imagesetstyle
Menu: PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetthickness
Keybinding: none
PHP Function: imagesetthickness
Menu: PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesettile
Keybinding: none
PHP Function: imagesettile
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> imagestring
Keybinding: none
PHP Function: imagestring
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> imagestringup
Keybinding: none
PHP Function: imagestringup
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesx
Keybinding: none
PHP Function: imagesx
Menu: PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesy
Keybinding: none
PHP Function: imagesy
Menu: PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagetruecolortopalette
Keybinding: none
PHP Function: imagetruecolortopalette
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> imagettfbbox
Keybinding: none
PHP Function: imagettfbbox
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> imagettftext
Keybinding: none
PHP Function: imagettftext
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagetypes
Keybinding: none
PHP Function: imagetypes
Menu: PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagewbmp
Keybinding: none
PHP Function: imagewbmp
Menu: PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagexbm
Keybinding: none
PHP Function: imagexbm
Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> iptcembed
Keybinding: none
PHP Function: iptcembed
Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> iptcparse
Keybinding: none
PHP Function: iptcparse
Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> jpeg2wbmp
Keybinding: none
PHP Function: jpeg2wbmp
Menu: PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> png2wbmp
Keybinding: none
PHP Function: png2wbmp
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Mail -> ezmlm_hash
Keybinding: none
PHP Function: ezmlm_hash
Menu: PHP -> Templates -> Mail -> mail
Keybinding: none
PHP Function: mail
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> abs
Keybinding: none
PHP Function: abs
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> acos
Keybinding: none
PHP Function: acos
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> acosh
Keybinding: none
PHP Function: acosh
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> asin
Keybinding: none
PHP Function: asin
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> asinh
Keybinding: none
PHP Function: asinh
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> atan2
Keybinding: none
PHP Function: atan2
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> atan
Keybinding: none
PHP Function: atan
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> atanh
Keybinding: none
PHP Function: atanh
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> base_convert
Keybinding: none
PHP Function: base_convert
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> bindec
Keybinding: none
PHP Function: bindec
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> ceil
Keybinding: none
PHP Function: ceil
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> cos
Keybinding: none
PHP Function: cos
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> cosh
Keybinding: none
PHP Function: cosh
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> decbin
Keybinding: none
PHP Function: decbin
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> dechex
Keybinding: none
PHP Function: dechex
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> decoct
Keybinding: none
PHP Function: decoct
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> deg2rad
Keybinding: none
PHP Function: deg2rad
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> exp
Keybinding: none
PHP Function: exp
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> expm1
Keybinding: none
PHP Function: expm1
Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> floor
Keybinding: none
PHP Function: floor
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> fmod
Keybinding: none
PHP Function: fmod
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> getrandmax
Keybinding: none
PHP Function: getrandmax
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> hexdec
Keybinding: none
PHP Function: hexdec
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> hypot
Keybinding: none
PHP Function: hypot
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> is_finite
Keybinding: none
PHP Function: is_finite
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> is_infinite
Keybinding: none
PHP Function: is_infinite
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> is_nan
Keybinding: none
PHP Function: is_nan
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> lcg_value
Keybinding: none
PHP Function: lcg_value
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> log10
Keybinding: none
PHP Function: log10
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> log1p
Keybinding: none
PHP Function: log1p
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> log
Keybinding: none
PHP Function: log
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> max
Keybinding: none
PHP Function: max
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> min
Keybinding: none
PHP Function: min
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> mt_getrandmax
Keybinding: none
PHP Function: mt_getrandmax
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> mt_rand
Keybinding: none
PHP Function: mt_rand
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> mt_srand
Keybinding: none
PHP Function: mt_srand
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> octdec
Keybinding: none
PHP Function: octdec
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> pi
Keybinding: none
PHP Function: pi
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> pow
Keybinding: none
PHP Function: pow
Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> rad2deg
Keybinding: none
PHP Function: rad2deg
Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> rand
Keybinding: none
PHP Function: rand
Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> round
Keybinding: none
PHP Function: round
Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> sin
Keybinding: none
PHP Function: sin
Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> sinh
Keybinding: none
PHP Function: sinh
Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> sqrt
Keybinding: none
PHP Function: sqrt
Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> srand
Keybinding: none
PHP Function: srand
Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> tan
Keybinding: none
PHP Function: tan
Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> tanh
Keybinding: none
PHP Function: tanh
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> connection_aborted
Keybinding: none
PHP Function: connection_aborted
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> connection_status
Keybinding: none
PHP Function: connection_status
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> connection_timeout
Keybinding: none
PHP Function: connection_timeout
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> constant
Keybinding: none
PHP Function: constant
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> define
Keybinding: none
PHP Function: define
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> defined
Keybinding: none
PHP Function: defined
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> die
Keybinding: none
PHP Function: die
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> eval
Keybinding: none
PHP Function: eval
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> exit
Keybinding: none
PHP Function: exit
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> get_browser
Keybinding: none
PHP Function: get_browser
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> __halt_compiler
Keybinding: none
PHP Function: __halt_compiler
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> highlight_file
Keybinding: none
PHP Function: highlight_file
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> highlight_string
Keybinding: none
PHP Function: highlight_string
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> ignore_user_abort
Keybinding: none
PHP Function: ignore_user_abort
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> pack
Keybinding: none
PHP Function: pack
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> php_check_syntax
Keybinding: none
PHP Function: php_check_syntax
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> php_strip_whitespace
Keybinding: none
PHP Function: php_strip_whitespace
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> show_source
Keybinding: none
PHP Function: show_source
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> sleep
Keybinding: none
PHP Function: sleep
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> sys_getloadavg
Keybinding: none
PHP Function: sys_getloadavg
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> time_nanosleep
Keybinding: none
PHP Function: time_nanosleep
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> time_sleep_until
Keybinding: none
PHP Function: time_sleep_until
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> uniqid
Keybinding: none
PHP Function: uniqid
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> unpack
Keybinding: none
PHP Function: unpack
Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> usleep
Keybinding: none
PHP Function: usleep
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_affected_rows
Keybinding: none
PHP Function: mysql_affected_rows
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_change_user
Keybinding: none
PHP Function: mysql_change_user
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_client_encoding
Keybinding: none
PHP Function: mysql_client_encoding
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_close
Keybinding: none
PHP Function: mysql_close
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_connect
Keybinding: none
PHP Function: mysql_connect
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_create_db
Keybinding: none
PHP Function: mysql_create_db
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_data_seek
Keybinding: none
PHP Function: mysql_data_seek
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_db_name
Keybinding: none
PHP Function: mysql_db_name
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_db_query
Keybinding: none
PHP Function: mysql_db_query
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_drop_db
Keybinding: none
PHP Function: mysql_drop_db
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_errno
Keybinding: none
PHP Function: mysql_errno
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_error
Keybinding: none
PHP Function: mysql_error
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_escape_string
Keybinding: none
PHP Function: mysql_escape_string
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_array
Keybinding: none
PHP Function: mysql_fetch_array
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_assoc
Keybinding: none
PHP Function: mysql_fetch_assoc
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_field
Keybinding: none
PHP Function: mysql_fetch_field
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_lengths
Keybinding: none
PHP Function: mysql_fetch_lengths
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_object
Keybinding: none
PHP Function: mysql_fetch_object
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_row
Keybinding: none
PHP Function: mysql_fetch_row
Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_field_flags
Keybinding: none
PHP Function: mysql_field_flags
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_len
Keybinding: none
PHP Function: mysql_field_len
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_name
Keybinding: none
PHP Function: mysql_field_name
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_seek
Keybinding: none
PHP Function: mysql_field_seek
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_table
Keybinding: none
PHP Function: mysql_field_table
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_type
Keybinding: none
PHP Function: mysql_field_type
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_free_result
Keybinding: none
PHP Function: mysql_free_result
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_client_info
Keybinding: none
PHP Function: mysql_get_client_info
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_host_info
Keybinding: none
PHP Function: mysql_get_host_info
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_proto_info
Keybinding: none
PHP Function: mysql_get_proto_info
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_server_info
Keybinding: none
PHP Function: mysql_get_server_info
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_info
Keybinding: none
PHP Function: mysql_info
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_insert_id
Keybinding: none
PHP Function: mysql_insert_id
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_dbs
Keybinding: none
PHP Function: mysql_list_dbs
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_fields
Keybinding: none
PHP Function: mysql_list_fields
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_processes
Keybinding: none
PHP Function: mysql_list_processes
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_tables
Keybinding: none
PHP Function: mysql_list_tables
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_num_fields
Keybinding: none
PHP Function: mysql_num_fields
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_num_rows
Keybinding: none
PHP Function: mysql_num_rows
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_pconnect
Keybinding: none
PHP Function: mysql_pconnect
Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_ping
Keybinding: none
PHP Function: mysql_ping
Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_query
Keybinding: none
PHP Function: mysql_query
Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_real_escape_string
Keybinding: none
PHP Function: mysql_real_escape_string
Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_result
Keybinding: none
PHP Function: mysql_result
Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_select_db
Keybinding: none
PHP Function: mysql_select_db
Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_stat
Keybinding: none
PHP Function: mysql_stat
Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_tablename
Keybinding: none
PHP Function: mysql_tablename
Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_thread_id
Keybinding: none
PHP Function: mysql_thread_id
Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_unbuffered_query
Keybinding: none
PHP Function: mysql_unbuffered_query
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Others -> class
Keybinding: none
PHP Function: class
Menu: PHP -> Templates -> Others -> function
Keybinding: none
PHP Function: function
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Regular Expressions -> ereg_replace
Keybinding: none
PHP Function: ereg_replace
Menu: PHP -> Teemplates -> Regular Expressions -> ereg
Keybinding: none
PHP Function: ereg
Menu: PHP -> Teemplates -> Regular Expressions -> eregi_replace
Keybinding: none
PHP Function: eregi_replace
Menu: PHP -> Templates -> Regular Expressions -> eregi
Keybinding: none
PHP Function: eregi
Menu: PHP -> Teemplates -> Regular Expressions -> split
Keybinding: none
PHP Function: split
Menu: PHP -> Teemplates -> Regular Expressions -> spliti
Keybinding: none
PHP Function: spliti
Menu: PHP -> Templates -> Regular Expressions -> sql_regcase
Keybinding: none
PHP Function: sql_regcase
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Session -> session_cache_expire
Keybinding: none
PHP Function: session_cache_expire
Menu: PHP -> Templates -> Session -> session_cache_limiter
Keybinding: none
PHP Function: session_cache_limiter
Menu: PHP -> Templates -> Session -> session_commit
Keybinding: none
PHP Function: session_commit
Menu: PHP -> Templates -> Session -> session_decode
Keybinding: none
PHP Function: session_decode
Menu: PHP -> Templates -> Session -> session_destroy
Keybinding: none
PHP Function: session_destroy
Menu: PHP -> Templates -> Session -> session_encode
Keybinding: none
PHP Function: session_encode
Menu: PHP -> Templates -> Session -> session_get_cookie_params
Keybinding: none
PHP Function: session_get_cookie_params
Menu: PHP -> Templates -> Session -> session_id
Keybinding: none
PHP Function: session_id
Menu: PHP -> Templates -> Session -> session_is_registered
Keybinding: none
PHP Function: session_is_registered
Menu: PHP -> Templates -> Session -> session_module_name
Keybinding: none
PHP Function: session_module_name
Menu: PHP -> Templates -> Session -> session_name
Keybinding: none
PHP Function: session_name
Menu: PHP -> Templates -> Session -> session_regenerate_id
Keybinding: none
PHP Function: session_regenerate_id
Menu: PHP -> Templates -> Session -> session_register
Keybinding: none
PHP Function: session_register
Menu: PHP -> Templates -> Session -> session_save_path
Keybinding: none
PHP Function: session_save_path
Menu: PHP -> Templates -> Session -> session_set_cookie_params
Keybinding: none
PHP Function: session_set_cookie_params
Menu: PHP -> Templates -> Session -> session_set_save_handler
Keybinding: none
PHP Function: session_set_save_handler
Menu: PHP -> Templates -> Session -> session_start
Keybinding: none
PHP Function: session_start
Menu: PHP -> Templates -> Session -> session_unregister
Keybinding: none
PHP Function: session_unregister
Menu: PHP -> Templates -> Session -> session_unset
Keybinding: none
PHP Function: session_unset
Menu: PHP -> Templates -> Session -> session_write_close
Keybinding: none
PHP Function: session_write_close
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> addcslashes
Keybinding: none
PHP Function: addcslashes
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> addslashes
Keybinding: none
PHP Function: addslashes
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> bin2hex
Keybinding: none
PHP Function: bin2hex
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> chop
Keybinding: none
PHP Function: chop
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> chr
Keybinding: none
PHP Function: chr
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> chunk_split
Keybinding: none
PHP Function: chunk_split
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> convert_cyr_string
Keybinding: none
PHP Function: convert_cyr_string
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> convert_uudecode
Keybinding: none
PHP Function: convert_uudecode
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> convert_uuencode
Keybinding: none
PHP Function: convert_uuencode
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> count_chars
Keybinding: none
PHP Function: count_chars
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> crc32
Keybinding: none
PHP Function: crc32
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> crypt
Keybinding: none
PHP Function: crypt
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> echo
Keybinding: none
PHP Function: echo
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> explode
Keybinding: none
PHP Function: explode
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> fprintf
Keybinding: none
PHP Function: fprintf
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> get_html_translation_table
Keybinding: none
PHP Function: get_html_translation_table
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> hebrev
Keybinding: none
PHP Function: hebrev
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> hebrevc
Keybinding: none
PHP Function: hebrevc
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> html_entity_decode
Keybinding: none
PHP Function: html_entity_decode
Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> htmlentities
Keybinding: none
PHP Function: htmlentities
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> htmlspecialchars_decode
Keybinding: none
PHP Function: htmlspecialchars_decode
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> htmlspecialchars
Keybinding: none
PHP Function: htmlspecialchars
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> implode
Keybinding: none
PHP Function: implode
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> join
Keybinding: none
PHP Function: join
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> levenshtein
Keybinding: none
PHP Function: levenshtein
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> localeconv
Keybinding: none
PHP Function: localeconv
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> ltrim
Keybinding: none
PHP Function: ltrim
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> md5_file
Keybinding: none
PHP Function: md5_file
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> md5
Keybinding: none
PHP Function: md5
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> metaphone
Keybinding: none
PHP Function: metaphone
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> money_format
Keybinding: none
PHP Function: money_format
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> nl_langinfo
Keybinding: none
PHP Function: nl_langinfo
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> nl2br
Keybinding: none
PHP Function: nl2br
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> number_format
Keybinding: none
PHP Function: number_format
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> ord
Keybinding: none
PHP Function: ord
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> parse_str
Keybinding: none
PHP Function: parse_str
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> print
Keybinding: none
PHP Function: print
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> printf
Keybinding: none
PHP Function: printf
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> quoted_printable_decode
Keybinding: none
PHP Function: quoted_printable_decode
Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> quotemeta
Keybinding: none
PHP Function: quotemeta
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> rtrim
Keybinding: none
PHP Function: rtrim
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> setlocale
Keybinding: none
PHP Function: setlocale
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> sha1_file
Keybinding: none
PHP Function: sha1_file
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> sha1
Keybinding: none
PHP Function: sha1
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> similar_text
Keybinding: none
PHP Function: similar_text
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> soundex
Keybinding: none
PHP Function: soundex
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> sprintf
Keybinding: none
PHP Function: sprintf
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> sscanf
Keybinding: none
PHP Function: sscanf
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_ireplace
Keybinding: none
PHP Function: str_ireplace
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_pad
Keybinding: none
PHP Function: str_pad
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_repeat
Keybinding: none
PHP Function: str_repeat
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_replace
Keybinding: none
PHP Function: str_replace
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_rot13
Keybinding: none
PHP Function: str_rot13
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_shuffle
Keybinding: none
PHP Function: str_shuffle
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_split
Keybinding: none
PHP Function: str_split
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_word_count
Keybinding: none
PHP Function: str_word_count
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> strcasecmp
Keybinding: none
PHP Function: strcasecmp
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> strchr
Keybinding: none
PHP Function: strchr
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> strcmp
Keybinding: none
PHP Function: strcmp
Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> strcoll
Keybinding: none
PHP Function: strcoll
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strcspn
Keybinding: none
PHP Function: strcspn
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strip_tags
Keybinding: none
PHP Function: strip_tags
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> stripcslashes
Keybinding: none
PHP Function: stripcslashes
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> stripos
Keybinding: none
PHP Function: stripos
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> stripslashes
Keybinding: none
PHP Function: stripslashes
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> stristr
Keybinding: none
PHP Function: stristr
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strlen
Keybinding: none
PHP Function: strlen
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strnatcasecmp
Keybinding: none
PHP Function: strnatcasecmp
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strnatcmp
Keybinding: none
PHP Function: strnatcmp
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strncasecmp
Keybinding: none
PHP Function: strncasecmp
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strncmp
Keybinding: none
PHP Function: strncmp
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strpbrk
Keybinding: none
PHP Function: strpbrk
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strpos
Keybinding: none
PHP Function: strpos
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strrchr
Keybinding: none
PHP Function: strrchr
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strrev
Keybinding: none
PHP Function: strrev
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strripos
Keybinding: none
PHP Function: strripos
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strrpos
Keybinding: none
PHP Function: strrpos
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strspn
Keybinding: none
PHP Function: strspn
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strstr
Keybinding: none
PHP Function: strstr
Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strtok
Keybinding: none
PHP Function: strtok
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> strtolower
Keybinding: none
PHP Function: strtolower
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> strtoupper
Keybinding: none
PHP Function: strtoupper
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> strtr
Keybinding: none
PHP Function: strtr
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr_compare
Keybinding: none
PHP Function: substr_compare
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr_count
Keybinding: none
PHP Function: substr_count
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr_replace
Keybinding: none
PHP Function: substr_replace
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr
Keybinding: none
PHP Function: substr
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> trim
Keybinding: none
PHP Function: trim
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> ucfirst
Keybinding: none
PHP Function: ucfirst
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> ucwords
Keybinding: none
PHP Function: ucwords
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> vfprintf
Keybinding: none
PHP Function: vfprintf
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> vprintf
Keybinding: none
PHP Function: vprintf
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> vsprintf
Keybinding: none
PHP Function: vsprintf
Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> wordwrap
Keybinding: none
PHP Function: wordwrap
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Variable -> debug_zval_dump
Keybinding: none
PHP Function: debug_zval_dump
Menu: PHP -> Templates -> Variable -> doubleval
Keybinding: none
PHP Function: doubleval
Menu: PHP -> Templates -> Variable -> empty
Keybinding: none
PHP Function: empty
Menu: PHP -> Templates -> Variable -> floatval
Keybinding: none
PHP Function: floatval
Menu: PHP -> Templates -> Variable -> get_defined_vars
Keybinding: none
PHP Function: get_defined_vars
Menu: PHP -> Templates -> Variable -> get_resource_type
Keybinding: none
PHP Function: get_resource_type
Menu: PHP -> Templates -> Variable -> gettype
Keybinding: none
PHP Function: gettype
Menu: PHP -> Templates -> Variable -> import_request_variables
Keybinding: none
PHP Function: import_request_variables
Menu: PHP -> Templates -> Variable -> intval
Keybinding: none
PHP Function: intval
Menu: PHP -> Templates -> Variable -> is_array
Keybinding: none
PHP Function: is_array
Menu: PHP -> Templates -> Variable -> is_bool
Keybinding: none
PHP Function: is_bool
Menu: PHP -> Templates -> Variable -> is_callable
Keybinding: none
PHP Function: is_callable
Menu: PHP -> Templates -> Variable -> is_double
Keybinding: none
PHP Function: is_double
Menu: PHP -> Templates -> Variable -> is_float
Keybinding: none
PHP Function: is_float
Menu: PHP -> Templates -> Variable -> is_int
Keybinding: none
PHP Function: is_int
Menu: PHP -> Templates -> Variable -> is_integer
Keybinding: none
PHP Function: is_integer
Menu: PHP -> Templates -> Variable -> is_long
Keybinding: none
PHP Function: is_long
Menu: PHP -> Templates -> Variable -> is_null
Keybinding: none
PHP Function: is_null
Menu: PHP -> Templates -> Variable -> is_numeric
Keybinding: none
PHP Function: is_numeric
Menu: PHP -> Templates -> Variable -> is_object
Keybinding: none
PHP Function: is_object
Menu: PHP -> Templates -> Variable -> is_real
Keybinding: none
PHP Function: is_real
Menu: PHP -> Templates -> Variable -> is_resource
Keybinding: none
PHP Function: is_resource
Menu: PHP -> Templates -> Variable -> is_scalar
Keybinding: none
PHP Function: is_scalar
Menu: PHP -> Templates -> Variable -> is_string
Keybinding: none
PHP Function: is_string
Menu: PHP -> Templates -> Variable -> isset
Keybinding: none
PHP Function: isset
Menu: PHP -> Templates -> Variable -> print_r
Keybinding: none
PHP Function: print_r
Menu: PHP -> Templates -> Variable -> serialize
Keybinding: none
PHP Function: serialize
Menu: PHP -> Templates -> Variable -> settype
Keybinding: none
PHP Function: settype
Menu: PHP -> Templates -> Variable -> strval
Keybinding: none
PHP Function: strval
Menu: PHP -> Templates -> Variable -> unserialize
Keybinding: none
PHP Function: unserialize
Menu: PHP -> Templates -> Variable -> unset
Keybinding: none
PHP Function: unset
Menu: PHP -> Templates -> Variable -> var_dump
Keybinding: none
PHP Function: var_dump
Menu: PHP -> Templates -> Variable -> var_export
Keybinding: none
PHP Function: var_export
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> utf8_decode
Keybinding: none
PHP Function: utf8_decode
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> utf8_encode
Keybinding: none
PHP Function: utf8_encode
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_error_string
Keybinding: none
PHP Function: xml_error_string
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_get_current_byte_index
Keybinding: none
PHP Function: xml_get_current_byte_index
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_get_current_column_number
Keybinding: none
PHP Function: xml_get_current_column_number
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_get_current_line_number
Keybinding: none
PHP Function: xml_get_current_line_number
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_get_error_code
Keybinding: none
PHP Function: xml_get_error_code
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parse_into_struct
Keybinding: none
PHP Function: xml_parse_into_struct
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parse
Keybinding: none
PHP Function: xml_parse
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_create_ns
Keybinding: none
PHP Function: xml_parser_create_ns
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_create
Keybinding: none
PHP Function: xml_parser_create
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_free
Keybinding: none
PHP Function: xml_parser_free
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_get_option
Keybinding: none
PHP Function: xml_parser_get_option
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_set_option
Keybinding: none
PHP Function: xml_parser_set_option
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_character_data_handler
Keybinding: none
PHP Function: xml_set_character_data_handler
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_default_handler
Keybinding: none
PHP Function: xml_set_default_handler
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_element_handler
Keybinding: none
PHP Function: xml_set_element_handler
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_end_namespace_decl_handler
Keybinding: none
PHP Function: xml_set_end_namespace_decl_handler
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_external_entity_ref_handler
Keybinding: none
PHP Function: xml_set_external_entity_ref_handler
Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_notation_decl_handler
Keybinding: none
PHP Function: xml_set_notation_decl_handler
Menu: PHP -> Templates -> XML -> XML (xml_set_object -> xml_set_unparsed_entity_decl_handler) -> xml_set_object
Keybinding: none
PHP Function: xml_set_object
Menu: PHP -> Templates -> XML -> XML (xml_set_object -> xml_set_unparsed_entity_decl_handler) -> xml_set_processing_instruction_handler
Keybinding: none
PHP Function: 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
Keybinding: none
PHP Function: 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
Keybinding: none
PHP Function: xml_set_unparsed_entity_decl_handler
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Menu: PHP -> Templates -> Insert Header
Keybinding: none
Description: This function is used to insert a header in the current buffer.
Menu: PHP -> Templates -> Insert Footer
Keybinding: none
Description: This function is used to insert a footer in the current buffer.
Menu: PHP -> Templates -> Insert Date
Keybinding: none
Description: This function is used to insert the date in the current buffer.
Menu: PHP -> Templates -> Modify Date
Keybinding: none
Description: This function is used to modify the last modification date in the current buffer.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Jump to: | .
A B C D E F H I M N O P R S T V X |
---|
Jump to: | .
A B C D E F H I M N O P R S T V X |
---|
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Jump to: | P |
---|
Jump to: | P |
---|
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Jump to: | I P |
---|
Jump to: | I P |
---|
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Jump to: | (
)
*
;
}
E S |
---|
Index Entry | Section | |
---|---|---|
| ||
( | ||
( | 7.2 Functions | |
| ||
) | ||
) | 7.2 Functions | |
| ||
* | ||
* | 7.2 Functions | |
| ||
; | ||
; | 7.2 Functions | |
| ||
} | ||
} | 7.2 Functions | |
| ||
E | ||
ENTER | 7.2 Functions | |
| ||
S | ||
SPACE | 7.2 Functions | |
|
Jump to: | (
)
*
;
}
E S |
---|
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Jump to: | _
A B C D E F G H I J K L M N O P Q R S T U V W X |
---|
Jump to: | _
A B C D E F G H I J K L M N O P Q R S T U V W X |
---|
[Top] | [Contents] | [Index] | [ ? ] |
[Top] | [Contents] | [Index] | [ ? ] |
[Top] | [Contents] | [Index] | [ ? ] |
This document was generated by Vincent DEBOUT on September, 24 2006 using texi2html 1.76.
The buttons in the navigation panels have the following meaning:
Button | Name | Go to | From 1.2.3 go to |
---|---|---|---|
[ < ] | Back | previous section in reading order | 1.2.2 |
[ > ] | Forward | next section in reading order | 1.2.4 |
[ << ] | FastBack | beginning of this chapter or previous chapter | 1 |
[ Up ] | Up | up section | 1.2 |
[ >> ] | FastForward | next chapter | 2 |
[Top] | Top | cover (top) of document | |
[Contents] | Contents | table of contents | |
[Index] | Index | index | |
[ ? ] | About | about (help) |
where the Example assumes that the current position is at Subsubsection One-Two-Three of a document of the following structure:
This document was generated by Vincent DEBOUT on September, 24 2006 using texi2html 1.76.