
- PHP Tutorial
- PHP - Home
- PHP - Introduction
- PHP - Environment Setup
- PHP - Syntax Overview
- PHP - Variable Types
- PHP - Constants
- PHP - Operator Types
- PHP - Decision Making
- PHP - Loop Types
- PHP - Arrays
- PHP - Strings
- PHP - Web Concepts
- PHP - GET & POST
- PHP - File Inclusion
- PHP - Files & I/O
- PHP - Functions
- PHP - Cookies
- PHP - Sessions
- PHP - Sending Emails
- PHP - File Uploading
- PHP - Coding Standard
- Advanced PHP
- PHP - Predefined Variables
- PHP - Regular Expression
- PHP - Error Handling
- PHP - Bugs Debugging
- PHP - Date & Time
- PHP & MySQL
- PHP & AJAX
- PHP & XML
- PHP - Object Oriented
- PHP - For C Developers
- PHP - For PERL Developers
- PHP Form Examples
- PHP - Form Introduction
- PHP - Validation Example
- PHP - Complete Form
- PHP login Examples
- PHP - Login Example
- PHP - Facebook Login
- PHP - Paypal Integration
- PHP - MySQL Login
- PHP AJAX Examples
- PHP - AJAX Search
- PHP - AJAX XML Parser
- PHP - AJAX Auto Complete Search
- PHP - AJAX RSS Feed Example
- PHP XML Example
- PHP - XML Introduction
- PHP - Simple XML
- PHP - Simple XML GET
- PHP - SAX Parser Example
- PHP - DOM Parser Example
- PHP Frame Works
- PHP - Frame Works
- PHP - Core PHP vs Frame Works
- PHP Design Patterns
- PHP - Design Patterns
- PHP Function Reference
- PHP - Built-In Functions
- PHP Useful Resources
- PHP - Questions & Answers
- PHP - Useful Resources
- PHP - Discussion
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
PHP - Function Handling
List of Functions
Sr.No | Function & Description |
---|---|
1 | call_user_func()
The call_user_func() function can call a user function given by first parameter. |
2 | call_user_func_array()
The call_user_func_array() function call a user function given with an array of parameters. |
3 | create_function()
The create_function() function is an inbuilt function that can be used to create an anonymous (lambda-style) function. |
4 | forward_static_call()
The forward_static_call() function can call a static method. |
5 | forward_static_call_array()
The forward_static_call_array() function can call a static method and pass the arguments as an array. |
6 | func_get_arg()
The func_get_arg() function can return an item from an argument list. |
7 | func_get_args()
The func_get_args() function can return an array comprising a function's argument list. |
8 | func_num_args()
The func_num_args() function can return the number of arguments passed to a function. |
9 | function_exists()
The function_exists() function can return true if a given function has been defined. |
10 | get_defined_functions()
The get_defined_functions() function can return an array of all defined functions. |
11 | register_shutdown_function()
The register_shutdown_function() function can register a function for execution on shutdown. |
12 | register_tick_function()
The register_tick_function() function can register a function for execution on each tick. |
13 | unregister_tick_function()
The unregister_tick_function() function can de-register a function for execution on each tick. |