PHP-Mode
Manual

[Top] [Contents] [Index] [ ? ]

PHP Mode Manual


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

1. Introduction

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) :

  • Completion
  • Customizable
  • Highlight
  • Indentation
  • Menu
  • Stuttering
  • Templates
    • - .NET
    • - Apache
    • - Array
    • - Control Structures ("declare" function excepted)
    • - Date/Time
    • - Directory
    • - Email
    • - Error and Logging
    • - Filesystem ("fscanf" and "set_file_buffer" functions excepted)
    • - Functions
    • - Image
    • - Mathematical
    • - Miscellaneous
    • - MySQL
    • - Regular expressions
    • - Sessions
    • - Strings
    • - Variables
    • - XML


This manual describes PHP Mode version 0.0.3.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2. Installation


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.1 Requirements

PHP Mode is a XEmacs major mode that needs the following software/packages:

  • XEmacs.
  • `font-lock' mode generaly installed with XEmacs.
  • `assoc' mode generaly installed with XEmacs.
  • `easymenu' mode generaly installed with XEmacs.
  • `hippie-exp' mode generaly installed with XEmacs.

Before continuing, you must be sure to have all this packages installed.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.2 Download

Two internet address to download PHP Mode :

  • Principal: PHP-Mode 0.0.3 (http://deboutv.free.fr/lisp/php/)
  • Secondary: PHP-Mode 0.0.3 (http://www.morinie.fr/lisp/php/)
  • Old releases: PHP-Mode (http://deboutv.free.fr/lisp/php/)

[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.3 Installation


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

2.3.1 Installation

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] [ ? ]

2.3.2 Update

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] [ ? ]

2.4 Invoke PHP-Mode

You have two possibilities to invoke the PHP Mode.

  • - Manually: At each file opening you need to launch PHP Mode with the following command:

    M-x php-mode

  • - Automatically: Add the following linesin your initialization file `init.el' :
     
    (setq auto-mode-alist
          (append
           '(("\\.php$" . php-mode)
             ("\\.php5$" . php-mode))
    	 auto-mode-alist))
    

[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3. Customization

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....


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1 Parameters


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1.1 Mode

PHP Mode has 3 modes allowing to simplify the writing of PHP code. You can enable/disable each mode individually.

`php-electric-mode'

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'.

`php-stutter-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'.

`php-indent-tabs-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] [ ? ]

3.1.2 Menu

PHP Mode has also 2 menus tha you can enable/disable. The menus Index and Sources are specific to each PHP files opened.

`php-index-menu'

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.

`php-index-menu-auto-rescan'

Type: boolean
Default value: `t'
Description: If `t'; the Index menu is updated when a function or a class is added or removed.

`php-source-file-menu'

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] [ ? ]

3.1.3 Templates

`php-include-in-parenthesis'

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';)

`php-add-fclose-with-fopen'

Type: boolean
Default value: `t'
Description: If `t'; the fclose function is added when the template of the fopen function is executed.

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

Type: boolean
Default value: `t'
Description: If `t'; the mysql_close function is added when the template of mysql_connect function is executed.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1.3.1 Header

`php-file-header'

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.

`php-file-footer'

Type: string
Default value: `""'
Description: String or file to insert as file footer. See `php-file-header'

`php-company-name'

Type: string
Default value: `""'
Description: Name of the company to insert in file header.

`php-copyright-string'

Type: string
Default value: `""'
Description: Coryright string to insert in file header.

`php-date-format'

Type: string
Default value: `"%Y-%m-%d"'
Description: Date format.

`php-modify-date-prefix-string'

Type: string
Default value: `" * Last update: "'
Description: Prefix string of modification date in PHP file header.

`php-modify-date-on-saving'

Type: bool
Default value: `t'
Description: If `t'; update the modification date when the buffer is saved.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1.4 Style

`php-basic-offset'

Type: integer
Default value: `4'
Description: Amount of basic offset used for indentation.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1.5 PHPDocumentor

`php-enable-phpdocumentor-tags'

Type: bool
Default value: `t'
Description: If `t'; PHP-Documentor tags are added into the class and functions comments.

`php-class-tags'

Type: list (string)
Default value: `'("package")'
Description: List of PHP-Documentor tags to add into the class comments.

`php-function-tags'

Type: list (string)
Default value: `'()'
Description: List of PHP-Documentor tags to add into the functions comments.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1.6 Miscellaneous

`php-intelligent-tab'

Type: bool
Default value: `t'
Description: If `t'; TAB does indentation; completion and insert tabulations. If `nil'; TAB does only indentation.

`php-word-completion-in-minibuffer'

Type: bool
Default value: `t'
Description: If `t'; enable completion in the minibuffer.

`php-word-completion-case-sensitive'

Type: bool
Default value: `nil'
Description: If `t'; completion is case sensitive.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.2 Functions


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.2.1 Mode

`php-electric-mode'

Menu: PHP -> Options -> Mode -> Electric Mode
Keybinding: C-c C-m C-e
Description: This functions is used to enable/disable the electric mode.

`php-stutter-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] [ ? ]

4. Menus

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.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.1 PHP

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.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.1.1 Functions

`php-show-messages'

Menu: PHP -> Show Messages
Keybinding: C-c M-m
Description: This function opens the *Messages* buffer to display previous error messages.

`php-doc-mode'

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.

`php-version'

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] [ ? ]

4.2 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.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.2.1 Customization

`php-index-menu'

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.

`php-index-menu-auto-rescan'

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] [ ? ]

4.3 Sources

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.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

4.3.1 Customization

`php-source-file-menu'

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] [ ? ]

4.3.2 Functions

`php-add-source-files-menu'

Menu: Sources -> *Rescan*
Keybinding: C-c C-s C-u
Description: This function is used to refresh the Sources menu.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5. Completion

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.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

5.1 Customization

`php-intelligent-tab'

Type: bool
Default value: `t'
Description: If `t'; TAB does indentation; completion and insert tabulations. If `nil'; TAB does only indentation.

`php-word-completion-in-minibuffer'

Type: bool
Default value: `t'
Description: If `t'; enable completion in the minibuffer.

`php-word-completion-case-sensitive'

Type: bool
Default value: `nil'
Description: If `t'; completion is case sensitive.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6. Indentation

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.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6.1 Customization

`php-indent-tabs-mode'

Type: boolean
Default value: `nil'
Description: If `t'; indentation is made with tabs. If `nil'; indentation is made with spaces.

`php-basic-offset'

Type: integer
Default value: `4'
Description: Amount of basic offset used for indentation.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6.2 Functions

`indent-according-to-mode'

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).

`php-indent-region'

Menu: PHP -> Indent -> Region
Keybinding: M-C-, This function is used to indent the selected region in the current buffer.
Description:

`php-indent-buffer'

Menu: PHP -> Indent -> Buffer
Keybinding: C-c C-i C-b
Description: This function is used to indent the buffer.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

7. Stuttering

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.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

7.1 Customization

`php-stutter-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'.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

7.2 Functions

SPACE

If in comment, indent the comment and add new line if necessary. In other case, add a space.

ENTER

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] [ ? ]

8. Templates

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).


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.1 Customization

`php-electric-mode'

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] [ ? ]

8.2 Functions


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.1 .NET

`php-template-dotnet-load'

Menu: PHP -> Templates -> .NET -> dotnet_load
Keybinding: none
PHP Function: dotnet_load


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.2 Apache

`php-template-apache-child-terminate'

Menu: PHP -> Templates -> Apache -> apache_child_terminate
Keybinding: none
PHP Function: apache_child_terminate

`php-template-apache-get-modules'

Menu: PHP -> Templates -> Apache -> apache_get_modules
Keybinding: none
PHP Function: apache_get_modules

`php-template-apache-get-version'

Menu: PHP -> Templates -> Apache -> apache_get_version
Keybinding: none
PHP Function: apache_get_version

`php-template-apache-getenv'

Menu: PHP -> Templates -> Apache -> apache_getenv
Keybinding: none
PHP Function: apache_getenv

`php-template-apache-lookup-uri'

Menu: PHP -> Templates -> Apache -> apache_lookup_uri
Keybinding: none
PHP Function: apache_lookup_uri

`php-template-apache-note'

Menu: PHP -> Templates -> Apache -> apache_note
Keybinding: none
PHP Function: apache_note

`php-template-apache-request-headers'

Menu: PHP -> Templates -> Apache -> apache_request_headers
Keybinding: none
PHP Function: apache_request_headers

`php-template-apache-reset-timeout'

Menu: PHP -> Templates -> Apache -> apache_reset_timeout
Keybinding: none
PHP Function: apache_reset_timeout

`php-template-apache-response-headers'

Menu: PHP -> Templates -> Apache -> apache_response_headers
Keybinding: none
PHP Function: apache_response_headers

`php-template-apache-setenv'

Menu: PHP -> Templates -> Apache -> apache_setenv
Keybinding: none
PHP Function: apache_setenv

`php-template-ascii2ebcdic'

Menu: PHP -> Templates -> Apache -> ascii2ebcdic
Keybinding: none
PHP Function: ascii2ebcdic

`php-template-ebcdic2ascii'

Menu: PHP -> Templates -> Apache -> ebcdic2ascii
Keybinding: none
PHP Function: ebcdic2ascii

`php-template-getallheaders'

Menu: PHP -> Templates -> Apache -> getallheaders
Keybinding: none
PHP Function: getallheaders

`php-template-virtual'

Menu: PHP -> Templates -> Apache -> virtual
Keybinding: none
PHP Function: virtual


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.3 Array Functions

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

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_change_key_case
Keybinding: none
PHP Function: array_change_key_case

`php-template-array-chunk'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_chunk
Keybinding: none
PHP Function: array_chunk

`php-template-array-combine'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_combine
Keybinding: none
PHP Function: array_combine

`php-template-array-count-values'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_count_values
Keybinding: none
PHP Function: array_count_values

`php-template-array-diff-assoc'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_assoc
Keybinding: none
PHP Function: array_diff_assoc

`php-template-array-diff-key'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_key
Keybinding: none
PHP Function: array_diff_key

`php-template-array-diff-uassoc'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_uassoc
Keybinding: none
PHP Function: array_diff_uassoc

`php-template-array-diff-ukey'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff_ukey
Keybinding: none
PHP Function: array_diff_ukey

`php-template-array-diff'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_diff
Keybinding: none
PHP Function: array_diff

`php-template-array-fill'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_fill
Keybinding: none
PHP Function: array_fill

`php-template-array-filter'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_filter
Keybinding: none
PHP Function: array_filter

`php-template-array-flip'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_flip
Keybinding: none
PHP Function: array_flip

`php-template-array-intersect-assoc'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_assoc
Keybinding: none
PHP Function: array_intersect_assoc

`php-template-array-intersect-key'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_key
Keybinding: none
PHP Function: array_intersect_key

`php-template-array-intersect-uassoc'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_uassoc
Keybinding: none
PHP Function: array_intersect_uassoc

`php-template-array-intersect-ukey'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect_ukey
Keybinding: none
PHP Function: array_intersect_ukey

`php-template-array-intersect'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_intersect
Keybinding: none
PHP Function: array_intersect

`php-template-array-exists'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_key_exists
Keybinding: none
PHP Function: array_key_exists

`php-template-array-keys'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_keys
Keybinding: none
PHP Function: array_keys

`php-template-array-map'

Menu: PHP -> Templates -> Array functions -> Array (array_change -> array_map) -> array_map
Keybinding: none
PHP Function: array_map

`php-template-array-merge-recursive'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_merge_recursive
Keybinding: none
PHP Function: array_merge_recursive

`php-template-array-merge'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_merge
Keybinding: none
PHP Function: array_merge

`php-template-array-multisort'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_multisort
Keybinding: none
PHP Function: array_multisort

`php-template-array-pad'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_pad
Keybinding: none
PHP Function: array_pad

`php-template-array-pop'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_pop
Keybinding: none
PHP Function: array_pop

`php-template-array-product'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_product
Keybinding: none
PHP Function: array_product

`php-template-array-push'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_push
Keybinding: none
PHP Function: array_push

`php-template-array-rand'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_rand
Keybinding: none
PHP Function: array_rand

`php-template-array-reduce'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_reduce
Keybinding: none
PHP Function: array_reduce

`php-template-array-reverse'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_reverse
Keybinding: none
PHP Function: array_reverse

`php-template-array-search'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_search
Keybinding: none
PHP Function: array_search

`php-template-array-shift'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_shift
Keybinding: none
PHP Function: array_shift

`php-template-array-slice'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_slice
Keybinding: none
PHP Function: array_slice

`php-template-array-splice'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_splice
Keybinding: none
PHP Function: array_splice

`php-template-array-sum'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_sum
Keybinding: none
PHP Function: array_sum

`php-template-array-udiff-assoc'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_udiff_assoc
Keybinding: none
PHP Function: array_udiff_assoc

`php-template-array-udiff-uassoc'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_udiff_uassoc
Keybinding: none
PHP Function: array_udiff_uassoc

`php-template-array-udiff'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_udiff
Keybinding: none
PHP Function: array_udiff

`php-template-array-uintersect-assoc'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_uassoc) -> array_uintersect_assoc
Keybinding: none
PHP Function: array_uintersect_assoc

`php-template-array-uintersect-uassoc'

Menu: PHP -> Templates -> Array functions -> Array (array_merge -> array_uintersect_assoc) -> array_uintersect_uassoc
Keybinding: none
PHP Function: array_uintersect_uassoc

`php-template-array-uintersect'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_uintersect
Keybinding: none
PHP Function: array_uintersect

`php-template-array-unique'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_unique
Keybinding: none
PHP Function: array_unique

`php-template-array-unshift'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_unshift
Keybinding: none
PHP Function: array_unshift

`php-template-array-values'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_values
Keybinding: none
PHP Function: array_values

`php-template-array-walk-recursive'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_walk_recursive
Keybinding: none
PHP Function: array_walk_recursive

`php-template-array-walk'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array_walk
Keybinding: none
PHP Function: array_walk

`php-template-array'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> array
Keybinding: none
PHP Function: array

`php-template-arsort'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> arsort
Keybinding: none
PHP Function: arsort

`php-template-asort'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> asort
Keybinding: none
PHP Function: asort

`php-template-compact'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> compact
Keybinding: none
PHP Function: compact

`php-template-count'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> count
Keybinding: none
PHP Function: count

`php-template-current'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> current
Keybinding: none
PHP Function: current

`php-template-each'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> each
Keybinding: none
PHP Function: each

`php-template-end'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> end
Keybinding: none
PHP Function: end

`php-template-extract'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> extract
Keybinding: none
PHP Function: extract

`php-template-in-array'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> in_array
Keybinding: none
PHP Function: in_array

`php-template-key'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> key
Keybinding: none
PHP Function: key

`php-template-krsort'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> krsort
Keybinding: none
PHP Function: krsort

`php-template-ksort'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> ksort
Keybinding: none
PHP Function: ksort

`php-template-list'

Menu: PHP -> Templates -> Array functions -> Array (array_uintersect -> list) -> list
Keybinding: none
PHP Function: list

`php-template-natcasesort'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> natcasesort
Keybinding: none
PHP Function: natcasesort

`php-template-natsort'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> natsort
Keybinding: none
PHP Function: natsort

`php-template-next'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> next
Keybinding: none
PHP Function: next

`php-template-pos'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> pos
Keybinding: none
PHP Function: pos

`php-template-prev'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> prev
Keybinding: none
PHP Function: prev

`php-template-range'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> range
Keybinding: none
PHP Function: range

`php-template-reset'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> reset
Keybinding: none
PHP Function: reset

`php-template-rsort'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> rsort
Keybinding: none
PHP Function: rsort

`php-template-shuffle'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> shuffle
Keybinding: none
PHP Function: shuffle

`php-template-sizeof'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> sizeof
Keybinding: none
PHP Function: sizeof

`php-template-sort'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> sort
Keybinding: none
PHP Function: sort

`php-template-uasort'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> uasort
Keybinding: none
PHP Function: uasort

`php-template-uksort'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> uksort
Keybinding: none
PHP Function: uksort

`php-template-usort'

Menu: PHP -> Templates -> Array functions -> Array (natcasesort -> usort) -> usort
Keybinding: none
PHP Function: usort


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.4 Control Structures

`php-template-break'

Menu: PHP -> Templates -> Control Structures -> break
Keybinding: none
PHP Function: break

`php-template-continue'

Menu: PHP -> Templates -> Control Structures -> continue
Keybinding: none
PHP Function: continue

`php-template-do-while'

Menu: PHP -> Templates -> Control Structures -> do-while
Keybinding: none
PHP Function: do-while

`php-template-else'

Menu: PHP -> Templates -> Control Structures -> else
Keybinding: none
PHP Function: else

`php-template-elseif'

Menu: PHP -> Templates -> Control Structures -> elseif
Keybinding: none
PHP Function: elseif

`php-template-for'

Menu: PHP -> Templates -> Control Structures -> for
Keybinding: none
PHP Function: for

`php-template-foreach'

Menu: PHP -> Templates -> Control Structures -> foreach
Keybinding: none
PHP Function: foreach

`php-template-if'

Menu: PHP -> Templates -> Control Structures -> if
Keybinding: none
PHP Function: if

`php-template-include'

Menu: PHP -> Templates -> Control Structures -> include
Keybinding: none
PHP Function: include

`php-template-include-once'

Menu: PHP -> Templates -> Control Structures -> include_once
Keybinding: none
PHP Function: include_once

`php-template-require'

Menu: PHP -> Templates -> Control Structures -> require
Keybinding: none
PHP Function: require

`php-template-require-once'

Menu: PHP -> Templates -> Control Structures -> require_once
Keybinding: none
PHP Function: require_once

`php-template-return'

Menu: PHP -> Templates -> Control Structures -> return
Keybinding: none
PHP Function: return

`php-template-switch'

Menu: PHP -> Templates -> Control Structures -> switch
Keybinding: none
PHP Function: switch

`php-template-while'

Menu: PHP -> Templates -> Control Structures -> while
Keybinding: none
PHP Function: while


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.5 Date/Time Functions

`php-template-checkdate'

Menu: PHP -> Templates -> Date/Time Functions -> checkdate
Keybinding: none
PHP Function: checkdate

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

Menu: PHP -> Templates -> Date/Time Functions -> date_default_timezone_get
Keybinding: none
PHP Function: date_default_timezone_get

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

Menu: PHP -> Templates -> Date/Time Functions -> date_default_timezone_set
Keybinding: none
PHP Function: date_default_timezone_set

`php-template-date-sunrise'

Menu: PHP -> Templates -> Date/Time Functions -> date_sunrise
Keybinding: none
PHP Function: date_sunrise

`php-template-date-sunset'

Menu: PHP -> Templates -> Date/Time Functions -> date_sunset
Keybinding: none
PHP Function: date_sunset

`php-template-date'

Menu: PHP -> Templates -> Date/Time Functions -> date
Keybinding: none
PHP Function: date

`php-template-getdate'

Menu: PHP -> Templates -> Date/Time Functions -> getdate
Keybinding: none
PHP Function: getdate

`php-template-gettimeofday'

Menu: PHP -> Templates -> Date/Time Functions -> gettimeofday
Keybinding: none
PHP Function: gettimeofday

`php-template-gmdate'

Menu: PHP -> Templates -> Date/Time Functions -> gmdate
Keybinding: none
PHP Function: gmdate

`php-template-gmmktime'

Menu: PHP -> Templates -> Date/Time Functions -> gmmktime
Keybinding: none
PHP Function: gmmktime

`php-template-gmstrftime'

Menu: PHP -> Templates -> Date/Time Functions -> gmstrftime
Keybinding: none
PHP Function: gmstrftime

`php-template-idate'

Menu: PHP -> Templates -> Date/Time Functions -> idate
Keybinding: none
PHP Function: idate

`php-template-localtime'

Menu: PHP -> Templates -> Date/Time Functions -> localtime
Keybinding: none
PHP Function: localtime

`php-template-microtime'

Menu: PHP -> Templates -> Date/Time Functions -> microtime
Keybinding: none
PHP Function: microtime

`php-template-mktime'

Menu: PHP -> Templates -> Date/Time Functions -> mktime
Keybinding: none
PHP Function: mktime

`php-template-strftime'

Menu: PHP -> Templates -> Date/Time Functions -> strftime
Keybinding: none
PHP Function: strftime

`php-template-strptime'

Menu: PHP -> Templates -> Date/Time Functions -> strptime
Keybinding: none
PHP Function: strptime

`php-template-strtotime'

Menu: PHP -> Templates -> Date/Time Functions -> strtotime
Keybinding: none
PHP Function: strtotime

`php-template-time'

Menu: PHP -> Templates -> Date/Time Functions -> time
Keybinding: none
PHP Function: time


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.6 Directory Functions

`php-template-chdir'

Menu: PHP -> Templates -> Directory Functions -> chdir
Keybinding: none
PHP Function: chdir

`php-template-chroot'

Menu: PHP -> Templates -> Directory Functions -> chroot
Keybinding: none
PHP Function: chroot

`php-template-dir'

Menu: PHP -> Templates -> Directory Functions -> dir
Keybinding: none
PHP Function: dir

`php-template-closedir'

Menu: PHP -> Templates -> Directory Functions -> closedir
Keybinding: none
PHP Function: closedir

`php-template-getcwd'

Menu: PHP -> Templates -> Directory Functions -> getcwd
Keybinding: none
PHP Function: getcwd

`php-template-opendir'

Menu: PHP -> Templates -> Directory Functions -> opendir
Keybinding: none
PHP Function: opendir

`php-template-readdir'

Menu: PHP -> Templates -> Directory Functions -> readdir
Keybinding: none
PHP Function: readdir

`php-template-rewinddir'

Menu: PHP -> Templates -> Directory Functions -> rewinddir
Keybinding: none
PHP Function: rewinddir

`php-template-scandir'

Menu: PHP -> Templates -> Directory Functions -> scandir
Keybinding: none
PHP Function: scandir


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.7 Error and Logging

`php-template-debug-backtrace'

Menu: PHP -> Templates -> Error and Logging -> debug_backtrace
Keybinding: none
PHP Function: debug_backtrace

`php-template-debug-print-backtrace'

Menu: PHP -> Templates -> Error and Logging -> debug_print_backtrace
Keybinding: none
PHP Function: debug_print_backtrace

`php-template-error-log'

Menu: PHP -> Templates -> Error and Logging -> error_log
Keybinding: none
PHP Function: error_log

`php-template-error-reporting'

Menu: PHP -> Templates -> Error and Logging -> error_reporting
Keybinding: none
PHP Function: error_reporting

`php-template-restore-error-handler'

Menu: PHP -> Templates -> Error and Logging -> restore_error_handler
Keybinding: none
PHP Function: restore_error_handler

`php-template-restore-exception-handler'

Menu: PHP -> Templates -> Error and Logging -> restore_exception_handler
Keybinding: none
PHP Function: restore_exception_handler

`php-template-set-error-handler'

Menu: PHP -> Templates -> Error and Logging -> set_error_handler
Keybinding: none
PHP Function: set_error_handler

`php-template-set-exception-handler'

Menu: PHP -> Templates -> Error and Logging -> set_exception_handler
Keybinding: none
PHP Function: set_exception_handler

`php-template-trigger-error'

Menu: PHP -> Templates -> Error and Logging -> trigger_error
Keybinding: none
PHP Function: trigger_error

`php-template-user-error'

Menu: PHP -> Templates -> Error and Logging -> user_error
Keybinding: none
PHP Function: user_error


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.8 File System

`php-template-basename'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> basename
Keybinding: none
PHP Function: basename

`php-template-chgrp'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> chgrp
Keybinding: none
PHP Function: chgrp

`php-template-chmod'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> chmod
Keybinding: none
PHP Function: chmod

`php-template-chown'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> chown
Keybinding: none
PHP Function: chown

`php-template-clearstatcache'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> clearstatcache
Keybinding: none
PHP Function: clearstatcache

`php-template-copy'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> copy
Keybinding: none
PHP Function: copy

`php-template-delete'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> delete
Keybinding: none
PHP Function: delete

`php-template-dirname'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> dirname
Keybinding: none
PHP Function: dirname

`php-template-disk-free-space'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> disk_free_space
Keybinding: none
PHP Function: disk_free_space

`php-template-disk-total-space'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> disk_total_space
Keybinding: none
PHP Function: disk_total_space

`php-template-diskfreespace'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> diskfreespace
Keybinding: none
PHP Function: diskfreespace

`php-template-fclose'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fclose
Keybinding: none
PHP Function: fclose

`php-template-feof'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> feof
Keybinding: none
PHP Function: feof

`php-template-fflush'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fflush
Keybinding: none
PHP Function: fflush

`php-template-fgetc'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgetc
Keybinding: none
PHP Function: fgetc

`php-template-fgetcsv'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgetcsv
Keybinding: none
PHP Function: fgetcsv

`php-template-fgets'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgets
Keybinding: none
PHP Function: fgets

`php-template-fgetss'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> fgetss
Keybinding: none
PHP Function: fgetss

`php-template-file-exists'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> file_exists
Keybinding: none
PHP Function: file_exists

`php-template-file-get-contents'

Menu: PHP -> Templates -> File System -> File System (Basename -> File_get_contents) -> file_get_contents
Keybinding: none
PHP Function: file_get_contents

`php-template-file-put-contents'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> file_put_contents
Keybinding: none
PHP Function: file_put_contents

`php-template-file'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> file
Keybinding: none
PHP Function: file

`php-template-fileatime'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileatime
Keybinding: none
PHP Function: fileatime

`php-template-filectime'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filectime
Keybinding: none
PHP Function: filectime

`php-template-filegroup'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filegroup
Keybinding: none
PHP Function: filegroup

`php-template-fileinode'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileinode
Keybinding: none
PHP Function: fileinode

`php-template-filemtime'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filemtime
Keybinding: none
PHP Function: filemtime

`php-template-fileowner'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileowner
Keybinding: none
PHP Function: fileowner

`php-template-fileperms'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fileperms
Keybinding: none
PHP Function: fileperms

`php-template-filesize'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filesize
Keybinding: none
PHP Function: filesize

`php-template-filetype'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> filetype
Keybinding: none
PHP Function: filetype

`php-template-flock'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> flock
Keybinding: none
PHP Function: flock

`php-template-fnmatch'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fnmatch
Keybinding: none
PHP Function: fnmatch

`php-template-fopen'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fopen
Keybinding: none
PHP Function: fopen

`php-template-fpassthru'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fpassthru
Keybinding: none
PHP Function: fpassthru

`php-template-fputcsv'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fputcsv
Keybinding: none
PHP Function: fputcsv

`php-template-fwrite'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fputs
Keybinding: none
PHP Function: fputs

`php-template-fread'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fread
Keybinding: none
PHP Function: fread

`php-template-fseek'

Menu: PHP -> Templates -> File System -> File System (File_put_contents -> Fseek) -> fseek
Keybinding: none
PHP Function: fseek

`php-template-fstat'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> fstat
Keybinding: none
PHP Function: fstat

`php-template-ftell'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> ftell
Keybinding: none
PHP Function: ftell

`php-template-ftruncate'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> ftruncate
Keybinding: none
PHP Function: ftruncate

`php-template-fwrite'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> fwrite
Keybinding: none
PHP Function: fwrite

`php-template-glob'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> glob
Keybinding: none
PHP Function: glob

`php-template-is-dir'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_dir
Keybinding: none
PHP Function: is_dir

`php-template-is-executable'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_executable
Keybinding: none
PHP Function: is_executable

`php-template-is-file'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_file
Keybinding: none
PHP Function: is_file

`php-template-is-link'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_link
Keybinding: none
PHP Function: is_link

`php-template-is-readable'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_readable
Keybinding: none
PHP Function: is_readable

`php-template-is-uploaded-file'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_uploaded_file
Keybinding: none
PHP Function: is_uploaded_file

`php-template-is-writable'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_writable
Keybinding: none
PHP Function: is_writable

`php-template-is-writable'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> is_writeable
Keybinding: none
PHP Function: is_writeable

`php-template-link'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> link
Keybinding: none
PHP Function: link

`php-template-linkinfo'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> linkinfo
Keybinding: none
PHP Function: linkinfo

`php-template-lstat'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> lstat
Keybinding: none
PHP Function: lstat

`php-template-mkdir'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> mkdir
Keybinding: none
PHP Function: mkdir

`php-template-move-uploaded-file'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> move_uploaded_file
Keybinding: none
PHP Function: move_uploaded_file

`php-template-parse-ini-file'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> parse_ini_file
Keybinding: none
PHP Function: parse_ini_file

`php-template-pathinfo'

Menu: PHP -> Templates -> File System -> File System (Fstat -> Pathinfo) -> pathinfo
Keybinding: none
PHP Function: pathinfo

`php-template-pclose'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> pclose
Keybinding: none
PHP Function: pclose

`php-template-popen'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> popen
Keybinding: none
PHP Function: popen

`php-template-readfile'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> readfile
Keybinding: none
PHP Function: readfile

`php-template-readlink'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> readlink
Keybinding: none
PHP Function: readlink

`php-template-realpath'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> realpath
Keybinding: none
PHP Function: realpath

`php-template-rename'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> rename
Keybinding: none
PHP Function: rename

`php-template-rewind'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> rewind
Keybinding: none
PHP Function: rewind

`php-template-rmdir'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> rmdir
Keybinding: none
PHP Function: rmdir

`php-template-stat'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> stat
Keybinding: none
PHP Function: stat

`php-template-symlink'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> symlink
Keybinding: none
PHP Function: symlink

`php-template-tempnam'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> tempnam
Keybinding: none
PHP Function: tempnam

`php-template-tmpfile'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> tmpfile
Keybinding: none
PHP Function: tmpfile

`php-template-touch'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> touch
Keybinding: none
PHP Function: touch

`php-template-umask'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> umask
Keybinding: none
PHP Function: umask

`php-template-unlink'

Menu: PHP -> Templates -> File System -> File System (Pclose -> Unlink) -> unlink
Keybinding: none
PHP Function: unlink


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.9 Functions

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

Menu: PHP -> Templates -> Functions -> call_user_func_array
Keybinding: none
PHP Function: call_user_func_array

`php-template-call-user-func'

Menu: PHP -> Templates -> Functions -> call_user_func
Keybinding: none
PHP Function: call_user_func

`php-template-create-function'

Menu: PHP -> Templates -> Functions -> create_function
Keybinding: none
PHP Function: create_function

`php-template-func-get-arg'

Menu: PHP -> Templates -> Functions -> func_get_arg
Keybinding: none
PHP Function: func_get_arg

`php-template-func-get-args'

Menu: PHP -> Templates -> Functions -> func_get_args
Keybinding: none
PHP Function: func_get_args

`php-template-func-num-args'

Menu: PHP -> Templates -> Functions -> func_num_args
Keybinding: none
PHP Function: func_num_args

`php-template-function-exists'

Menu: PHP -> Templates -> Functions -> function_exists
Keybinding: none
PHP Function: function_exists

`php-template-get-defined-functions'

Menu: PHP -> Templates -> Functions -> get_defined_functions
Keybinding: none
PHP Function: get_defined_functions

`php-template-register-shutdown-function'

Menu: PHP -> Templates -> Functions -> register_shutdown_function
Keybinding: none
PHP Function: register_shutdown_function

`php-template-register-tick-function'

Menu: PHP -> Templates -> Functions -> register_tick_function
Keybinding: none
PHP Function: register_tick_function

`php-template-unregister-tick-function'

Menu: PHP -> Templates -> Functions -> unregister_tick_function
Keybinding: none
PHP Function: unregister_tick_function


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.10 Image

`php-template-gd-info'

Menu: PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> gd_info
Keybinding: none
PHP Function: gd_info

`php-template-getimagesize'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> getimagesize
Keybinding: none
PHP Function: getimagesize

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

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> image_type_to_extension
Keybinding: none
PHP Function: image_type_to_extension

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

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> image_type_to_mime_type
Keybinding: none
PHP Function: image_type_to_mime_type

`php-template-image2wbmp'

Menu: PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> image2wbmp
Keybinding: none
PHP Function: image2wbmp

`php-template-imagealphablending'

Menu: PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> imagealphablending
Keybinding: none
PHP Function: imagealphablending

`php-template-imageantialias'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> imageantialias
Keybinding: none
PHP Function: imageantialias

`php-template-imagearc'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> imagearc
Keybinding: none
PHP Function: imagearc

`php-template-imagechar'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagechar
Keybinding: none
PHP Function: imagechar

`php-template-imagecharup'

Menu: PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecharup
Keybinding: none
PHP Function: imagecharup

`php-template-imagecolorallocate'

Menu: PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorallocate
Keybinding: none
PHP Function: imagecolorallocate

`php-template-imagecolorallocatealpha'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorallocatealpha
Keybinding: none
PHP Function: imagecolorallocatealpha

`php-template-imagecolorat'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorat
Keybinding: none
PHP Function: imagecolorat

`php-template-imagecolorclosest'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorclosest
Keybinding: none
PHP Function: imagecolorclosest

`php-template-imagecolorclosestalpha'

Menu: PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorclosestalpha
Keybinding: none
PHP Function: imagecolorclosestalpha

`php-template-imagecolorclosesthwb'

Menu: PHP -> Templates -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorclosesthwb
Keybinding: none
PHP Function: imagecolorclosesthwb

`php-template-imagecolordeallocate'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (gd_info -> imagecolormatch) -> imagecolordeallocate
Keybinding: none
PHP Function: imagecolordeallocate

`php-template-imagecolorexact'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorexact
Keybinding: none
PHP Function: imagecolorexact

`php-template-imagecolorexactalpha'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolorexactalpha
Keybinding: none
PHP Function: imagecolorexactalpha

`php-template-imagecolormatch'

Menu: PHP -> Te01-Functions -> Image -> Image (gd_info -> imagecolormatch) -> imagecolormatch
Keybinding: none
PHP Function: imagecolormatch

`php-template-imagecolorresolve'

Menu: PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorresolve
Keybinding: none
PHP Function: imagecolorresolve

`php-template-imagecolorresolvealpha'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorresolvealpha
Keybinding: none
PHP Function: imagecolorresolvealpha

`php-template-imagecolorset'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorset
Keybinding: none
PHP Function: imagecolorset

`php-template-imagecolorsforindex'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorsforindex
Keybinding: none
PHP Function: imagecolorsforindex

`php-template-imagecolorstotal'

Menu: PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolorstotal
Keybinding: none
PHP Function: imagecolorstotal

`php-template-imagecolortransparent'

Menu: PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecolortransparent
Keybinding: none
PHP Function: imagecolortransparent

`php-template-imageconvolution'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imageconvolution
Keybinding: none
PHP Function: imageconvolution

`php-template-imagecopy'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopy
Keybinding: none
PHP Function: imagecopy

`php-template-imagecopymerge'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopymerge
Keybinding: none
PHP Function: imagecopymerge

`php-template-imagecopymergegray'

Menu: PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopymergegray
Keybinding: none
PHP Function: imagecopymergegray

`php-template-imagecopyresampled'

Menu: PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopyresampled
Keybinding: none
PHP Function: imagecopyresampled

`php-template-imagecopyresized'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecopyresized
Keybinding: none
PHP Function: imagecopyresized

`php-template-imagecreate'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreate
Keybinding: none
PHP Function: imagecreate

`php-template-imagecreatefromgd2'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgd2
Keybinding: none
PHP Function: imagecreatefromgd2

`php-template-imagecreatefromgd2part'

Menu: PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgd2part
Keybinding: none
PHP Function: imagecreatefromgd2part

`php-template-imagecreatefromgd'

Menu: PHP -> Templates -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgd
Keybinding: none
PHP Function: imagecreatefromgd

`php-template-imagecreatefromgif'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromgif
Keybinding: none
PHP Function: imagecreatefromgif

`php-template-imagecreatefromjpeg'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromjpeg
Keybinding: none
PHP Function: imagecreatefromjpeg

`php-template-imagecreatefrompng'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefrompng
Keybinding: none
PHP Function: imagecreatefrompng

`php-template-imagecreatefromstring'

Menu: PHP -> Te01-Functions -> Image -> Image (imagecolorresolve -> imagecreatefromstring) -> imagecreatefromstring
Keybinding: none
PHP Function: imagecreatefromstring

`php-template-imagecreatefromwbmp'

Menu: PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatefromwbmp
Keybinding: none
PHP Function: imagecreatefromwbmp

`php-template-imagecreatefromxbm'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatefromxbm
Keybinding: none
PHP Function: imagecreatefromxbm

`php-template-imagecreatefromxpm'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatefromxpm
Keybinding: none
PHP Function: imagecreatefromxpm

`php-template-imagecreatetruecolor'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagecreatetruecolor
Keybinding: none
PHP Function: imagecreatetruecolor

`php-template-imagedashedline'

Menu: PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagedashedline
Keybinding: none
PHP Function: imagedashedline

`php-template-imagedestroy'

Menu: PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagedestroy
Keybinding: none
PHP Function: imagedestroy

`php-template-imageellipse'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imageellipse
Keybinding: none
PHP Function: imageellipse

`php-template-imagefill'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefill
Keybinding: none
PHP Function: imagefill

`php-template-imagefilledarc'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledarc
Keybinding: none
PHP Function: imagefilledarc

`php-template-imagefilledellipse'

Menu: PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledellipse
Keybinding: none
PHP Function: imagefilledellipse

`php-template-imagefilledpolygon'

Menu: PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledpolygon
Keybinding: none
PHP Function: imagefilledpolygon

`php-template-imagefilledrectangle'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilledrectangle
Keybinding: none
PHP Function: imagefilledrectangle

`php-template-imagefilltoborder'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilltoborder
Keybinding: none
PHP Function: imagefilltoborder

`php-template-imagefilter'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefilter
Keybinding: none
PHP Function: imagefilter

`php-template-imagefontheight'

Menu: PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefontheight
Keybinding: none
PHP Function: imagefontheight

`php-template-imagefontwidth'

Menu: PHP -> Templates -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefontwidth
Keybinding: none
PHP Function: imagefontwidth

`php-template-imageftbbox'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imageftbbox
Keybinding: none
PHP Function: imageftbbox

`php-template-imagefttext'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagefttext
Keybinding: none
PHP Function: imagefttext

`php-template-imagegammacorrect'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagegammacorrect
Keybinding: none
PHP Function: imagegammacorrect

`php-template-imagegd2'

Menu: PHP -> Te01-Functions -> Image -> Image (imagecreatefromwbmp -> imagegd2) -> imagegd2
Keybinding: none
PHP Function: imagegd2

`php-template-imagegd'

Menu: PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagegd
Keybinding: none
PHP Function: imagegd

`php-template-imagegif'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imagegif
Keybinding: none
PHP Function: imagegif

`php-template-imageinterlace'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imageinterlace
Keybinding: none
PHP Function: imageinterlace

`php-template-imageistruecolor'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imageistruecolor
Keybinding: none
PHP Function: imageistruecolor

`php-template-imagejpeg'

Menu: PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagejpeg
Keybinding: none
PHP Function: imagejpeg

`php-template-imagelayereffect'

Menu: PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagelayereffect
Keybinding: none
PHP Function: imagelayereffect

`php-template-imageline'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imageline
Keybinding: none
PHP Function: imageline

`php-template-imageloadfont'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imageloadfont
Keybinding: none
PHP Function: imageloadfont

`php-template-imagepalettecopy'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepalettecopy
Keybinding: none
PHP Function: imagepalettecopy

`php-template-imagepng'

Menu: PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepng
Keybinding: none
PHP Function: imagepng

`php-template-imagepolygon'

Menu: PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagepolygon
Keybinding: none
PHP Function: imagepolygon

`php-template-imagepsbbox'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imagepsbbox
Keybinding: none
PHP Function: imagepsbbox

`php-template-imagepsencodefont'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imagepsencodefont
Keybinding: none
PHP Function: imagepsencodefont

`php-template-imagepsextendfont'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepsextendfont
Keybinding: none
PHP Function: imagepsextendfont

`php-template-imagepsfreefont'

Menu: PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagepsfreefont
Keybinding: none
PHP Function: imagepsfreefont

`php-template-imagepsloadfont'

Menu: PHP -> Templates -> Image -> Image (imagegd -> imagerotate) -> imagepsloadfont
Keybinding: none
PHP Function: imagepsloadfont

`php-template-imagepsslantfont'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagegd -> imagerotate) -> imagepsslantfont
Keybinding: none
PHP Function: imagepsslantfont

`php-template-imagepstext'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagegd -> imagerotate) -> imagepstext
Keybinding: none
PHP Function: imagepstext

`php-template-imagerectangle'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagerectangle
Keybinding: none
PHP Function: imagerectangle

`php-template-imagerotate'

Menu: PHP -> Te01-Functions -> Image -> Image (imagegd -> imagerotate) -> imagerotate
Keybinding: none
PHP Function: imagerotate

`php-template-imagesavealpha'

Menu: PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesavealpha
Keybinding: none
PHP Function: imagesavealpha

`php-template-imagesetbrush'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetbrush
Keybinding: none
PHP Function: imagesetbrush

`php-template-imagesetpixel'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetpixel
Keybinding: none
PHP Function: imagesetpixel

`php-template-imagesetstyle'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetstyle
Keybinding: none
PHP Function: imagesetstyle

`php-template-imagesetthickness'

Menu: PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesetthickness
Keybinding: none
PHP Function: imagesetthickness

`php-template-imagesettile'

Menu: PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesettile
Keybinding: none
PHP Function: imagesettile

`php-template-imagestring'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> imagestring
Keybinding: none
PHP Function: imagestring

`php-template-imagestringup'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> imagestringup
Keybinding: none
PHP Function: imagestringup

`php-template-imagesx'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesx
Keybinding: none
PHP Function: imagesx

`php-template-imagesy'

Menu: PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagesy
Keybinding: none
PHP Function: imagesy

`php-template-imagetruecolortopalette'

Menu: PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagetruecolortopalette
Keybinding: none
PHP Function: imagetruecolortopalette

`php-template-imagettfbbox'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> imagettfbbox
Keybinding: none
PHP Function: imagettfbbox

`php-template-imagettftext'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> imagettftext
Keybinding: none
PHP Function: imagettftext

`php-template-imagetypes'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagetypes
Keybinding: none
PHP Function: imagetypes

`php-template-imagewbmp'

Menu: PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> imagewbmp
Keybinding: none
PHP Function: imagewbmp

`php-template-imagexbm'

Menu: PHP -> Templates -> Image -> Image (imagesavealpha -> png2wbmp) -> imagexbm
Keybinding: none
PHP Function: imagexbm

`php-template-iptcembed'

Menu: PHP -> Te01-Fu01-Image -> Image -> Image (imagesavealpha -> png2wbmp) -> iptcembed
Keybinding: none
PHP Function: iptcembed

`php-template-iptcparse'

Menu: PHP -> Te01-Fu01-Mail -> Image -> Image (imagesavealpha -> png2wbmp) -> iptcparse
Keybinding: none
PHP Function: iptcparse

`php-template-jpeg2wbmp'

Menu: PHP -> Te01-Fu01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> jpeg2wbmp
Keybinding: none
PHP Function: jpeg2wbmp

`php-template-png2wbmp'

Menu: PHP -> Te01-Functions -> Image -> Image (imagesavealpha -> png2wbmp) -> png2wbmp
Keybinding: none
PHP Function: png2wbmp


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.11 Mail

`php-template-ezmlm-hash'

Menu: PHP -> Templates -> Mail -> ezmlm_hash
Keybinding: none
PHP Function: ezmlm_hash

`php-template-mail'

Menu: PHP -> Templates -> Mail -> mail
Keybinding: none
PHP Function: mail


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.12 Mathematical

`php-template-abs'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> abs
Keybinding: none
PHP Function: abs

`php-template-acos'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> acos
Keybinding: none
PHP Function: acos

`php-template-acosh'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> acosh
Keybinding: none
PHP Function: acosh

`php-template-asin'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> asin
Keybinding: none
PHP Function: asin

`php-template-asinh'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> asinh
Keybinding: none
PHP Function: asinh

`php-template-atan2'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> atan2
Keybinding: none
PHP Function: atan2

`php-template-atan'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> atan
Keybinding: none
PHP Function: atan

`php-template-atanh'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> atanh
Keybinding: none
PHP Function: atanh

`php-template-base-convert'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> base_convert
Keybinding: none
PHP Function: base_convert

`php-template-bindec'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> bindec
Keybinding: none
PHP Function: bindec

`php-template-ceil'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> ceil
Keybinding: none
PHP Function: ceil

`php-template-cos'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> cos
Keybinding: none
PHP Function: cos

`php-template-cosh'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> cosh
Keybinding: none
PHP Function: cosh

`php-template-decbin'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> decbin
Keybinding: none
PHP Function: decbin

`php-template-dechex'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> dechex
Keybinding: none
PHP Function: dechex

`php-template-decoct'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> decoct
Keybinding: none
PHP Function: decoct

`php-template-deg2rad'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> deg2rad
Keybinding: none
PHP Function: deg2rad

`php-template-exp'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> exp
Keybinding: none
PHP Function: exp

`php-template-expm1'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> expm1
Keybinding: none
PHP Function: expm1

`php-template-floor'

Menu: PHP -> Templates -> Mathematical -> Mathematical (abs -> floor) -> floor
Keybinding: none
PHP Function: floor

`php-template-fmod'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> fmod
Keybinding: none
PHP Function: fmod

`php-template-getrandmax'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> getrandmax
Keybinding: none
PHP Function: getrandmax

`php-template-hexdec'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> hexdec
Keybinding: none
PHP Function: hexdec

`php-template-hypot'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> hypot
Keybinding: none
PHP Function: hypot

`php-template-is-finite'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> is_finite
Keybinding: none
PHP Function: is_finite

`php-template-is-infinite'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> is_infinite
Keybinding: none
PHP Function: is_infinite

`php-template-is-nan'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> is_nan
Keybinding: none
PHP Function: is_nan

`php-template-lcg-value'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> lcg_value
Keybinding: none
PHP Function: lcg_value

`php-template-log10'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> log10
Keybinding: none
PHP Function: log10

`php-template-log1p'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> log1p
Keybinding: none
PHP Function: log1p

`php-template-log'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> log
Keybinding: none
PHP Function: log

`php-template-max'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> max
Keybinding: none
PHP Function: max

`php-template-min'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> min
Keybinding: none
PHP Function: min

`php-template-mt-getrandmax'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> mt_getrandmax
Keybinding: none
PHP Function: mt_getrandmax

`php-template-mt-rand'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> mt_rand
Keybinding: none
PHP Function: mt_rand

`php-template-mt-srand'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> mt_srand
Keybinding: none
PHP Function: mt_srand

`php-template-octdec'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> octdec
Keybinding: none
PHP Function: octdec

`php-template-pi'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> pi
Keybinding: none
PHP Function: pi

`php-template-pow'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> pow
Keybinding: none
PHP Function: pow

`php-template-rad2deg'

Menu: PHP -> Templates -> Mathematical -> Mathematical (fmod -> rad2deg) -> rad2deg
Keybinding: none
PHP Function: rad2deg

`php-template-rand'

Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> rand
Keybinding: none
PHP Function: rand

`php-template-round'

Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> round
Keybinding: none
PHP Function: round

`php-template-sin'

Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> sin
Keybinding: none
PHP Function: sin

`php-template-sinh'

Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> sinh
Keybinding: none
PHP Function: sinh

`php-template-sqrt'

Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> sqrt
Keybinding: none
PHP Function: sqrt

`php-template-srand'

Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> srand
Keybinding: none
PHP Function: srand

`php-template-tan'

Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> tan
Keybinding: none
PHP Function: tan

`php-template-tanh'

Menu: PHP -> Templates -> Mathematical -> Mathematical (rand -> tanh) -> tanh
Keybinding: none
PHP Function: tanh


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.13 Miscellaneous

`php-template-connection-aborted'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> connection_aborted
Keybinding: none
PHP Function: connection_aborted

`php-template-connection-status'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> connection_status
Keybinding: none
PHP Function: connection_status

`php-template-connection-timeout'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> connection_timeout
Keybinding: none
PHP Function: connection_timeout

`php-template-constant'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> constant
Keybinding: none
PHP Function: constant

`php-template-define'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> define
Keybinding: none
PHP Function: define

`php-template-defined'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> defined
Keybinding: none
PHP Function: defined

`php-template-die'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> die
Keybinding: none
PHP Function: die

`php-template-eval'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> eval
Keybinding: none
PHP Function: eval

`php-template-exit'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> exit
Keybinding: none
PHP Function: exit

`php-template-get-browser'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> get_browser
Keybinding: none
PHP Function: get_browser

`php-template-halt-compiler'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> __halt_compiler
Keybinding: none
PHP Function: __halt_compiler

`php-template-highlight-file'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> highlight_file
Keybinding: none
PHP Function: highlight_file

`php-template-highlight-string'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> highlight_string
Keybinding: none
PHP Function: highlight_string

`php-template-ignore-user-abort'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> ignore_user_abort
Keybinding: none
PHP Function: ignore_user_abort

`php-template-pack'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> pack
Keybinding: none
PHP Function: pack

`php-template-php-check-syntax'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> php_check_syntax
Keybinding: none
PHP Function: php_check_syntax

`php-template-php-strip-whitespace'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> php_strip_whitespace
Keybinding: none
PHP Function: php_strip_whitespace

`php-template-show-source'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> show_source
Keybinding: none
PHP Function: show_source

`php-template-sleep'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> sleep
Keybinding: none
PHP Function: sleep

`php-template-sys-getloadavg'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (connection_aborted -> sys_getloadavg) -> sys_getloadavg
Keybinding: none
PHP Function: sys_getloadavg

`php-template-time-nanosleep'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> time_nanosleep
Keybinding: none
PHP Function: time_nanosleep

`php-template-time-sleep-until'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> time_sleep_until
Keybinding: none
PHP Function: time_sleep_until

`php-template-uniqid'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> uniqid
Keybinding: none
PHP Function: uniqid

`php-template-unpack'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> unpack
Keybinding: none
PHP Function: unpack

`php-template-usleep'

Menu: PHP -> Templates -> Miscellaneous Functions -> Misc (time_nanosleep -> usleep) -> usleep
Keybinding: none
PHP Function: usleep


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.14 MySQL

`php-template-mysql-affected-rows'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_affected_rows
Keybinding: none
PHP Function: mysql_affected_rows

`php-template-mysql-change-user'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_change_user
Keybinding: none
PHP Function: mysql_change_user

`php-template-mysql-client-encoding'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_client_encoding
Keybinding: none
PHP Function: mysql_client_encoding

`php-template-mysql-close'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_close
Keybinding: none
PHP Function: mysql_close

`php-template-mysql-connect'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_connect
Keybinding: none
PHP Function: mysql_connect

`php-template-mysql-create-db'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_create_db
Keybinding: none
PHP Function: mysql_create_db

`php-template-mysql-data-seek'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_data_seek
Keybinding: none
PHP Function: mysql_data_seek

`php-template-mysql-db-name'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_db_name
Keybinding: none
PHP Function: mysql_db_name

`php-template-mysql-db-query'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_db_query
Keybinding: none
PHP Function: mysql_db_query

`php-template-mysql-drop-db'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_drop_db
Keybinding: none
PHP Function: mysql_drop_db

`php-template-mysql-errno'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_errno
Keybinding: none
PHP Function: mysql_errno

`php-template-mysql-error'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_error
Keybinding: none
PHP Function: mysql_error

`php-template-mysql-escape-string'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_escape_string
Keybinding: none
PHP Function: mysql_escape_string

`php-template-mysql-fetch-array'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_array
Keybinding: none
PHP Function: mysql_fetch_array

`php-template-mysql-fetch-assoc'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_assoc
Keybinding: none
PHP Function: mysql_fetch_assoc

`php-template-mysql-fetch-field'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_field
Keybinding: none
PHP Function: mysql_fetch_field

`php-template-mysql-fetch-lengths'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_lengths
Keybinding: none
PHP Function: mysql_fetch_lengths

`php-template-mysql-fetch-object'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_object
Keybinding: none
PHP Function: mysql_fetch_object

`php-template-mysql-fetch-row'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_fetch_row
Keybinding: none
PHP Function: mysql_fetch_row

`php-template-mysql-field-flags'

Menu: PHP -> Templates -> MySQL -> MySQL (Aff -> Field_flags) -> mysql_field_flags
Keybinding: none
PHP Function: mysql_field_flags

`php-template-mysql-field-len'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_len
Keybinding: none
PHP Function: mysql_field_len

`php-template-mysql-field-name'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_name
Keybinding: none
PHP Function: mysql_field_name

`php-template-mysql-field-seek'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_seek
Keybinding: none
PHP Function: mysql_field_seek

`php-template-mysql-field-table'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_table
Keybinding: none
PHP Function: mysql_field_table

`php-template-mysql-field-type'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_field_type
Keybinding: none
PHP Function: mysql_field_type

`php-template-mysql-free-result'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_free_result
Keybinding: none
PHP Function: mysql_free_result

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

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_client_info
Keybinding: none
PHP Function: mysql_get_client_info

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

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_host_info
Keybinding: none
PHP Function: mysql_get_host_info

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

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_proto_info
Keybinding: none
PHP Function: mysql_get_proto_info

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

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_get_server_info
Keybinding: none
PHP Function: mysql_get_server_info

`php-template-mysql-info'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_info
Keybinding: none
PHP Function: mysql_info

`php-template-mysql-insert-id'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_insert_id
Keybinding: none
PHP Function: mysql_insert_id

`php-template-mysql-list-dbs'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_dbs
Keybinding: none
PHP Function: mysql_list_dbs

`php-template-mysql-list-fields'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_fields
Keybinding: none
PHP Function: mysql_list_fields

`php-template-mysql-list-processes'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_processes
Keybinding: none
PHP Function: mysql_list_processes

`php-template-mysql-list-tables'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_list_tables
Keybinding: none
PHP Function: mysql_list_tables

`php-template-mysql-num-fields'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_num_fields
Keybinding: none
PHP Function: mysql_num_fields

`php-template-mysql-num-rows'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_num_rows
Keybinding: none
PHP Function: mysql_num_rows

`php-template-mysql-pconnect'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_pconnect
Keybinding: none
PHP Function: mysql_pconnect

`php-template-mysql-ping'

Menu: PHP -> Templates -> MySQL -> MySQL (Field_lan -> Ping) -> mysql_ping
Keybinding: none
PHP Function: mysql_ping

`php-template-mysql-query'

Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_query
Keybinding: none
PHP Function: mysql_query

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

Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_real_escape_string
Keybinding: none
PHP Function: mysql_real_escape_string

`php-template-mysql-result'

Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_result
Keybinding: none
PHP Function: mysql_result

`php-template-mysql-select-db'

Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_select_db
Keybinding: none
PHP Function: mysql_select_db

`php-template-mysql-stat'

Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_stat
Keybinding: none
PHP Function: mysql_stat

`php-template-mysql-tablename'

Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_tablename
Keybinding: none
PHP Function: mysql_tablename

`php-template-mysql-thread-id'

Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_thread_id
Keybinding: none
PHP Function: mysql_thread_id

`php-template-mysql-unbuffered-query'

Menu: PHP -> Templates -> MySQL -> MySQL (Query -> Unbuff) -> mysql_unbuffered_query
Keybinding: none
PHP Function: mysql_unbuffered_query


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.15 Others

`php-template-class'

Menu: PHP -> Templates -> Others -> class
Keybinding: none
PHP Function: class

`php-template-function'

Menu: PHP -> Templates -> Others -> function
Keybinding: none
PHP Function: function


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.16 Regular Expressions

`php-template-ereg-replace'

Menu: PHP -> Templates -> Regular Expressions -> ereg_replace
Keybinding: none
PHP Function: ereg_replace

`php-template-ereg'

Menu: PHP -> Teemplates -> Regular Expressions -> ereg
Keybinding: none
PHP Function: ereg

`php-template-eregi-replace'

Menu: PHP -> Teemplates -> Regular Expressions -> eregi_replace
Keybinding: none
PHP Function: eregi_replace

`php-template-eregi'

Menu: PHP -> Templates -> Regular Expressions -> eregi
Keybinding: none
PHP Function: eregi

`php-template-split'

Menu: PHP -> Teemplates -> Regular Expressions -> split
Keybinding: none
PHP Function: split

`php-template-spliti'

Menu: PHP -> Teemplates -> Regular Expressions -> spliti
Keybinding: none
PHP Function: spliti

`php-template-sql-regcase'

Menu: PHP -> Templates -> Regular Expressions -> sql_regcase
Keybinding: none
PHP Function: sql_regcase


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.17 Session

`php-template-session-cache-expire'

Menu: PHP -> Templates -> Session -> session_cache_expire
Keybinding: none
PHP Function: session_cache_expire

`php-template-session-cache-limiter'

Menu: PHP -> Templates -> Session -> session_cache_limiter
Keybinding: none
PHP Function: session_cache_limiter

`php-template-session-commit'

Menu: PHP -> Templates -> Session -> session_commit
Keybinding: none
PHP Function: session_commit

`php-template-session-decode'

Menu: PHP -> Templates -> Session -> session_decode
Keybinding: none
PHP Function: session_decode

`php-template-session-destroy'

Menu: PHP -> Templates -> Session -> session_destroy
Keybinding: none
PHP Function: session_destroy

`php-template-session-encode'

Menu: PHP -> Templates -> Session -> session_encode
Keybinding: none
PHP Function: session_encode

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

Menu: PHP -> Templates -> Session -> session_get_cookie_params
Keybinding: none
PHP Function: session_get_cookie_params

`php-template-session-id'

Menu: PHP -> Templates -> Session -> session_id
Keybinding: none
PHP Function: session_id

`php-template-session-is-registered'

Menu: PHP -> Templates -> Session -> session_is_registered
Keybinding: none
PHP Function: session_is_registered

`php-template-session-module-name'

Menu: PHP -> Templates -> Session -> session_module_name
Keybinding: none
PHP Function: session_module_name

`php-template-session-name'

Menu: PHP -> Templates -> Session -> session_name
Keybinding: none
PHP Function: session_name

`php-template-session-regenerate-id'

Menu: PHP -> Templates -> Session -> session_regenerate_id
Keybinding: none
PHP Function: session_regenerate_id

`php-template-session-register'

Menu: PHP -> Templates -> Session -> session_register
Keybinding: none
PHP Function: session_register

`php-template-session-save-path'

Menu: PHP -> Templates -> Session -> session_save_path
Keybinding: none
PHP Function: session_save_path

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

Menu: PHP -> Templates -> Session -> session_set_cookie_params
Keybinding: none
PHP Function: session_set_cookie_params

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

Menu: PHP -> Templates -> Session -> session_set_save_handler
Keybinding: none
PHP Function: session_set_save_handler

`php-template-session-start'

Menu: PHP -> Templates -> Session -> session_start
Keybinding: none
PHP Function: session_start

`php-template-session-unregister'

Menu: PHP -> Templates -> Session -> session_unregister
Keybinding: none
PHP Function: session_unregister

`php-template-session-unset'

Menu: PHP -> Templates -> Session -> session_unset
Keybinding: none
PHP Function: session_unset

`php-template-session-write-close'

Menu: PHP -> Templates -> Session -> session_write_close
Keybinding: none
PHP Function: session_write_close


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.18 String

`php-template-addcslashes'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> addcslashes
Keybinding: none
PHP Function: addcslashes

`php-template-addslashes'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> addslashes
Keybinding: none
PHP Function: addslashes

`php-template-bin2hex'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> bin2hex
Keybinding: none
PHP Function: bin2hex

`php-template-chop'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> chop
Keybinding: none
PHP Function: chop

`php-template-chr'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> chr
Keybinding: none
PHP Function: chr

`php-template-chunk-split'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> chunk_split
Keybinding: none
PHP Function: chunk_split

`php-template-convert-cyr-string'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> convert_cyr_string
Keybinding: none
PHP Function: convert_cyr_string

`php-template-convert-uudecode'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> convert_uudecode
Keybinding: none
PHP Function: convert_uudecode

`php-template-convert-uuencode'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> convert_uuencode
Keybinding: none
PHP Function: convert_uuencode

`php-template-count-chars'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> count_chars
Keybinding: none
PHP Function: count_chars

`php-template-crc32'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> crc32
Keybinding: none
PHP Function: crc32

`php-template-crypt'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> crypt
Keybinding: none
PHP Function: crypt

`php-template-echo'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> echo
Keybinding: none
PHP Function: echo

`php-template-explode'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> explode
Keybinding: none
PHP Function: explode

`php-template-fprintf'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> fprintf
Keybinding: none
PHP Function: fprintf

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

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> get_html_translation_table
Keybinding: none
PHP Function: get_html_translation_table

`php-template-hebrev'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> hebrev
Keybinding: none
PHP Function: hebrev

`php-template-hebrevc'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> hebrevc
Keybinding: none
PHP Function: hebrevc

`php-template-html-entity-decode'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> html_entity_decode
Keybinding: none
PHP Function: html_entity_decode

`php-template-htmlentities'

Menu: PHP -> Templates -> String -> String (addcslashes -> htmlentities) -> htmlentities
Keybinding: none
PHP Function: htmlentities

`php-template-htmlspecialchars-decode'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> htmlspecialchars_decode
Keybinding: none
PHP Function: htmlspecialchars_decode

`php-template-htmlspecialchars'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> htmlspecialchars
Keybinding: none
PHP Function: htmlspecialchars

`php-template-implode'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> implode
Keybinding: none
PHP Function: implode

`php-template-join'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> join
Keybinding: none
PHP Function: join

`php-template-levenshtein'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> levenshtein
Keybinding: none
PHP Function: levenshtein

`php-template-localeconv'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> localeconv
Keybinding: none
PHP Function: localeconv

`php-template-ltrim'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> ltrim
Keybinding: none
PHP Function: ltrim

`php-template-md5-file'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> md5_file
Keybinding: none
PHP Function: md5_file

`php-template-md5'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> md5
Keybinding: none
PHP Function: md5

`php-template-metaphone'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> metaphone
Keybinding: none
PHP Function: metaphone

`php-template-money-format'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> money_format
Keybinding: none
PHP Function: money_format

`php-template-nl-langinfo'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> nl_langinfo
Keybinding: none
PHP Function: nl_langinfo

`php-template-nl2br'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> nl2br
Keybinding: none
PHP Function: nl2br

`php-template-number-format'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> number_format
Keybinding: none
PHP Function: number_format

`php-template-ord'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> ord
Keybinding: none
PHP Function: ord

`php-template-parse-str'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> parse_str
Keybinding: none
PHP Function: parse_str

`php-template-print'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> print
Keybinding: none
PHP Function: print

`php-template-printf'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> printf
Keybinding: none
PHP Function: printf

`php-template-quoted-printable-decode'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> quoted_printable_decode
Keybinding: none
PHP Function: quoted_printable_decode

`php-template-quotemeta'

Menu: PHP -> Templates -> String -> String (htmlspecialchars_decode -> quotemeta) -> quotemeta
Keybinding: none
PHP Function: quotemeta

`php-template-rtrim'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> rtrim
Keybinding: none
PHP Function: rtrim

`php-template-setlocale'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> setlocale
Keybinding: none
PHP Function: setlocale

`php-template-sha1-file'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> sha1_file
Keybinding: none
PHP Function: sha1_file

`php-template-sha1'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> sha1
Keybinding: none
PHP Function: sha1

`php-template-similar-text'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> similar_text
Keybinding: none
PHP Function: similar_text

`php-template-soundex'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> soundex
Keybinding: none
PHP Function: soundex

`php-template-sprintf'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> sprintf
Keybinding: none
PHP Function: sprintf

`php-template-sscanf'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> sscanf
Keybinding: none
PHP Function: sscanf

`php-template-str-ireplace'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_ireplace
Keybinding: none
PHP Function: str_ireplace

`php-template-str-pad'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_pad
Keybinding: none
PHP Function: str_pad

`php-template-str-repeat'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_repeat
Keybinding: none
PHP Function: str_repeat

`php-template-str-replace'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_replace
Keybinding: none
PHP Function: str_replace

`php-template-str-rot13'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_rot13
Keybinding: none
PHP Function: str_rot13

`php-template-str-shuffle'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_shuffle
Keybinding: none
PHP Function: str_shuffle

`php-template-str-split'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_split
Keybinding: none
PHP Function: str_split

`php-template-str-word-count'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> str_word_count
Keybinding: none
PHP Function: str_word_count

`php-template-strcasecmp'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> strcasecmp
Keybinding: none
PHP Function: strcasecmp

`php-template-strchr'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> strchr
Keybinding: none
PHP Function: strchr

`php-template-strcmp'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> strcmp
Keybinding: none
PHP Function: strcmp

`php-template-strcoll'

Menu: PHP -> Templates -> String -> String (rtrim -> strcoll) -> strcoll
Keybinding: none
PHP Function: strcoll

`php-template-strcspn'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strcspn
Keybinding: none
PHP Function: strcspn

`php-template-strip-tags'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strip_tags
Keybinding: none
PHP Function: strip_tags

`php-template-stripcslashes'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> stripcslashes
Keybinding: none
PHP Function: stripcslashes

`php-template-stripos'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> stripos
Keybinding: none
PHP Function: stripos

`php-template-stripslashes'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> stripslashes
Keybinding: none
PHP Function: stripslashes

`php-template-stristr'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> stristr
Keybinding: none
PHP Function: stristr

`php-template-strlen'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strlen
Keybinding: none
PHP Function: strlen

`php-template-strnatcasecmp'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strnatcasecmp
Keybinding: none
PHP Function: strnatcasecmp

`php-template-strnatcmp'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strnatcmp
Keybinding: none
PHP Function: strnatcmp

`php-template-strncasecmp'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strncasecmp
Keybinding: none
PHP Function: strncasecmp

`php-template-strncmp'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strncmp
Keybinding: none
PHP Function: strncmp

`php-template-strpbrk'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strpbrk
Keybinding: none
PHP Function: strpbrk

`php-template-strpos'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strpos
Keybinding: none
PHP Function: strpos

`php-template-strrchr'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strrchr
Keybinding: none
PHP Function: strrchr

`php-template-strrev'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strrev
Keybinding: none
PHP Function: strrev

`php-template-strripos'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strripos
Keybinding: none
PHP Function: strripos

`php-template-strrpos'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strrpos
Keybinding: none
PHP Function: strrpos

`php-template-strspn'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strspn
Keybinding: none
PHP Function: strspn

`php-template-strstr'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strstr
Keybinding: none
PHP Function: strstr

`php-template-strtok'

Menu: PHP -> Templates -> String -> String (strcspn -> strtok) -> strtok
Keybinding: none
PHP Function: strtok

`php-template-strtolower'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> strtolower
Keybinding: none
PHP Function: strtolower

`php-template-strtoupper'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> strtoupper
Keybinding: none
PHP Function: strtoupper

`php-template-strtr'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> strtr
Keybinding: none
PHP Function: strtr

`php-template-substr-compare'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr_compare
Keybinding: none
PHP Function: substr_compare

`php-template-substr-count'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr_count
Keybinding: none
PHP Function: substr_count

`php-template-substr-replace'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr_replace
Keybinding: none
PHP Function: substr_replace

`php-template-substr'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> substr
Keybinding: none
PHP Function: substr

`php-template-trim'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> trim
Keybinding: none
PHP Function: trim

`php-template-ucfirst'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> ucfirst
Keybinding: none
PHP Function: ucfirst

`php-template-ucwords'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> ucwords
Keybinding: none
PHP Function: ucwords

`php-template-vfprintf'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> vfprintf
Keybinding: none
PHP Function: vfprintf

`php-template-vprintf'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> vprintf
Keybinding: none
PHP Function: vprintf

`php-template-vsprintf'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> vsprintf
Keybinding: none
PHP Function: vsprintf

`php-template-wordwrap'

Menu: PHP -> Templates -> String -> String (strtolower -> wordwrap) -> wordwrap
Keybinding: none
PHP Function: wordwrap


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.19 Variable

`php-template-debug-zval-dump'

Menu: PHP -> Templates -> Variable -> debug_zval_dump
Keybinding: none
PHP Function: debug_zval_dump

`php-template-doubleval'

Menu: PHP -> Templates -> Variable -> doubleval
Keybinding: none
PHP Function: doubleval

`php-template-empty'

Menu: PHP -> Templates -> Variable -> empty
Keybinding: none
PHP Function: empty

`php-template-floatval'

Menu: PHP -> Templates -> Variable -> floatval
Keybinding: none
PHP Function: floatval

`php-template-get-defined-vars'

Menu: PHP -> Templates -> Variable -> get_defined_vars
Keybinding: none
PHP Function: get_defined_vars

`php-template-get-resource-type'

Menu: PHP -> Templates -> Variable -> get_resource_type
Keybinding: none
PHP Function: get_resource_type

`php-template-gettype'

Menu: PHP -> Templates -> Variable -> gettype
Keybinding: none
PHP Function: gettype

`php-template-import-request-variables'

Menu: PHP -> Templates -> Variable -> import_request_variables
Keybinding: none
PHP Function: import_request_variables

`php-template-intval'

Menu: PHP -> Templates -> Variable -> intval
Keybinding: none
PHP Function: intval

`php-template-is-array'

Menu: PHP -> Templates -> Variable -> is_array
Keybinding: none
PHP Function: is_array

`php-template-is-bool'

Menu: PHP -> Templates -> Variable -> is_bool
Keybinding: none
PHP Function: is_bool

`php-template-is-callable'

Menu: PHP -> Templates -> Variable -> is_callable
Keybinding: none
PHP Function: is_callable

`php-template-is-double'

Menu: PHP -> Templates -> Variable -> is_double
Keybinding: none
PHP Function: is_double

`php-template-is-float'

Menu: PHP -> Templates -> Variable -> is_float
Keybinding: none
PHP Function: is_float

`php-template-is-int'

Menu: PHP -> Templates -> Variable -> is_int
Keybinding: none
PHP Function: is_int

`php-template-is-integer'

Menu: PHP -> Templates -> Variable -> is_integer
Keybinding: none
PHP Function: is_integer

`php-template-is-long'

Menu: PHP -> Templates -> Variable -> is_long
Keybinding: none
PHP Function: is_long

`php-template-is-null'

Menu: PHP -> Templates -> Variable -> is_null
Keybinding: none
PHP Function: is_null

`php-template-is-numeric'

Menu: PHP -> Templates -> Variable -> is_numeric
Keybinding: none
PHP Function: is_numeric

`php-template-is-object'

Menu: PHP -> Templates -> Variable -> is_object
Keybinding: none
PHP Function: is_object

`php-template-is-real'

Menu: PHP -> Templates -> Variable -> is_real
Keybinding: none
PHP Function: is_real

`php-template-is-resource'

Menu: PHP -> Templates -> Variable -> is_resource
Keybinding: none
PHP Function: is_resource

`php-template-is-scalar'

Menu: PHP -> Templates -> Variable -> is_scalar
Keybinding: none
PHP Function: is_scalar

`php-template-is-string'

Menu: PHP -> Templates -> Variable -> is_string
Keybinding: none
PHP Function: is_string

`php-template-isset'

Menu: PHP -> Templates -> Variable -> isset
Keybinding: none
PHP Function: isset

`php-template-print-r'

Menu: PHP -> Templates -> Variable -> print_r
Keybinding: none
PHP Function: print_r

`php-template-serialize'

Menu: PHP -> Templates -> Variable -> serialize
Keybinding: none
PHP Function: serialize

`php-template-settype'

Menu: PHP -> Templates -> Variable -> settype
Keybinding: none
PHP Function: settype

`php-template-strval'

Menu: PHP -> Templates -> Variable -> strval
Keybinding: none
PHP Function: strval

`php-template-unserialize'

Menu: PHP -> Templates -> Variable -> unserialize
Keybinding: none
PHP Function: unserialize

`php-template-unset'

Menu: PHP -> Templates -> Variable -> unset
Keybinding: none
PHP Function: unset

`php-template-var-dump'

Menu: PHP -> Templates -> Variable -> var_dump
Keybinding: none
PHP Function: var_dump

`php-template-var-export'

Menu: PHP -> Templates -> Variable -> var_export
Keybinding: none
PHP Function: var_export


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.20 XML

`php-template-utf8-decode'

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> utf8_decode
Keybinding: none
PHP Function: utf8_decode

`php-template-utf8-encode'

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> utf8_encode
Keybinding: none
PHP Function: utf8_encode

`php-template-xml-error-string'

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_error_string
Keybinding: none
PHP Function: xml_error_string

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_get_current_byte_index
Keybinding: none
PHP Function: xml_get_current_byte_index

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_get_current_column_number
Keybinding: none
PHP Function: xml_get_current_column_number

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_get_current_line_number
Keybinding: none
PHP Function: xml_get_current_line_number

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_get_error_code
Keybinding: none
PHP Function: xml_get_error_code

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parse_into_struct
Keybinding: none
PHP Function: xml_parse_into_struct

`php-template-xml-parse'

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parse
Keybinding: none
PHP Function: xml_parse

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_create_ns
Keybinding: none
PHP Function: xml_parser_create_ns

`php-template-xml-parser-create'

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_create
Keybinding: none
PHP Function: xml_parser_create

`php-template-xml-parser-free'

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_free
Keybinding: none
PHP Function: xml_parser_free

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_get_option
Keybinding: none
PHP Function: xml_parser_get_option

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_parser_set_option
Keybinding: none
PHP Function: xml_parser_set_option

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_character_data_handler
Keybinding: none
PHP Function: xml_set_character_data_handler

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_default_handler
Keybinding: none
PHP Function: xml_set_default_handler

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_element_handler
Keybinding: none
PHP Function: xml_set_element_handler

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_end_namespace_decl_handler
Keybinding: none
PHP Function: xml_set_end_namespace_decl_handler

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

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_external_entity_ref_handler
Keybinding: none
PHP Function: xml_set_external_entity_ref_handler

`php-template-xml-set-notation-decl-handler'

Menu: PHP -> Templates -> XML -> XML (utf8_decode -> xml_set_notation_decl_handler) -> xml_set_notation_decl_handler
Keybinding: none
PHP Function: xml_set_notation_decl_handler

`php-template-xml-set-object'

Menu: PHP -> Templates -> XML -> XML (xml_set_object -> xml_set_unparsed_entity_decl_handler) -> xml_set_object
Keybinding: none
PHP Function: xml_set_object

`php-template-xml-set-processing-instruction-handler'

Menu: PHP -> Templates -> XML -> XML (xml_set_object -> xml_set_unparsed_entity_decl_handler) -> xml_set_processing_instruction_handler
Keybinding: none
PHP Function: xml_set_processing_instruction_handler

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

Menu: PHP -> Templates -> XML -> XML (xml_set_object -> xml_set_unparsed_entity_decl_handler) -> xml_set_start_namespace_decl_handler
Keybinding: none
PHP Function: xml_set_start_namespace_decl_handler

`php-template-xml-set-unparsed-entity-decl-handler'

Menu: PHP -> Templates -> XML -> XML (xml_set_object -> xml_set_unparsed_entity_decl_handler) -> xml_set_unparsed_entity_decl_handler
Keybinding: none
PHP Function: xml_set_unparsed_entity_decl_handler


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

8.2.21 Non-PHP Functions

`php-template-header'

Menu: PHP -> Templates -> Insert Header
Keybinding: none
Description: This function is used to insert a header in the current buffer.

`php-template-footer'

Menu: PHP -> Templates -> Insert Footer
Keybinding: none
Description: This function is used to insert a footer in the current buffer.

`php-template-insert-date'

Menu: PHP -> Templates -> Insert Date
Keybinding: none
Description: This function is used to insert the date in the current buffer.

`php-template-modify'

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] [ ? ]

9. Bugs, Help

  • To report bugs: Bugtracker
  • To obtain help you can post on the dedicated forum: Forum

[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

Index

Jump to:   .  
A   B   C   D   E   F   H   I   M   N   O   P   R   S   T   V   X  
Index Entry Section

.
.NET8.2.1 .NET

A
Apache8.2.2 Apache
Array Functions8.2.3 Array Functions

B
Bugs9. Bugs, Help

C
Completion5. Completion
Control Structures8.2.4 Control Structures
Customization4.2.1 Customization
Customization4.3.1 Customization
Customization5.1 Customization
Customization6.1 Customization
Customization7.1 Customization
Customization8.1 Customization

D
Date/Time Functions8.2.5 Date/Time Functions
Directory Functions8.2.6 Directory Functions

E
Error and Logging8.2.7 Error and Logging

F
File System8.2.8 File System
Functions3.2 Functions
Functions4.1.1 Functions
Functions4.3.2 Functions
Functions6.2 Functions
Functions7.2 Functions
Functions8.2 Functions
Functions8.2.9 Functions

H
Header3.1.3.1 Header
Help9. Bugs, Help

I
Image8.2.10 Image
Indentation6. Indentation

M
Mail8.2.11 Mail
Mathematical8.2.12 Mathematical
Menu3.1.2 Menu
Menu4. Menus
Menu Index4.2 Index
Menu PHP4.1 PHP
Menu Sources4.3 Sources
Miscellaneous3.1.6 Miscellaneous
Miscellaneous8.2.13 Miscellaneous
Mode3.1.1 Mode
Mode3.2.1 Mode
MySQL8.2.14 MySQL

N
Non-PHP Functions8.2.21 Non-PHP Functions

O
Others8.2.15 Others

P
Paramters3.1 Parameters
PHPDocumentor3.1.5 PHPDocumentor

R
Regular Expressions8.2.16 Regular Expressions

S
Session8.2.17 Session
String8.2.18 String
Stuttering7. Stuttering
Style3.1.4 Style

T
Templates3.1.3 Templates
Templates8. Templates

V
Variable8.2.19 Variable

X
XML8.2.20 XML

Jump to:   .  
A   B   C   D   E   F   H   I   M   N   O   P   R   S   T   V   X  

[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

Customizations variables Index

Jump to:   P  
Index Entry Section

P
php-add-fclose-with-fopen3.1.3 Templates
php-add-mysql-close-when-connect3.1.3 Templates
php-basic-offset3.1.4 Style
php-basic-offset6.1 Customization
php-class-tags3.1.5 PHPDocumentor
php-compay-name3.1.3.1 Header
php-copyright-string3.1.3.1 Header
php-date-format3.1.3.1 Header
php-electric-mode3.1.1 Mode
php-electric-mode8.1 Customization
php-enable-phpdocumentor-tags3.1.5 PHPDocumentor
php-file-footer3.1.3.1 Header
php-file-header3.1.3.1 Header
php-function-tags3.1.5 PHPDocumentor
php-include-in-parenthesis3.1.3 Templates
php-indent-tabs-mode3.1.1 Mode
php-indent-tabs-mode6.1 Customization
php-index-menu3.1.2 Menu
php-index-menu4.2.1 Customization
php-index-menu-auto-rescan3.1.2 Menu
php-index-menu-auto-rescan4.2.1 Customization
php-intelligent-tab3.1.6 Miscellaneous
php-intelligent-tab5.1 Customization
php-modify-date-on-saving3.1.3.1 Header
php-modify-date-prefix-string3.1.3.1 Header
php-source-file-menu3.1.2 Menu
php-source-file-menu4.3.1 Customization
php-stutter-mode3.1.1 Mode
php-stutter-mode7.1 Customization
php-word-completion-case-sensitive3.1.6 Miscellaneous
php-word-completion-case-sensitive5.1 Customization
php-word-completion-in-minibuffer3.1.6 Miscellaneous
php-word-completion-in-minibuffer5.1 Customization

Jump to:   P  

[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

Functions Index

Jump to:   I   P  
Index Entry Section

I
indent-according-to-mode6.2 Functions

P
php-add-source-files-menu4.3.2 Functions
php-doc-mode4.1.1 Functions
php-electric-mode3.2.1 Mode
php-indent-buffer6.2 Functions
php-indent-region6.2 Functions
php-show-messages4.1.1 Functions
php-stutter-mode3.2.1 Mode
php-template-abs8.2.12 Mathematical
php-template-acos8.2.12 Mathematical
php-template-acosh8.2.12 Mathematical
php-template-addcslashes8.2.18 String
php-template-addslashes8.2.18 String
php-template-apache-child-terminate8.2.2 Apache
php-template-apache-get-modules8.2.2 Apache
php-template-apache-get-version8.2.2 Apache
php-template-apache-getenv8.2.2 Apache
php-template-apache-lookup-uri8.2.2 Apache
php-template-apache-note8.2.2 Apache
php-template-apache-request-headers8.2.2 Apache
php-template-apache-reset-timeout8.2.2 Apache
php-template-apache-response-headers8.2.2 Apache
php-template-apache-setenv8.2.2 Apache
php-template-array8.2.3 Array Functions
php-template-array-change-key-case8.2.3 Array Functions
php-template-array-chunk8.2.3 Array Functions
php-template-array-combine8.2.3 Array Functions
php-template-array-count-values8.2.3 Array Functions
php-template-array-diff8.2.3 Array Functions
php-template-array-diff-assoc8.2.3 Array Functions
php-template-array-diff-key8.2.3 Array Functions
php-template-array-diff-uassoc8.2.3 Array Functions
php-template-array-diff-ukey8.2.3 Array Functions
php-template-array-exists8.2.3 Array Functions
php-template-array-fill8.2.3 Array Functions
php-template-array-filter8.2.3 Array Functions
php-template-array-flip8.2.3 Array Functions
php-template-array-intersect8.2.3 Array Functions
php-template-array-intersect-assoc8.2.3 Array Functions
php-template-array-intersect-key8.2.3 Array Functions
php-template-array-intersect-uassoc8.2.3 Array Functions
php-template-array-intersect-ukey8.2.3 Array Functions
php-template-array-keys8.2.3 Array Functions
php-template-array-map8.2.3 Array Functions
php-template-array-merge8.2.3 Array Functions
php-template-array-merge-recursive8.2.3 Array Functions
php-template-array-multisort8.2.3 Array Functions
php-template-array-pad8.2.3 Array Functions
php-template-array-pop8.2.3 Array Functions
php-template-array-product8.2.3 Array Functions
php-template-array-push8.2.3 Array Functions
php-template-array-rand8.2.3 Array Functions
php-template-array-reduce8.2.3 Array Functions
php-template-array-reverse8.2.3 Array Functions
php-template-array-search8.2.3 Array Functions
php-template-array-shift8.2.3 Array Functions
php-template-array-slice8.2.3 Array Functions
php-template-array-splice8.2.3 Array Functions
php-template-array-sum8.2.3 Array Functions
php-template-array-udiff8.2.3 Array Functions
php-template-array-udiff-assoc8.2.3 Array Functions
php-template-array-udiff-uassoc8.2.3 Array Functions
php-template-array-uintersect8.2.3 Array Functions
php-template-array-uintersect-assoc8.2.3 Array Functions
php-template-array-uintersect-uassoc8.2.3 Array Functions
php-template-array-unique8.2.3 Array Functions
php-template-array-unshift8.2.3 Array Functions
php-template-array-values8.2.3 Array Functions
php-template-array-walk8.2.3 Array Functions
php-template-array-walk-recursive8.2.3 Array Functions
php-template-arsort8.2.3 Array Functions
php-template-ascii2ebcdic8.2.2 Apache
php-template-asin8.2.12 Mathematical
php-template-asinh8.2.12 Mathematical
php-template-asort8.2.3 Array Functions
php-template-atan8.2.12 Mathematical
php-template-atan28.2.12 Mathematical
php-template-atanh8.2.12 Mathematical
php-template-base-convert8.2.12 Mathematical
php-template-basename8.2.8 File System
php-template-bin2hex8.2.18 String
php-template-bindec8.2.12 Mathematical
php-template-break8.2.4 Control Structures
php-template-call-user-func8.2.9 Functions
php-template-call-user-func-array8.2.9 Functions
php-template-ceil8.2.12 Mathematical
php-template-chdir8.2.6 Directory Functions
php-template-checkdate8.2.5 Date/Time Functions
php-template-chgrp8.2.8 File System
php-template-chmod8.2.8 File System
php-template-chop8.2.18 String
php-template-chown8.2.8 File System
php-template-chr8.2.18 String
php-template-chroot8.2.6 Directory Functions
php-template-chunk-split8.2.18 String
php-template-class8.2.15 Others
php-template-clearstatcache8.2.8 File System
php-template-closedir8.2.6 Directory Functions
php-template-compact8.2.3 Array Functions
php-template-connection-aborted8.2.13 Miscellaneous
php-template-connection-status8.2.13 Miscellaneous
php-template-connection-timeout8.2.13 Miscellaneous
php-template-constant8.2.13 Miscellaneous
php-template-continue8.2.4 Control Structures
php-template-convert-cyr-string8.2.18 String
php-template-convert-uudecode8.2.18 String
php-template-convert-uuencode8.2.18 String
php-template-copy8.2.8 File System
php-template-cos8.2.12 Mathematical
php-template-cosh8.2.12 Mathematical
php-template-count8.2.3 Array Functions
php-template-count-chars8.2.18 String
php-template-crc328.2.18 String
php-template-create-function8.2.9 Functions
php-template-crypt8.2.18 String
php-template-current8.2.3 Array Functions
php-template-date8.2.5 Date/Time Functions
php-template-date-default-timezone-get8.2.5 Date/Time Functions
php-template-date-default-timezone-set8.2.5 Date/Time Functions
php-template-date-sunrise8.2.5 Date/Time Functions
php-template-date-sunset8.2.5 Date/Time Functions
php-template-debug-backtrace8.2.7 Error and Logging
php-template-debug-print-backtrace8.2.7 Error and Logging
php-template-debug-zval-dump8.2.19 Variable
php-template-decbin8.2.12 Mathematical
php-template-dechex8.2.12 Mathematical
php-template-decoct8.2.12 Mathematical
php-template-define8.2.13 Miscellaneous
php-template-defined8.2.13 Miscellaneous
php-template-deg2rad8.2.12 Mathematical
php-template-delete8.2.8 File System
php-template-die8.2.13 Miscellaneous
php-template-dir8.2.6 Directory Functions
php-template-dirname8.2.8 File System
php-template-disk-free-space8.2.8 File System
php-template-disk-total-space8.2.8 File System
php-template-diskfreespace8.2.8 File System
php-template-do-while8.2.4 Control Structures
php-template-dotnet-load8.2.1 .NET
php-template-doubleval8.2.19 Variable
php-template-each8.2.3 Array Functions
php-template-ebcdic2ascii8.2.2 Apache
php-template-echo8.2.18 String
php-template-else8.2.4 Control Structures
php-template-elseif8.2.4 Control Structures
php-template-empty8.2.19 Variable
php-template-end8.2.3 Array Functions
php-template-ereg8.2.16 Regular Expressions
php-template-ereg-replace8.2.16 Regular Expressions
php-template-eregi8.2.16 Regular Expressions
php-template-eregi-replace8.2.16 Regular Expressions
php-template-error-log8.2.7 Error and Logging
php-template-error-reporting8.2.7 Error and Logging
php-template-eval8.2.13 Miscellaneous
php-template-exit8.2.13 Miscellaneous
php-template-exp8.2.12 Mathematical
php-template-explode8.2.18 String
php-template-expm18.2.12 Mathematical
php-template-extract8.2.3 Array Functions
php-template-ezmlm-hash8.2.11 Mail
php-template-fclose8.2.8 File System
php-template-feof8.2.8 File System
php-template-fflush8.2.8 File System
php-template-fgetc8.2.8 File System
php-template-fgetcsv8.2.8 File System
php-template-fgets8.2.8 File System
php-template-fgetss8.2.8 File System
php-template-file8.2.8 File System
php-template-file-exists8.2.8 File System
php-template-file-get-contents8.2.8 File System
php-template-file-put-contents8.2.8 File System
php-template-fileatime8.2.8 File System
php-template-filectime8.2.8 File System
php-template-filegroup8.2.8 File System
php-template-fileinode8.2.8 File System
php-template-filemtime8.2.8 File System
php-template-fileowner8.2.8 File System
php-template-fileperms8.2.8 File System
php-template-filesize8.2.8 File System
php-template-filetype8.2.8 File System
php-template-floatval8.2.19 Variable
php-template-flock8.2.8 File System
php-template-floor8.2.12 Mathematical
php-template-fmod8.2.12 Mathematical
php-template-fnmatch8.2.8 File System
php-template-footer8.2.21 Non-PHP Functions
php-template-fopen8.2.8 File System
php-template-for8.2.4 Control Structures
php-template-foreach8.2.4 Control Structures
php-template-fpassthru8.2.8 File System
php-template-fprintf8.2.18 String
php-template-fputcsv8.2.8 File System
php-template-fread8.2.8 File System
php-template-fseek8.2.8 File System
php-template-fstat8.2.8 File System
php-template-ftell8.2.8 File System
php-template-ftruncate8.2.8 File System
php-template-func-get-arg8.2.9 Functions
php-template-func-get-args8.2.9 Functions
php-template-func-num-args8.2.9 Functions
php-template-function8.2.15 Others
php-template-function-exists8.2.9 Functions
php-template-fwrite8.2.8 File System
php-template-fwrite8.2.8 File System
php-template-gd-info8.2.10 Image
php-template-get-browser8.2.13 Miscellaneous
php-template-get-defined-functions8.2.9 Functions
php-template-get-defined-vars8.2.19 Variable
php-template-get-html-translation-table8.2.18 String
php-template-get-resource-type8.2.19 Variable
php-template-getallheaders8.2.2 Apache
php-template-getcwd8.2.6 Directory Functions
php-template-getdate8.2.5 Date/Time Functions
php-template-getimagesize8.2.10 Image
php-template-getrandmax8.2.12 Mathematical
php-template-gettimeofday8.2.5 Date/Time Functions
php-template-gettype8.2.19 Variable
php-template-glob8.2.8 File System
php-template-gmdate8.2.5 Date/Time Functions
php-template-gmmktime8.2.5 Date/Time Functions
php-template-gmstrftime8.2.5 Date/Time Functions
php-template-halt-compiler8.2.13 Miscellaneous
php-template-header8.2.21 Non-PHP Functions
php-template-hebrev8.2.18 String
php-template-hebrevc8.2.18 String
php-template-hexdec8.2.12 Mathematical
php-template-highlight-file8.2.13 Miscellaneous
php-template-highlight-string8.2.13 Miscellaneous
php-template-html-entity-decode8.2.18 String
php-template-htmlentities8.2.18 String
php-template-htmlspecialchars8.2.18 String
php-template-htmlspecialchars-decode8.2.18 String
php-template-hypot8.2.12 Mathematical
php-template-idate8.2.5 Date/Time Functions
php-template-if8.2.4 Control Structures
php-template-ignore-user-abort8.2.13 Miscellaneous
php-template-image-type-to-extension8.2.10 Image
php-template-image-type-to-mime-type8.2.10 Image
php-template-image2wbmp8.2.10 Image
php-template-imagealphablending8.2.10 Image
php-template-imageantialias8.2.10 Image
php-template-imagearc8.2.10 Image
php-template-imagechar8.2.10 Image
php-template-imagecharup8.2.10 Image
php-template-imagecolorallocate8.2.10 Image
php-template-imagecolorallocatealpha8.2.10 Image
php-template-imagecolorat8.2.10 Image
php-template-imagecolorclosest8.2.10 Image
php-template-imagecolorclosestalpha8.2.10 Image
php-template-imagecolorclosesthwb8.2.10 Image
php-template-imagecolordeallocate8.2.10 Image
php-template-imagecolorexact8.2.10 Image
php-template-imagecolorexactalpha8.2.10 Image
php-template-imagecolormatch8.2.10 Image
php-template-imagecolorresolve8.2.10 Image
php-template-imagecolorresolvealpha8.2.10 Image
php-template-imagecolorset8.2.10 Image
php-template-imagecolorsforindex8.2.10 Image
php-template-imagecolorstotal8.2.10 Image
php-template-imagecolortransparent8.2.10 Image
php-template-imageconvolution8.2.10 Image
php-template-imagecopy8.2.10 Image
php-template-imagecopymerge8.2.10 Image
php-template-imagecopymergegray8.2.10 Image
php-template-imagecopyresampled8.2.10 Image
php-template-imagecopyresized8.2.10 Image
php-template-imagecreate8.2.10 Image
php-template-imagecreatefromgd8.2.10 Image
php-template-imagecreatefromgd28.2.10 Image
php-template-imagecreatefromgd2part8.2.10 Image
php-template-imagecreatefromgif8.2.10 Image
php-template-imagecreatefromjpeg8.2.10 Image
php-template-imagecreatefrompng8.2.10 Image
php-template-imagecreatefromstring8.2.10 Image
php-template-imagecreatefromwbmp8.2.10 Image
php-template-imagecreatefromxbm8.2.10 Image
php-template-imagecreatefromxpm8.2.10 Image
php-template-imagecreatetruecolor8.2.10 Image
php-template-imagedashedline8.2.10 Image
php-template-imagedestroy8.2.10 Image
php-template-imageellipse8.2.10 Image
php-template-imagefill8.2.10 Image
php-template-imagefilledarc8.2.10 Image
php-template-imagefilledellipse8.2.10 Image
php-template-imagefilledpolygon8.2.10 Image
php-template-imagefilledrectangle8.2.10 Image
php-template-imagefilltoborder8.2.10 Image
php-template-imagefilter8.2.10 Image
php-template-imagefontheight8.2.10 Image
php-template-imagefontwidth8.2.10 Image
php-template-imageftbbox8.2.10 Image
php-template-imagefttext8.2.10 Image
php-template-imagegammacorrect8.2.10 Image
php-template-imagegd8.2.10 Image
php-template-imagegd28.2.10 Image
php-template-imagegif8.2.10 Image
php-template-imageinterlace8.2.10 Image
php-template-imageistruecolor8.2.10 Image
php-template-imagejpeg8.2.10 Image
php-template-imagelayereffect8.2.10 Image
php-template-imageline8.2.10 Image
php-template-imageloadfont8.2.10 Image
php-template-imagepalettecopy8.2.10 Image
php-template-imagepng8.2.10 Image
php-template-imagepolygon8.2.10 Image
php-template-imagepsbbox8.2.10 Image
php-template-imagepsencodefont8.2.10 Image
php-template-imagepsextendfont8.2.10 Image
php-template-imagepsfreefont8.2.10 Image
php-template-imagepsloadfont8.2.10 Image
php-template-imagepsslantfont8.2.10 Image
php-template-imagepstext8.2.10 Image
php-template-imagerectangle8.2.10 Image
php-template-imagerotate8.2.10 Image
php-template-imagesavealpha8.2.10 Image
php-template-imagesetbrush8.2.10 Image
php-template-imagesetpixel8.2.10 Image
php-template-imagesetstyle8.2.10 Image
php-template-imagesetthickness8.2.10 Image
php-template-imagesettile8.2.10 Image
php-template-imagestring8.2.10 Image
php-template-imagestringup8.2.10 Image
php-template-imagesx8.2.10 Image
php-template-imagesy8.2.10 Image
php-template-imagetruecolortopalette8.2.10 Image
php-template-imagettfbbox8.2.10 Image
php-template-imagettftext8.2.10 Image
php-template-imagetypes8.2.10 Image
php-template-imagewbmp8.2.10 Image
php-template-imagexbm8.2.10 Image
php-template-implode8.2.18 String
php-template-import-request-variables8.2.19 Variable
php-template-in-array8.2.3 Array Functions
php-template-include8.2.4 Control Structures
php-template-include-once8.2.4 Control Structures
php-template-insert-date8.2.21 Non-PHP Functions
php-template-intval8.2.19 Variable
php-template-iptcembed8.2.10 Image
php-template-iptcparse8.2.10 Image
php-template-is-array8.2.19 Variable
php-template-is-bool8.2.19 Variable
php-template-is-callable8.2.19 Variable
php-template-is-dir8.2.8 File System
php-template-is-double8.2.19 Variable
php-template-is-executable8.2.8 File System
php-template-is-file8.2.8 File System
php-template-is-finite8.2.12 Mathematical
php-template-is-float8.2.19 Variable
php-template-is-infinite8.2.12 Mathematical
php-template-is-int8.2.19 Variable
php-template-is-integer8.2.19 Variable
php-template-is-link8.2.8 File System
php-template-is-long8.2.19 Variable
php-template-is-nan8.2.12 Mathematical
php-template-is-null8.2.19 Variable
php-template-is-numeric8.2.19 Variable
php-template-is-object8.2.19 Variable
php-template-is-readable8.2.8 File System
php-template-is-real8.2.19 Variable
php-template-is-resource8.2.19 Variable
php-template-is-scalar8.2.19 Variable
php-template-is-string8.2.19 Variable
php-template-is-uploaded-file8.2.8 File System
php-template-is-writable8.2.8 File System
php-template-is-writable8.2.8 File System
php-template-isset8.2.19 Variable
php-template-join8.2.18 String
php-template-jpeg2wbmp8.2.10 Image
php-template-key8.2.3 Array Functions
php-template-krsort8.2.3 Array Functions
php-template-ksort8.2.3 Array Functions
php-template-lcg-value8.2.12 Mathematical
php-template-levenshtein8.2.18 String
php-template-link8.2.8 File System
php-template-linkinfo8.2.8 File System
php-template-list8.2.3 Array Functions
php-template-localeconv8.2.18 String
php-template-localtime8.2.5 Date/Time Functions
php-template-log8.2.12 Mathematical
php-template-log108.2.12 Mathematical
php-template-log1p8.2.12 Mathematical
php-template-lstat8.2.8 File System
php-template-ltrim8.2.18 String
php-template-mail8.2.11 Mail
php-template-max8.2.12 Mathematical
php-template-md58.2.18 String
php-template-md5-file8.2.18 String
php-template-metaphone8.2.18 String
php-template-microtime8.2.5 Date/Time Functions
php-template-min8.2.12 Mathematical
php-template-mkdir8.2.8 File System
php-template-mktime8.2.5 Date/Time Functions
php-template-modify8.2.21 Non-PHP Functions
php-template-money-format8.2.18 String
php-template-move-uploaded-file8.2.8 File System
php-template-mt-getrandmax8.2.12 Mathematical
php-template-mt-rand8.2.12 Mathematical
php-template-mt-srand8.2.12 Mathematical
php-template-mysql-affected-rows8.2.14 MySQL
php-template-mysql-change-user8.2.14 MySQL
php-template-mysql-client-encoding8.2.14 MySQL
php-template-mysql-close8.2.14 MySQL
php-template-mysql-connect8.2.14 MySQL
php-template-mysql-create-db8.2.14 MySQL
php-template-mysql-data-seek8.2.14 MySQL
php-template-mysql-db-name8.2.14 MySQL
php-template-mysql-db-query8.2.14 MySQL
php-template-mysql-drop-db8.2.14 MySQL
php-template-mysql-errno8.2.14 MySQL
php-template-mysql-error8.2.14 MySQL
php-template-mysql-escape-string8.2.14 MySQL
php-template-mysql-fetch-array8.2.14 MySQL
php-template-mysql-fetch-assoc8.2.14 MySQL
php-template-mysql-fetch-field8.2.14 MySQL
php-template-mysql-fetch-lengths8.2.14 MySQL
php-template-mysql-fetch-object8.2.14 MySQL
php-template-mysql-fetch-row8.2.14 MySQL
php-template-mysql-field-flags8.2.14 MySQL
php-template-mysql-field-len8.2.14 MySQL
php-template-mysql-field-name8.2.14 MySQL
php-template-mysql-field-seek8.2.14 MySQL
php-template-mysql-field-table8.2.14 MySQL
php-template-mysql-field-type8.2.14 MySQL
php-template-mysql-free-result8.2.14 MySQL
php-template-mysql-get-client-info8.2.14 MySQL
php-template-mysql-get-host-info8.2.14 MySQL
php-template-mysql-get-proto-info8.2.14 MySQL
php-template-mysql-get-server-info8.2.14 MySQL
php-template-mysql-info8.2.14 MySQL
php-template-mysql-insert-id8.2.14 MySQL
php-template-mysql-list-dbs8.2.14 MySQL
php-template-mysql-list-fields8.2.14 MySQL
php-template-mysql-list-processes8.2.14 MySQL
php-template-mysql-list-tables8.2.14 MySQL
php-template-mysql-num-fields8.2.14 MySQL
php-template-mysql-num-rows8.2.14 MySQL
php-template-mysql-pconnect8.2.14 MySQL
php-template-mysql-ping8.2.14 MySQL
php-template-mysql-query8.2.14 MySQL
php-template-mysql-real-escape-string8.2.14 MySQL
php-template-mysql-result8.2.14 MySQL
php-template-mysql-select-db8.2.14 MySQL
php-template-mysql-stat8.2.14 MySQL
php-template-mysql-tablename8.2.14 MySQL
php-template-mysql-thread-id8.2.14 MySQL
php-template-mysql-unbuffered-query8.2.14 MySQL
php-template-natcasesort8.2.3 Array Functions
php-template-natsort8.2.3 Array Functions
php-template-next8.2.3 Array Functions
php-template-nl-langinfo8.2.18 String
php-template-nl2br8.2.18 String
php-template-number-format8.2.18 String
php-template-octdec8.2.12 Mathematical
php-template-opendir8.2.6 Directory Functions
php-template-ord8.2.18 String
php-template-pack8.2.13 Miscellaneous
php-template-parse-ini-file8.2.8 File System
php-template-parse-str8.2.18 String
php-template-pathinfo8.2.8 File System
php-template-pclose8.2.8 File System
php-template-php-check-syntax8.2.13 Miscellaneous
php-template-php-strip-whitespace8.2.13 Miscellaneous
php-template-pi8.2.12 Mathematical
php-template-png2wbmp8.2.10 Image
php-template-popen8.2.8 File System
php-template-pos8.2.3 Array Functions
php-template-pow8.2.12 Mathematical
php-template-prev8.2.3 Array Functions
php-template-print8.2.18 String
php-template-print-r8.2.19 Variable
php-template-printf8.2.18 String
php-template-quoted-printable-decode8.2.18 String
php-template-quotemeta8.2.18 String
php-template-rad2deg8.2.12 Mathematical
php-template-rand8.2.12 Mathematical
php-template-range8.2.3 Array Functions
php-template-readdir8.2.6 Directory Functions
php-template-readfile8.2.8 File System
php-template-readlink8.2.8 File System
php-template-realpath8.2.8 File System
php-template-register-shutdown-function8.2.9 Functions
php-template-register-tick-function8.2.9 Functions
php-template-rename8.2.8 File System
php-template-require8.2.4 Control Structures
php-template-require-once8.2.4 Control Structures
php-template-reset8.2.3 Array Functions
php-template-restore-error-handler8.2.7 Error and Logging
php-template-restore-exception-handler8.2.7 Error and Logging
php-template-return8.2.4 Control Structures
php-template-rewind8.2.8 File System
php-template-rewinddir8.2.6 Directory Functions
php-template-rmdir8.2.8 File System
php-template-round8.2.12 Mathematical
php-template-rsort8.2.3 Array Functions
php-template-rtrim8.2.18 String
php-template-scandir8.2.6 Directory Functions
php-template-serialize8.2.19 Variable
php-template-session-cache-expire8.2.17 Session
php-template-session-cache-limiter8.2.17 Session
php-template-session-commit8.2.17 Session
php-template-session-decode8.2.17 Session
php-template-session-destroy8.2.17 Session
php-template-session-encode8.2.17 Session
php-template-session-get-cookie-params8.2.17 Session
php-template-session-id8.2.17 Session
php-template-session-is-registered8.2.17 Session
php-template-session-module-name8.2.17 Session
php-template-session-name8.2.17 Session
php-template-session-regenerate-id8.2.17 Session
php-template-session-register8.2.17 Session
php-template-session-save-path8.2.17 Session
php-template-session-set-cookie-params8.2.17 Session
php-template-session-set-save-handler8.2.17 Session
php-template-session-start8.2.17 Session
php-template-session-unregister8.2.17 Session
php-template-session-unset8.2.17 Session
php-template-session-write-close8.2.17 Session
php-template-set-error-handler8.2.7 Error and Logging
php-template-set-exception-handler8.2.7 Error and Logging
php-template-setlocale8.2.18 String
php-template-settype8.2.19 Variable
php-template-sha18.2.18 String
php-template-sha1-file8.2.18 String
php-template-show-source8.2.13 Miscellaneous
php-template-shuffle8.2.3 Array Functions
php-template-similar-text8.2.18 String
php-template-sin8.2.12 Mathematical
php-template-sinh8.2.12 Mathematical
php-template-sizeof8.2.3 Array Functions
php-template-sleep8.2.13 Miscellaneous
php-template-sort8.2.3 Array Functions
php-template-soundex8.2.18 String
php-template-split8.2.16 Regular Expressions
php-template-spliti8.2.16 Regular Expressions
php-template-sprintf8.2.18 String
php-template-sql-regcase8.2.16 Regular Expressions
php-template-sqrt8.2.12 Mathematical
php-template-srand8.2.12 Mathematical
php-template-sscanf8.2.18 String
php-template-stat8.2.8 File System
php-template-str-ireplace8.2.18 String
php-template-str-pad8.2.18 String
php-template-str-repeat8.2.18 String
php-template-str-replace8.2.18 String
php-template-str-rot138.2.18 String
php-template-str-shuffle8.2.18 String
php-template-str-split8.2.18 String
php-template-str-word-count8.2.18 String
php-template-strcasecmp8.2.18 String
php-template-strchr8.2.18 String
php-template-strcmp8.2.18 String
php-template-strcoll8.2.18 String
php-template-strcspn8.2.18 String
php-template-strftime8.2.5 Date/Time Functions
php-template-strip-tags8.2.18 String
php-template-stripcslashes8.2.18 String
php-template-stripos8.2.18 String
php-template-stripslashes8.2.18 String
php-template-stristr8.2.18 String
php-template-strlen8.2.18 String
php-template-strnatcasecmp8.2.18 String
php-template-strnatcmp8.2.18 String
php-template-strncasecmp8.2.18 String
php-template-strncmp8.2.18 String
php-template-strpbrk8.2.18 String
php-template-strpos8.2.18 String
php-template-strptime8.2.5 Date/Time Functions
php-template-strrchr8.2.18 String
php-template-strrev8.2.18 String
php-template-strripos8.2.18 String
php-template-strrpos8.2.18 String
php-template-strspn8.2.18 String
php-template-strstr8.2.18 String
php-template-strtok8.2.18 String
php-template-strtolower8.2.18 String
php-template-strtotime8.2.5 Date/Time Functions
php-template-strtoupper8.2.18 String
php-template-strtr8.2.18 String
php-template-strval8.2.19 Variable
php-template-substr8.2.18 String
php-template-substr-compare8.2.18 String
php-template-substr-count8.2.18 String
php-template-substr-replace8.2.18 String
php-template-switch8.2.4 Control Structures
php-template-symlink8.2.8 File System
php-template-sys-getloadavg8.2.13 Miscellaneous
php-template-tan8.2.12 Mathematical
php-template-tanh8.2.12 Mathematical
php-template-tempnam8.2.8 File System
php-template-time8.2.5 Date/Time Functions
php-template-time-nanosleep8.2.13 Miscellaneous
php-template-time-sleep-until8.2.13 Miscellaneous
php-template-tmpfile8.2.8 File System
php-template-touch8.2.8 File System
php-template-trigger-error8.2.7 Error and Logging
php-template-trim8.2.18 String
php-template-uasort8.2.3 Array Functions
php-template-ucfirst8.2.18 String
php-template-ucwords8.2.18 String
php-template-uksort8.2.3 Array Functions
php-template-umask8.2.8 File System
php-template-uniqid8.2.13 Miscellaneous
php-template-unlink8.2.8 File System
php-template-unpack8.2.13 Miscellaneous
php-template-unregister-tick-function8.2.9 Functions
php-template-unserialize8.2.19 Variable
php-template-unset8.2.19 Variable
php-template-user-error8.2.7 Error and Logging
php-template-usleep8.2.13 Miscellaneous
php-template-usort8.2.3 Array Functions
php-template-utf8-decode8.2.20 XML
php-template-utf8-encode8.2.20 XML
php-template-var-dump8.2.19 Variable
php-template-var-export8.2.19 Variable
php-template-vfprintf8.2.18 String
php-template-virtual8.2.2 Apache
php-template-vprintf8.2.18 String
php-template-vsprintf8.2.18 String
php-template-while8.2.4 Control Structures
php-template-wordwrap8.2.18 String
php-template-xml-error-string8.2.20 XML
php-template-xml-get-current-byte-index8.2.20 XML
php-template-xml-get-current-column-number8.2.20 XML
php-template-xml-get-current-line-number8.2.20 XML
php-template-xml-get-error-code8.2.20 XML
php-template-xml-parse8.2.20 XML
php-template-xml-parse-into-struct8.2.20 XML
php-template-xml-parser-create8.2.20 XML
php-template-xml-parser-create-ns8.2.20 XML
php-template-xml-parser-free8.2.20 XML
php-template-xml-parser-get-option8.2.20 XML
php-template-xml-parser-set-option8.2.20 XML
php-template-xml-set-character-data-handler8.2.20 XML
php-template-xml-set-default-handler8.2.20 XML
php-template-xml-set-element-handler8.2.20 XML
php-template-xml-set-end-namespace-decl-handler8.2.20 XML
php-template-xml-set-external-entity-ref-handler8.2.20 XML
php-template-xml-set-notation-decl-handler8.2.20 XML
php-template-xml-set-object8.2.20 XML
php-template-xml-set-processing-instruction-handler8.2.20 XML
php-template-xml-set-start-namespace-decl-handler8.2.20 XML
php-template-xml-set-unparsed-entity-decl-handler8.2.20 XML
php-version4.1.1 Functions

Jump to:   I   P  

[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

Stuttering Index

Jump to:   (   )   *   ;   }  
E   S  
Index Entry Section

(
(7.2 Functions

)
)7.2 Functions

*
*7.2 Functions

;
;7.2 Functions

}
}7.2 Functions

E
ENTER7.2 Functions

S
SPACE7.2 Functions

Jump to:   (   )   *   ;   }  
E   S  

[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

PHP 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  
Index Entry Section

_
__halt_compiler8.2.13 Miscellaneous

A
abs8.2.12 Mathematical
acos8.2.12 Mathematical
acosh8.2.12 Mathematical
addcslashes8.2.18 String
addslashes8.2.18 String
apache_child_terminate8.2.2 Apache
apache_get_modules8.2.2 Apache
apache_get_version8.2.2 Apache
apache_getenv8.2.2 Apache
apache_lookup_uri8.2.2 Apache
apache_note8.2.2 Apache
apache_request_headers8.2.2 Apache
apache_reset_timeout8.2.2 Apache
apache_response_headers8.2.2 Apache
apache_setenv8.2.2 Apache
array8.2.3 Array Functions
array_change_key_case8.2.3 Array Functions
array_chunk8.2.3 Array Functions
array_combine8.2.3 Array Functions
array_count_values8.2.3 Array Functions
array_diff8.2.3 Array Functions
array_diff_assoc8.2.3 Array Functions
array_diff_key8.2.3 Array Functions
array_diff_uassoc8.2.3 Array Functions
array_diff_ukey8.2.3 Array Functions
array_fill8.2.3 Array Functions
array_filter8.2.3 Array Functions
array_flip8.2.3 Array Functions
array_intersect8.2.3 Array Functions
array_intersect_assoc8.2.3 Array Functions
array_intersect_key8.2.3 Array Functions
array_intersect_uassoc8.2.3 Array Functions
array_intersect_ukey8.2.3 Array Functions
array_key_exists8.2.3 Array Functions
array_keys8.2.3 Array Functions
array_map8.2.3 Array Functions
array_merge8.2.3 Array Functions
array_merge_recursive8.2.3 Array Functions
array_multisort8.2.3 Array Functions
array_pad8.2.3 Array Functions
array_pop8.2.3 Array Functions
array_product8.2.3 Array Functions
array_push8.2.3 Array Functions
array_rand8.2.3 Array Functions
array_reduce8.2.3 Array Functions
array_reverse8.2.3 Array Functions
array_search8.2.3 Array Functions
array_shift8.2.3 Array Functions
array_slice8.2.3 Array Functions
array_splice8.2.3 Array Functions
array_sum8.2.3 Array Functions
array_udiff8.2.3 Array Functions
array_udiff_assoc8.2.3 Array Functions
array_udiff_uassoc8.2.3 Array Functions
array_uintersect8.2.3 Array Functions
array_uintersect_assoc8.2.3 Array Functions
array_uintersect_uassoc8.2.3 Array Functions
array_unique8.2.3 Array Functions
array_unshift8.2.3 Array Functions
array_values8.2.3 Array Functions
array_walk8.2.3 Array Functions
array_walk_recursive8.2.3 Array Functions
arsort8.2.3 Array Functions
ascii2ebcdic8.2.2 Apache
asin8.2.12 Mathematical
asinh8.2.12 Mathematical
asort8.2.3 Array Functions
atan8.2.12 Mathematical
atan28.2.12 Mathematical
atanh8.2.12 Mathematical

B
base_convert8.2.12 Mathematical
basename8.2.8 File System
bin2hex8.2.18 String
bindec8.2.12 Mathematical
break8.2.4 Control Structures

C
call_user_func8.2.9 Functions
call_user_func_array8.2.9 Functions
ceil8.2.12 Mathematical
chdir8.2.6 Directory Functions
checkdate8.2.5 Date/Time Functions
chgrp8.2.8 File System
chmod8.2.8 File System
chop8.2.18 String
chown8.2.8 File System
chr8.2.18 String
chroot8.2.6 Directory Functions
chunk_split8.2.18 String
class8.2.15 Others
clearstatcache8.2.8 File System
closedir8.2.6 Directory Functions
compact8.2.3 Array Functions
connection_aborted8.2.13 Miscellaneous
connection_status8.2.13 Miscellaneous
connection_timeout8.2.13 Miscellaneous
constant8.2.13 Miscellaneous
continue8.2.4 Control Structures
convert_cyr_string8.2.18 String
convert_uudecode8.2.18 String
convert_uuencode8.2.18 String
copy8.2.8 File System
cos8.2.12 Mathematical
cosh8.2.12 Mathematical
count8.2.3 Array Functions
count_chars8.2.18 String
crc328.2.18 String
create_function8.2.9 Functions
crypt8.2.18 String
current8.2.3 Array Functions

D
date8.2.5 Date/Time Functions
date_default_timezone_get8.2.5 Date/Time Functions
date_default_timezone_set8.2.5 Date/Time Functions
date_sunrise8.2.5 Date/Time Functions
date_sunset8.2.5 Date/Time Functions
debug_backtrace8.2.7 Error and Logging
debug_print_backtrace8.2.7 Error and Logging
debug_zval_dump8.2.19 Variable
decbin8.2.12 Mathematical
dechex8.2.12 Mathematical
decoct8.2.12 Mathematical
define8.2.13 Miscellaneous
defined8.2.13 Miscellaneous
deg2rad8.2.12 Mathematical
delete8.2.8 File System
die8.2.13 Miscellaneous
dir8.2.6 Directory Functions
dirname8.2.8 File System
disk_free_space8.2.8 File System
disk_total_space8.2.8 File System
diskfreespace8.2.8 File System
do-while8.2.4 Control Structures
dotnet_load8.2.1 .NET
doubleval8.2.19 Variable

E
each8.2.3 Array Functions
ebcdic2ascii8.2.2 Apache
echo8.2.18 String
else8.2.4 Control Structures
elseif8.2.4 Control Structures
empty8.2.19 Variable
end8.2.3 Array Functions
ereg8.2.16 Regular Expressions
ereg_replace8.2.16 Regular Expressions
eregi8.2.16 Regular Expressions
eregi_replace8.2.16 Regular Expressions
error_log8.2.7 Error and Logging
error_reporting8.2.7 Error and Logging
eval8.2.13 Miscellaneous
exit8.2.13 Miscellaneous
exp8.2.12 Mathematical
explode8.2.18 String
expm18.2.12 Mathematical
extract8.2.3 Array Functions
ezmlm_hash8.2.11 Mail

F
fclose8.2.8 File System
feof8.2.8 File System
fflush8.2.8 File System
fgetc8.2.8 File System
fgetcsv8.2.8 File System
fgets8.2.8 File System
fgetss8.2.8 File System
file8.2.8 File System
file_exists8.2.8 File System
file_get_contents8.2.8 File System
file_put_contents8.2.8 File System
fileatime8.2.8 File System
filectime8.2.8 File System
filegroup8.2.8 File System
fileinode8.2.8 File System
filemtime8.2.8 File System
fileowner8.2.8 File System
fileperms8.2.8 File System
filesize8.2.8 File System
filetype8.2.8 File System
floatval8.2.19 Variable
flock8.2.8 File System
floor8.2.12 Mathematical
fmod8.2.12 Mathematical
fnmatch8.2.8 File System
fopen8.2.8 File System
for8.2.4 Control Structures
foreach8.2.4 Control Structures
fpassthru8.2.8 File System
fprintf8.2.18 String
fputcsv8.2.8 File System
fputs8.2.8 File System
fread8.2.8 File System
fseek8.2.8 File System
fstat8.2.8 File System
ftell8.2.8 File System
ftruncate8.2.8 File System
func_get_arg8.2.9 Functions
func_get_args8.2.9 Functions
func_num_args8.2.9 Functions
function8.2.15 Others
function_exists8.2.9 Functions
fwrite8.2.8 File System

G
gd_info8.2.10 Image
get_browser8.2.13 Miscellaneous
get_defined_functions8.2.9 Functions
get_defined_vars8.2.19 Variable
get_html_translation_table8.2.18 String
get_resource_type8.2.19 Variable
getallheaders8.2.2 Apache
getcwd8.2.6 Directory Functions
getdate8.2.5 Date/Time Functions
getimagesize8.2.10 Image
getrandmax8.2.12 Mathematical
gettimeofday8.2.5 Date/Time Functions
gettype8.2.19 Variable
glob8.2.8 File System
gmdate8.2.5 Date/Time Functions
gmmktime8.2.5 Date/Time Functions
gmstrftime8.2.5 Date/Time Functions

H
hebrev8.2.18 String
hebrevc8.2.18 String
hexdec8.2.12 Mathematical
highlight_file8.2.13 Miscellaneous
highlight_string8.2.13 Miscellaneous
html_entity_decode8.2.18 String
htmlentities8.2.18 String
htmlspecialchars8.2.18 String
htmlspecialchars_decode8.2.18 String
hypot8.2.12 Mathematical

I
idate8.2.5 Date/Time Functions
if8.2.4 Control Structures
ignore_user_abort8.2.13 Miscellaneous
image2wbmp8.2.10 Image
image_type_to_extension8.2.10 Image
image_type_to_mime_type8.2.10 Image
imagealphablending8.2.10 Image
imageantialias8.2.10 Image
imagearc8.2.10 Image
imagechar8.2.10 Image
imagecharup8.2.10 Image
imagecolorallocate8.2.10 Image
imagecolorallocatealpha8.2.10 Image
imagecolorat8.2.10 Image
imagecolorclosest8.2.10 Image
imagecolorclosestalpha8.2.10 Image
imagecolorclosesthwb8.2.10 Image
imagecolordeallocate8.2.10 Image
imagecolorexact8.2.10 Image
imagecolorexactalpha8.2.10 Image
imagecolormatch8.2.10 Image
imagecolorresolve8.2.10 Image
imagecolorresolvealpha8.2.10 Image
imagecolorset8.2.10 Image
imagecolorsforindex8.2.10 Image
imagecolorstotal8.2.10 Image
imagecolortransparent8.2.10 Image
imageconvolution8.2.10 Image
imagecopy8.2.10 Image
imagecopymerge8.2.10 Image
imagecopymergegray8.2.10 Image
imagecopyresampled8.2.10 Image
imagecopyresized8.2.10 Image
imagecreate8.2.10 Image
imagecreatefromgd8.2.10 Image
imagecreatefromgd28.2.10 Image
imagecreatefromgd2part8.2.10 Image
imagecreatefromgif8.2.10 Image
imagecreatefromjpeg8.2.10 Image
imagecreatefrompng8.2.10 Image
imagecreatefromstring8.2.10 Image
imagecreatefromwbmp8.2.10 Image
imagecreatefromxbm8.2.10 Image
imagecreatefromxpm8.2.10 Image
imagecreatetruecolor8.2.10 Image
imagedashedline8.2.10 Image
imagedestroy8.2.10 Image
imageellipse8.2.10 Image
imagefill8.2.10 Image
imagefilledarc8.2.10 Image
imagefilledellipse8.2.10 Image
imagefilledpolygon8.2.10 Image
imagefilledrectangle8.2.10 Image
imagefilltoborder8.2.10 Image
imagefilter8.2.10 Image
imagefontheight8.2.10 Image
imagefontwidth8.2.10 Image
imageftbbox8.2.10 Image
imagefttext8.2.10 Image
imagegammacorrect8.2.10 Image
imagegd8.2.10 Image
imagegd28.2.10 Image
imagegif8.2.10 Image
imageinterlace8.2.10 Image
imageistruecolor8.2.10 Image
imagejpeg8.2.10 Image
imagelayereffect8.2.10 Image
imageline8.2.10 Image
imageloadfont8.2.10 Image
imagepalettecopy8.2.10 Image
imagepng8.2.10 Image
imagepolygon8.2.10 Image
imagepsbbox8.2.10 Image
imagepsencodefont8.2.10 Image
imagepsextendfont8.2.10 Image
imagepsfreefont8.2.10 Image
imagepsloadfont8.2.10 Image
imagepsslantfont8.2.10 Image
imagepstext8.2.10 Image
imagerectangle8.2.10 Image
imagerotate8.2.10 Image
imagesavealpha8.2.10 Image
imagesetbrush8.2.10 Image
imagesetpixel8.2.10 Image
imagesetstyle8.2.10 Image
imagesetthickness8.2.10 Image
imagesettile8.2.10 Image
imagestring8.2.10 Image
imagestringup8.2.10 Image
imagesx8.2.10 Image
imagesy8.2.10 Image
imagetruecolortopalette8.2.10 Image
imagettfbbox8.2.10 Image
imagettftext8.2.10 Image
imagetypes8.2.10 Image
imagewbmp8.2.10 Image
imagexbm8.2.10 Image
implode8.2.18 String
import_request_variables8.2.19 Variable
in_array8.2.3 Array Functions
include8.2.4 Control Structures
include_once8.2.4 Control Structures
intval8.2.19 Variable
iptcembed8.2.10 Image
iptcparse8.2.10 Image
is_array8.2.19 Variable
is_bool8.2.19 Variable
is_callable8.2.19 Variable
is_dir8.2.8 File System
is_double8.2.19 Variable
is_executable8.2.8 File System
is_file8.2.8 File System
is_finite8.2.12 Mathematical
is_float8.2.19 Variable
is_infinite8.2.12 Mathematical
is_int8.2.19 Variable
is_integer8.2.19 Variable
is_link8.2.8 File System
is_long8.2.19 Variable
is_nan8.2.12 Mathematical
is_null8.2.19 Variable
is_numeric8.2.19 Variable
is_object8.2.19 Variable
is_readable8.2.8 File System
is_real8.2.19 Variable
is_resource8.2.19 Variable
is_scalar8.2.19 Variable
is_string8.2.19 Variable
is_uploaded_file8.2.8 File System
is_writable8.2.8 File System
is_writeable8.2.8 File System
isset8.2.19 Variable

J
join8.2.18 String
jpeg2wbmp8.2.10 Image

K
key8.2.3 Array Functions
krsort8.2.3 Array Functions
ksort8.2.3 Array Functions

L
lcg_value8.2.12 Mathematical
levenshtein8.2.18 String
link8.2.8 File System
linkinfo8.2.8 File System
list8.2.3 Array Functions
localeconv8.2.18 String
localtime8.2.5 Date/Time Functions
log8.2.12 Mathematical
log108.2.12 Mathematical
log1p8.2.12 Mathematical
lstat8.2.8 File System
ltrim8.2.18 String

M
mail8.2.11 Mail
max8.2.12 Mathematical
md58.2.18 String
md5_file8.2.18 String
metaphone8.2.18 String
microtime8.2.5 Date/Time Functions
min8.2.12 Mathematical
mkdir8.2.8 File System
mktime8.2.5 Date/Time Functions
money_format8.2.18 String
move_uploaded_file8.2.8 File System
mt_getrandmax8.2.12 Mathematical
mt_rand8.2.12 Mathematical
mt_srand8.2.12 Mathematical
mysql_affected_rows8.2.14 MySQL
mysql_change_user8.2.14 MySQL
mysql_client_encoding8.2.14 MySQL
mysql_close8.2.14 MySQL
mysql_connect8.2.14 MySQL
mysql_create_db8.2.14 MySQL
mysql_data_seek8.2.14 MySQL
mysql_db_name8.2.14 MySQL
mysql_db_query8.2.14 MySQL
mysql_drop_db8.2.14 MySQL
mysql_errno8.2.14 MySQL
mysql_error8.2.14 MySQL
mysql_escape_string8.2.14 MySQL
mysql_fetch_array8.2.14 MySQL
mysql_fetch_assoc8.2.14 MySQL
mysql_fetch_field8.2.14 MySQL
mysql_fetch_lengths8.2.14 MySQL
mysql_fetch_object8.2.14 MySQL
mysql_fetch_row8.2.14 MySQL
mysql_field_flags8.2.14 MySQL
mysql_field_len8.2.14 MySQL
mysql_field_name8.2.14 MySQL
mysql_field_seek8.2.14 MySQL
mysql_field_table8.2.14 MySQL
mysql_field_type8.2.14 MySQL
mysql_free_result8.2.14 MySQL
mysql_get_client_info8.2.14 MySQL
mysql_get_host_info8.2.14 MySQL
mysql_get_proto_info8.2.14 MySQL
mysql_get_server_info8.2.14 MySQL
mysql_info8.2.14 MySQL
mysql_insert_id8.2.14 MySQL
mysql_list_dbs8.2.14 MySQL
mysql_list_fields8.2.14 MySQL
mysql_list_processes8.2.14 MySQL
mysql_list_tables8.2.14 MySQL
mysql_num_fields8.2.14 MySQL
mysql_num_rows8.2.14 MySQL
mysql_pconnect8.2.14 MySQL
mysql_ping8.2.14 MySQL
mysql_query8.2.14 MySQL
mysql_real_escape_string8.2.14 MySQL
mysql_result8.2.14 MySQL
mysql_select_db8.2.14 MySQL
mysql_stat8.2.14 MySQL
mysql_tablename8.2.14 MySQL
mysql_thread_id8.2.14 MySQL
mysql_unbuffered_query8.2.14 MySQL

N
natcasesort8.2.3 Array Functions
natsort8.2.3 Array Functions
next8.2.3 Array Functions
nl2br8.2.18 String
nl_langinfo8.2.18 String
number_format8.2.18 String

O
octdec8.2.12 Mathematical
opendir8.2.6 Directory Functions
ord8.2.18 String

P
pack8.2.13 Miscellaneous
parse_ini_file8.2.8 File System
parse_str8.2.18 String
pathinfo8.2.8 File System
pclose8.2.8 File System
php_check_syntax8.2.13 Miscellaneous
php_strip_whitespace8.2.13 Miscellaneous
pi8.2.12 Mathematical
png2wbmp8.2.10 Image
popen8.2.8 File System
pos8.2.3 Array Functions
pow8.2.12 Mathematical
prev8.2.3 Array Functions
print8.2.18 String
print_r8.2.19 Variable
printf8.2.18 String

Q
quoted_printable_decode8.2.18 String
quotemeta8.2.18 String

R
rad2deg8.2.12 Mathematical
rand8.2.12 Mathematical
range8.2.3 Array Functions
readdir8.2.6 Directory Functions
readfile8.2.8 File System
readlink8.2.8 File System
realpath8.2.8 File System
register_shutdown_function8.2.9 Functions
register_tick_function8.2.9 Functions
rename8.2.8 File System
require8.2.4 Control Structures
require_once8.2.4 Control Structures
reset8.2.3 Array Functions
restore_error_handler8.2.7 Error and Logging
restore_exception_handler8.2.7 Error and Logging
return8.2.4 Control Structures
rewind8.2.8 File System
rewinddir8.2.6 Directory Functions
rmdir8.2.8 File System
round8.2.12 Mathematical
rsort8.2.3 Array Functions
rtrim8.2.18 String

S
scandir8.2.6 Directory Functions
serialize8.2.19 Variable
session_cache_expire8.2.17 Session
session_cache_limiter8.2.17 Session
session_commit8.2.17 Session
session_decode8.2.17 Session
session_destroy8.2.17 Session
session_encode8.2.17 Session
session_get_cookie_params8.2.17 Session
session_id8.2.17 Session
session_is_registered8.2.17 Session
session_module_name8.2.17 Session
session_name8.2.17 Session
session_regenerate_id8.2.17 Session
session_register8.2.17 Session
session_save_path8.2.17 Session
session_set_cookie_params8.2.17 Session
session_set_save_handler8.2.17 Session
session_start8.2.17 Session
session_unregister8.2.17 Session
session_unset8.2.17 Session
session_write_close8.2.17 Session
set_error_handler8.2.7 Error and Logging
set_exception_handler8.2.7 Error and Logging
setlocale8.2.18 String
settype8.2.19 Variable
sha18.2.18 String
sha1_file8.2.18 String
show_source8.2.13 Miscellaneous
shuffle8.2.3 Array Functions
similar_text8.2.18 String
sin8.2.12 Mathematical
sinh8.2.12 Mathematical
sizeof8.2.3 Array Functions
sleep8.2.13 Miscellaneous
sort8.2.3 Array Functions
soundex8.2.18 String
split8.2.16 Regular Expressions
spliti8.2.16 Regular Expressions
sprintf8.2.18 String
sql_regcase8.2.16 Regular Expressions
sqrt8.2.12 Mathematical
srand8.2.12 Mathematical
sscanf8.2.18 String
stat8.2.8 File System
str_ireplace8.2.18 String
str_pad8.2.18 String
str_repeat8.2.18 String
str_replace8.2.18 String
str_rot138.2.18 String
str_shuffle8.2.18 String
str_split8.2.18 String
str_word_count8.2.18 String
strcasecmp8.2.18 String
strchr8.2.18 String
strcmp8.2.18 String
strcoll8.2.18 String
strcspn8.2.18 String
strftime8.2.5 Date/Time Functions
strip_tags8.2.18 String
stripcslashes8.2.18 String
stripos8.2.18 String
stripslashes8.2.18 String
stristr8.2.18 String
strlen8.2.18 String
strnatcasecmp8.2.18 String
strnatcmp8.2.18 String
strncasecmp8.2.18 String
strncmp8.2.18 String
strpbrk8.2.18 String
strpos8.2.18 String
strptime8.2.5 Date/Time Functions
strrchr8.2.18 String
strrev8.2.18 String
strripos8.2.18 String
strrpos8.2.18 String
strspn8.2.18 String
strstr8.2.18 String
strtok8.2.18 String
strtolower8.2.18 String
strtotime8.2.5 Date/Time Functions
strtoupper8.2.18 String
strtr8.2.18 String
strval8.2.19 Variable
substr8.2.18 String
substr_compare8.2.18 String
substr_count8.2.18 String
substr_replace8.2.18 String
switch8.2.4 Control Structures
symlink8.2.8 File System
sys_getloadavg8.2.13 Miscellaneous

T
tan8.2.12 Mathematical
tanh8.2.12 Mathematical
tempnam8.2.8 File System
time8.2.5 Date/Time Functions
time_nanosleep8.2.13 Miscellaneous
time_sleep_until8.2.13 Miscellaneous
tmpfile8.2.8 File System
touch8.2.8 File System
trigger_error8.2.7 Error and Logging
trim8.2.18 String

U
uasort8.2.3 Array Functions
ucfirst8.2.18 String
ucwords8.2.18 String
uksort8.2.3 Array Functions
umask8.2.8 File System
uniqid8.2.13 Miscellaneous
unlink8.2.8 File System
unpack8.2.13 Miscellaneous
unregister_tick_function8.2.9 Functions
unserialize8.2.19 Variable
unset8.2.19 Variable
user_error8.2.7 Error and Logging
usleep8.2.13 Miscellaneous
usort8.2.3 Array Functions
utf8_decode8.2.20 XML
utf8_encode8.2.20 XML

V
var_dump8.2.19 Variable
var_export8.2.19 Variable
vfprintf8.2.18 String
virtual8.2.2 Apache
vprintf8.2.18 String
vsprintf8.2.18 String

W
while8.2.4 Control Structures
wordwrap8.2.18 String

X
xml_error_string8.2.20 XML
xml_get_current_byte_index8.2.20 XML
xml_get_current_column_number8.2.20 XML
xml_get_current_line_number8.2.20 XML
xml_get_error_code8.2.20 XML
xml_parse8.2.20 XML
xml_parse_into_struct8.2.20 XML
xml_parser_create8.2.20 XML
xml_parser_create_ns8.2.20 XML
xml_parser_free8.2.20 XML
xml_parser_get_option8.2.20 XML
xml_parser_set_option8.2.20 XML
xml_set_character_data_handler8.2.20 XML
xml_set_default_handler8.2.20 XML
xml_set_element_handler8.2.20 XML
xml_set_end_namespace_decl_handler8.2.20 XML
xml_set_external_entity_ref_handler8.2.20 XML
xml_set_notation_decl_handler8.2.20 XML
xml_set_object8.2.20 XML
xml_set_processing_instruction_handler8.2.20 XML
xml_set_start_namespace_decl_handler8.2.20 XML
xml_set_unparsed_entity_decl_handler8.2.20 XML

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] [ ? ]

Table of Contents


[Top] [Contents] [Index] [ ? ]

Short Table of Contents


[Top] [Contents] [Index] [ ? ]

About This Document

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:

  • 1. Section One
    • 1.1 Subsection One-One
      • ...
    • 1.2 Subsection One-Two
      • 1.2.1 Subsubsection One-Two-One
      • 1.2.2 Subsubsection One-Two-Two
      • 1.2.3 Subsubsection One-Two-Three     <== Current Position
      • 1.2.4 Subsubsection One-Two-Four
    • 1.3 Subsection One-Three
      • ...
    • 1.4 Subsection One-Four