To see an alphabetical site map click here
- Applications
7 Applications This chapter should be read in conjunction with app(4) and application(3) . 7.1 Application Concept When we have written code implementing some specific functionality, we might want to...
- Appup Cookbook
12 Appup Cookbook This chapter contains examples of .appup files for typical cases of upgrades/downgrades done in run-time. 12.1 Changing a Functional Module When a change has been made to a...
- Overview
1 Overview The OTP Design Principles is a set of principles for how to structure Erlang code in terms of processes, modules and directories. 1.1 Supervision Trees A basic concept in Erlang/OTP is the...
- Distributed Applications
9 Distributed Applications 9.1 Definition In a distributed system with several Erlang nodes, there may be a need to control applications in a distributed manner. If the node, where a certain...
- Gen_Event Behaviour
4 Gen_Event Behaviour This chapter should be read in conjunction with gen_event(3) , where all interface functions and callback functions are described in detail. 4.1 Event Handling Principles In...
- Gen_Fsm Behaviour
3 Gen_Fsm Behaviour This chapter should be read in conjunction with gen_fsm(3) , where all interface functions and callback functions are described in detail. 3.1 Finite State Machines A finite state...
- Gen_Server Behaviour
2 Gen_Server Behaviour This chapter should be read in conjunction with gen_server(3) , where all interface functions and callback functions are described in detail. 2.1 Client-Server Principles The...
- Included Applications
8 Included Applications 8.1 Definition An application can include other applications. An included application has its own application directory and .app file, but it is started as part of the...
- OTP Design Principles
OTP Design Principles Version 5.6.3 Bibliography | Glossary | Cover | Top Table of Contents 1 Overview 1.1 Supervision Trees 1.2 Behaviours 1.3 Applications 1.4 Releases 1.5 Release Handling 2...
- OTP Design Principles
Bibliography Copyright © 1991-2008 Ericsson AB
- OTP Design Principles
OTP Design Principles Version 5.6.3 Copyright © 1991-2008 Ericsson AB
- OTP Design Principles
This documentation requires a browser that can handle frames
- OTP Design Principles
Glossary Copyright © 1991-2008 Ericsson AB
- Release Handling
11 Release Handling 11.1 Release Handling Principles An important feature of the Erlang programming language is the ability to change module code in run-time, code replacement , as described in...
- Releases
10 Releases This chapter should be read in conjuction with rel(4) , systools(3) and script(4) . 10.1 Release Concept When we have written one or more applications, we might want to create a complete...
- Sys and Proc_Lib
6 Sys and Proc_Lib The module sys contains functions for simple debugging of processes implemented using behaviours. There are also functions that, together with functions in the module proc_lib ,...
- Supervisor Behaviour
5 Supervisor Behaviour This section should be read in conjunction with supervisor(3) , where all details about the supervisor behaviour is given. 5.1 Supervision Principles A supervisor is...
- Advanced
9 Advanced 9.1 Memory A good start when programming efficiently is to have knowledge about how much memory different data types and operations require. It is implementation-dependent how much memory...
- Constructing and matching binaries
4 Constructing and matching binaries In R12B, the most natural way to write binary construction and matching is now significantly faster than in earlier releases. To construct at binary, you can...
- Benchmark Results
Benchmark Results call_bm Test 5.4 BEAM local_call 1.00 external_call 1.08 fun_call 2.79 apply_fun 3.54 apply_mfa_implicit 7.76 apply_mfa_explicit 8.21 Source for call_bm.erl
- Common Caveats
3 Common Caveats Here we list a few modules and BIFs to watch out for, and not only from a performance point of view. 3.1 The regexp module The regular expression functions in the regexp module are...
- Functions
6 Functions 6.1 Pattern matching Pattern matching in function head and in case and receive clauses are optimized by the compiler. With a few exceptions, there is nothing to gain by rearranging...
- Introduction
1 Introduction 1.1 Purpose Premature optimization is the root of all evil. -- D.E. Knuth Efficient code can be well-structured and clean code, based on on a sound overall architecture and sound...
- List handling
5 List handling 5.1 Creating a list Lists can only be built starting from the end and attaching list elements at the beginning. If you use the ++ operator like this List1 ++ List2 you will create a...
- The Eight Myths of Erlang Performance
2 The Eight Myths of Erlang Performance Some truths seem to live on well beyond their best-before date, perhaps because "information" spreads more rapidly from person-to-person faster than a single...
- Processes
8 Processes 8.1 Creation of an Erlang process An Erlang process is lightweight compared to operating systems threads and processes. A newly spawned Erlang process uses 309 words of memory in the...
- Profiling
10 Profiling 10.1 Do not guess about performance - profile Even experienced software developers often guess wrong about where the performance bottlenecks are in their programs. Therefore, profile...
- Tables and databases
7 Tables and databases 7.1 Ets, Dets and Mnesia Every example using Ets has a corresponding example in Mnesia. In general all Ets examples also apply to Dets tables. 7.1.1 Select/Match operations...
- Windows NT
2 Windows NT This chapter describes the OS specific parts of OTP which relate to Windows NT. 2.1 Introduction A normal installation of NT 4.0, with service pack 4 or later, is required for an...
- Embedded Solaris
1 Embedded Solaris This chapter describes the OS specific parts of OTP which relate to Solaris. 1.1 Memory Usage Solaris takes about 17 Mbyte of RAM on a system with 64 Mbyte of total RAM. This...
- VxWorks
3 VxWorks This chapter describes the OS specific parts of OTP which relate to VxWorks. 3.1 Introduction The Erlang/OTP distribution for VxWorks is limited to what Switchboard requires (Switchboard is...
- Concurrent Programming
3 Concurrent Programming 3.1 Processes One of the main reasons for using Erlang instead of other functional languages is Erlang's ability to handle concurrency and distributed programming. By...
- Introduction
1 Introduction 1.1 Introduction This is a "kick start" tutorial to get you started with Erlang. Everything here is true, but only part of the truth. For example, I'll only tell you the simplest form...
- Records and Macros
5 Records and Macros Larger programs are usually written as a collection of files with a well defined interface between the various parts. 5.1 The Larger Example Divided into Several Files To...
- Robustness
4 Robustness There are several things which are wrong with the messenger example from the previous chapter. For example if a node where a user is logged on goes down without doing a log off, the user...
- Sequential Programming
2 Sequential Programming 2.1 The Erlang Shell Most operating systems have a command interpreter or shell, Unix and Linux have many, Windows has the Command Prompt. Erlang has its own shell where you...
- Installation
1 Installation 1.1 UNIX 1.1.1 Introduction The system is delivered as a single compressed tar file. To browse the on-line HTML documentation, Netscape or an equivalent browser supporting frames is...
- Installation Verification
2 Installation Verification This chapter is about verifying your installation by performing a few simple tests to see that your system is properly installed. 2.1 UNIX Start Erlang/OTP from the...
- Introduction
1 Introduction The operation and maintenance support in OTP consists of a generic model for management subsystems in OTP, and some components to be used in these subsystems. This document describes...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z A Equivalent to application(Application, []). edoc:application/1...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z B Notify the target object that the transaction has been rolled back...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z C Rehash or create code path cache code:rehash/0 Calculate CRC...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z D Connect to an ssh daemon ssh_cm:connect/1 Connect to an ssh daemon...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z E Return true if the target object and the supplied object easily can...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z F Return a full inter face description record describing the...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z G Force an immediate garbage collection of a process...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z H Halt the Erlang runtime system erlang:halt/1 Halt the...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z I Searche for modules with identical names. code:clash/0 Return all...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z J Adds different types of jobs to the run queue....
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z K Sets the number of previous commands to keep shell:history/1 Sets...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z L Returns the label and value-expression of a record field specifier....
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z M Compute an MD5 MACmessage authentification code crypto:md5_mac/2...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z N Add a module to the job queue with or without a given name....
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z O Add a new filter to the target object...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z P Return the PacingInterval QoS identifier...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Q Creates an abstract qualified name. erl_syntax:qualified_name/1...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z R Return a list of exception types that can be raised by the target...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z S Fix a Dets table for safe traversal. dets:safe_fixtable/2 Fix an...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z T Delete permanently all replicas of table Tab. mnesia:delete_table/1...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z U Unblock a disk log. disk_log:unblock/1 Yields a document...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z V Read the agent vacm config from the config file...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z W Sends one or more transaction request(s) but does NOT wait for a...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z X Equivalent to process_validate(Schema, Xml, [])....
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Y Check if a year is a leap year calendar:is_leap_year/1 Compute the...
- Erlang/OTP Permuted Index
Erlang/OTP Permuted Index Permuted index of Erlang/OTP functions and commands A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Z Create a new, extendible array with initial size zero. array:new/0...
- Bit Syntax
4 Bit Syntax 4.1 Introduction In Erlang a Bin is used for constructing binaries and matching binary patterns. A Bin is written with the following syntax: <<E1, E2, ... En>> A Bin is a...
- Funs
2 Funs 2.1 Example 1 - map If we want to double every element in a list, we could write a function named double : double([H|T]) -> [2*H|double(T)]; double([]) -> []. This function obviously...
- List Comprehensions
3 List Comprehensions 3.1 Simple Examples We start with a simple example: > [X || X <- [1,2,a,3,4,b,5,6], X > 3]. [a,4,b,5,6] This should be read as follows: The list of X such that X is...
- Records
1 Records 1.1 Records vs Tuples The main advantage of using records instead of tuples is that fields in a record are accessed by name, whereas fields in a tuple are accessed by position. To...
- Compilation and Code Loading
12 Compilation and Code Loading How code is compiled and loaded is not a language issue, but is system dependent. This chapter describes compilation and code loading in Erlang/OTP with pointers to...
- Data Types
2 Data Types 2.1 Terms Erlang provides a number of data types which are listed in this chapter. A piece of data of any data type is called a term . 2.2 Number There are two types of numeric literals,...
- Distributed Erlang
11 Distributed Erlang 11.1 Distributed Erlang System A distributed Erlang system consists of a number of Erlang runtime systems communicating with each other. Each such runtime system is called a...
- Errors and Error Handling
9 Errors and Error Handling 9.1 Terminology Errors can roughly be divided into four different types: Compile-time errors Logical errors Run-time errors Generated errors A compile-time error, for...
- Expressions
6 Expressions In this chapter, all valid Erlang expressions are listed. When writing Erlang programs, it is also allowed to use macro- and record expressions. However, these expressions are expanded...
- The Preprocessor
7 The Preprocessor 7.1 File Inclusion A file can be included in the following way: -include(File). -include_lib(File). File , a string, should point out a file. The contents of this file are included...
- Modules
4 Modules 4.1 Module Syntax Erlang code is divided into modules . A module consists of a sequence of attributes and function declarations, each terminated by period (.). Example: -module(m). % module...
- Pattern Matching
3 Pattern Matching 3.1 Pattern Matching Variables are bound to values through the pattern matching mechanism. Pattern matching occurs when evaluating a function call, case - receive - try -...
- Ports and Port Drivers
13 Ports and Port Drivers Examples of how to use ports and port drivers can be found in Interoperability Tutorial . The BIFs mentioned are as usual documented in erlang(3) . 13.1 Ports Ports provide...
- Introduction
1 Introduction 1.1 Erlang and OTP Erlang is a general-purpose programming language with built-in support for concurrency, distribution and fault tolerance. OTP (Open Telecom Platform) is aimed at...
- Creating a First Target System
3 Creating a First Target System 3.1 Introduction When creating a system using Erlang/OTP, the most simple way is to install Erlang/OTP somewhere, install the application specific code somewhere...
- Error Logging
2 Error Logging 2.1 Error Information From the Runtime System Error information from the runtime system, that is, information about a process terminating due to an uncaught error exception, is by...
- System Principles
1 System Principles 1.1 Starting the System An Erlang runtime system is started with the command erl : % erl Erlang (BEAM) emulator version 5.2.3.5 [hipe] [threads:0] Eshell V5.2.3.5 (abort with ^G)...
- Ports
4 Ports This is an example of how to solve the example problem by using a port. Port Communication. 4.1 Erlang Program First of all communication between Erlang and C must be established by creating...
- Port drivers
6 Port drivers This is an example of how to solve the example problem by using a linked in port driver. Port Driver Communication. 6.1 Port Drivers A port driver is a linked in driver, that is...
- C Nodes
7 C Nodes This is an example of how to solve the example problem by using a C node. Note that a C node would not typically be used for solving a simple problem like this, a port would suffice. 7.1...
- Erl_Interface
5 Erl_Interface This is an example of how to solve the example problem by using a port and erl_interface . It is necessary to read the port example before reading this chapter. 5.1 Erlang Program The...
- Problem Example
3 Problem Example 3.1 Description A common interoperability situation is when there exists a piece of code solving some complex problem, and we would like to incorporate this piece of code in our...
- Overview
2 Overview 2.1 Built-In Mechanisms There are two interoperability mechanisms built into the Erlang runtime system. One is distributed Erlang and the other one is ports . A variation of ports is...
- The Abstract Format
4 The Abstract Format This document describes the standard representation of parse trees for Erlang programs as Erlang terms. This representation is known as the abstract format . Functions dealing...
- How to implement an alternative carrier for the Erlang distribution
3 How to implement an alternative carrier for the Erlang distribution This document describes how one can implement ones own carrier protocol for the Erlang distribution. The distribution is normally...
- How to interpret the Erlang crash dumps
2 How to interpret the Erlang crash dumps This document describes the erl_crash.dump file generated upon abnormal exit of the Erlang runtime system. Important: For OTP release R9C the Erlang crash...
- How to implement a driver
6 How to implement a driver 6.1 Introduction This chapter tells you how to build your own driver for erlang. A driver in Erlang is a library written in C, that is linked to the Erlang emulator and...
- driver_entry
driver_entry MODULE driver_entry MODULE SUMMARY The driver-entry structure used by erlang drivers. DESCRIPTION As of erts version 5.5.3 the driver interface has been extended (see extended marker )....
- epmd
epmd COMMAND epmd COMMAND SUMMARY Erlang Port Mapper Daemon DESCRIPTION This daemon acts as a name server on all hosts involved in distributed Erlang computations. When an Erlang node starts, the...
- erl
erl COMMAND erl COMMAND SUMMARY The Erlang Emulator DESCRIPTION The erl program starts an Erlang runtime system. The exact details (for example, whether erl is a script or a program and which other...
- Distribution Protocol
9 Distribution Protocol The description here is far from complete and will therefore be further refined in upcoming releases. The protocols both from Erlang nodes towards EPMD (Erlang Port Mapper...
- erl_driver
erl_driver MODULE erl_driver MODULE SUMMARY API functions for an Erlang driver DESCRIPTION As of erts version 5.5.3 the driver interface has been extended (see extended marker ). The extended...
- External Term Format
8 External Term Format 8.1 Introduction The external term format is mainly used in the distribution mechanism of Erlang. Since Erlang has a fixed number of types, there is no need for a programmer to...
- erl_set_memory_block
erl_set_memory_block C LIBRARY erl_set_memory_block C LIBRARY SUMMARY Custom memory allocation for Erlang on VxWorks DESCRIPTION This documentation is specific to VxWorks. The erl_set_memory_block...
- erlc
erlc COMMAND erlc COMMAND SUMMARY Compiler DESCRIPTION The erlc program provides a common way to run all compilers in the Erlang system. Depending on the extension of each input file, erlc will...
- erlsrv
erlsrv COMMAND erlsrv COMMAND SUMMARY Run the Erlang emulator as a service on Windows NT DESCRIPTION This utility is specific to Windows NT/2000/XP It allows Erlang emulators to run as services on...
- erts_alloc
erts_alloc C LIBRARY erts_alloc C LIBRARY SUMMARY An Erlang Run-Time System internal memory allocator library. DESCRIPTION erts_alloc is an Erlang Run-Time System internal memory allocator library....
- escript
escript COMMAND escript COMMAND SUMMARY Erlang scripting support DESCRIPTION escript provides support for running short Erlang programs without having to compile them first and an easy way to...
- ERTS Reference Manual
This documentation requires a browser that can handle frames
- Inet configuration
7 Inet configuration 7.1 Introduction This chapter tells you how the Erlang runtime system is configured for IP communication. It also explains how you may configure it for your own particular needs...
- Match specifications in Erlang
1 Match specifications in Erlang A "match specification" (match_spec) is an Erlang term describing a small "program" that will try to match something (either the parameters to a function as used in...
- ERTS Release Notes
1 ERTS Release Notes This document describes the changes made to the ERTS application. 1.1 Erts 5.6.3 1.1.1 Fixed Bugs and Malfunctions Only one to_erl process at a time is allowed to connect to the...
- ERTS Release Notes History
1 ERTS Release Notes History 1.1 ERTS 5.4 1.1.1 Fixed Bugs and Malfunctions The BIF is_record(Record,RecordTag) has been added to the run-time system. It checks that Record is a tuple whose first...
- ERTS Release Notes
ERTS User's Guide | ERTS Reference Manual | Release Notes | Off-Print | Top ERTS Release Notes Version 5.6.3 Bibliography | Glossary | Cover Table of Contents 1 ERTS Release Notes 1.1 Erts 5.6.3 1.2...
- ERTS Release Notes
Bibliography erts 5.6.3 Copyright © 1991-2008 Ericsson AB
- ERTS Release Notes
ERTS Release Notes Version 5.6.3 The Erlang Runtime System application ERTS . For information about older versions, see Release Notes History . erts 5.6.3 Copyright © 1991-2008 Ericsson AB
- ERTS Release Notes
This documentation requires a browser that can handle frames
- ERTS Release Notes History
ERTS User's Guide | ERTS Reference Manual | Release Notes | Off-Print | Top ERTS Release Notes History Version 5.6.3 Bibliography | Glossary | Cover Table of Contents 1 ERTS Release Notes History 1.1...
- ERTS Release Notes History
Bibliography erts 5.6.3 Copyright © 1991-2008 Ericsson AB
- ERTS Release Notes History
ERTS Release Notes History Version 5.6.3 The Erlang Runtime System application ERTS . erts 5.6.3 Copyright © 1991-2008 Ericsson AB
- ERTS Release Notes History
This documentation requires a browser that can handle frames
- ERTS Release Notes History
Glossary erts 5.6.3 Copyright © 1991-2008 Ericsson AB
- ERTS Release Notes
Glossary erts 5.6.3 Copyright © 1991-2008 Ericsson AB
- ERTS Reference Manual
ERTS User's Guide | ERTS Reference Manual | Release Notes | Off-Print | Top ERTS Reference Manual Version 5.6.3 Bibliography | Glossary | Index | Cover Table of Contents epmd erl erlc werl escript...
- ERTS Reference Manual
Bibliography erts 5.6.3 Copyright © 1991-2008 Ericsson AB
- ERTS Reference Manual
ERTS Reference Manual Version 5.6.3 The Erlang Runtime System Application ERTS . Note By default, the erts is only guaranteed to be compatible with other Erlang/OTP components from the same release...
- ERTS Reference Manual
This documentation requires a browser that can handle frames
- INDEX
INDEX Emphasized index entries refer to modules and Courier ditos to functions . ErlDrvBinary erl_driver ErlDrvBinary* driver_alloc_binary/1 erl_driver ErlDrvBinary* driver_realloc_binary/2...
- ERTS Reference Manual
Glossary erts 5.6.3 Copyright © 1991-2008 Ericsson AB
- run_erl
run_erl COMMAND run_erl COMMAND SUMMARY Redirect Erlang input and output streams on Solaris DESCRIPTION This describes the run_erl program specific to Solaris/Linux. This program redirect the...
- start
start COMMAND start COMMAND SUMMARY OTP start script example for Unix DESCRIPTION This describes the start script that is an example script on how to startup the Erlang system in embedded mode on...
- start_erl
start_erl COMMAND start_erl COMMAND SUMMARY Start Erlang for embedded systems on Windows NT DESCRIPTION This describes the start_erl program specific to Windows NT. Although there exists programs...
- tty - A command line interface
5 tty - A command line interface tty is a simple command line interface program where keystrokes are collected and interpreted. Completed lines are sent to the shell for interpretation. There is a...
- werl
werl COMMAND werl COMMAND SUMMARY The Erlang Emulator DESCRIPTION On Windows, the preferred way to start the Erlang system for interactive use is: werl <arguments> This will start Erlang in its...
- appmon
appmon MODULE appmon MODULE SUMMARY A graphical node and application process tree viewer. DESCRIPTION The application monitor Appmon is a graphical utility used to supervise applications executing...
- Appmon
1 Appmon 1.1 Introduction The application monitor Appmon is a graphical node and application viewer. The tool shows an overview of all applications on all known nodes, and it is possible to view the...
- Specialized Decodes
2 Specialized Decodes When performance is of highest priority and one is interested in a limited part of the ASN.1 encoded message, before one decide what to do with the rest of it, one may want to...
- Asn1
1 Asn1 1.1 Introduction 1.1.1 Features The Asn1 application provides: An ASN.1 compiler for Erlang, which generates encode and decode functions to be used by Erlang programs sending and receiving...
- asn1ct
asn1ct MODULE asn1ct MODULE SUMMARY ASN.1 compiler and compile-time support functions DESCRIPTION The ASN.1 compiler takes an ASN.1 module as input and genarates a corresponding Erlang module which...
- asn1rt
asn1rt MODULE asn1rt MODULE SUMMARY ASN.1 runtime support functions DESCRIPTION This module is the interface module for the ASN.1 runtime support functions. To encode and decode ASN.1 types in...
- Common Test Basics
1 Common Test Basics 1.1 Introduction The Common Test framework (CT) is a tool which can support implementation and automated execution of test cases towards different types of target systems. The...
- Common Test
Common Test APPLICATION common_test APPLICATION SUMMARY A framework for automatic testing of a variety of target nodes DESCRIPTION The Common Test framework is an environment for writing and...
- Config Files
7 Config Files 7.1 General The Common Test framework uses configuration files to describe data related to a test or a test plant. The configuration data makes it possible to change properties without...
- Code Coverage Analysis
8 Code Coverage Analysis 8.1 General Although Common Test was created primarly for the purpose of black box testing, nothing prevents it from working perfectly as a white box testing tool as well....
- ct
ct MODULE ct MODULE SUMMARY Main user interface for the Common Test framework. DESCRIPTION Main user interface for the Common Test framework. This module implements the command line interface for...
- ct_cover
ct_cover MODULE ct_cover MODULE SUMMARY Common Test Framework code coverage support module. DESCRIPTION Common Test Framework code coverage support module. This module exports help functions for...
- ct_ftp
ct_ftp MODULE ct_ftp MODULE SUMMARY Common Test specific layer on top of OTP ftp clinet ftp.erl. DESCRIPTION Common Test specific layer on top of OTP ftp clinet ftp.erl DATA TYPES connection() =...
- ct_master
ct_master MODULE ct_master MODULE SUMMARY Distributed test execution control for Common Test. DESCRIPTION Distributed test execution control for Common Test. This module exports functions for running...
- Using Common Test for Large Scale Testing
9 Using Common Test for Large Scale Testing 9.1 General Large scale automated testing requires running multiple independent test sessions in parallel. This is accomplished by running a number of...
- ct_rpc
ct_rpc MODULE ct_rpc MODULE SUMMARY Common Test specific layer on Erlang/OTP rpc. DESCRIPTION Common Test specific layer on Erlang/OTP rpc. EXPORTS app_node(App, Candidates) -> NodeName Types: App...
- ct_snmp
ct_snmp MODULE ct_snmp MODULE SUMMARY Common Test specific layer on top of the OTPs snmp. DESCRIPTION Common Test specific layer on top of the OTPs snmp Application to make snmp configuration easier...
- ct_telnet
ct_telnet MODULE ct_telnet MODULE SUMMARY Common Test specific layer on top of telnet client ct_telnet_client.erl. DESCRIPTION Common Test specific layer on top of telnet client ct_telnet_client.erl...
- Dependencies between Test Cases and Suites
11 Dependencies between Test Cases and Suites 11.1 General When creating test suites, it is strongly recommended to not create dependencies between test cases, i.e. letting test cases depend on the...
- Event Handling
10 Event Handling 10.1 General It is possible for the operator of a Common Test system to receive event notifications continously during a test session execution. It is reported e.g. when a test case...
- Examples
5 Examples 5.1 Test suite The example test suite shows some tests of an HTTP client that uses a proxy. -module(httpc_proxy_SUITE). %% Note: This directive should only be used in test suites....
- Installation
2 Installation 2.1 Unix Copy the Common Test and Test Server application directories, common_test-<vsn> and test_server-<vsn> , to a location of your choice. They do not have to be placed...
- The run_test shell script
The run_test shell script APPLICATION run_test APPLICATION SUMMARY Shell script used for starting Common Test from the Unix command line. DESCRIPTION The run_test script is automatically generated as...
- Running Test Suites
6 Running Test Suites 6.1 Using the Common Test Framework The Common Test Framework provides a high level operator interface for testing. It adds the following features to the Erlang/OTP Test Server:...
- Test Structure
4 Test Structure 4.1 Test structure A test consists of a set of test cases. Each test case is implemented as an Erlang function. An Erlang module implementing one or more test cases is called a test...
- unix_telnet
unix_telnet MODULE unix_telnet MODULE SUMMARY Callback module for ct_telnet for talking telnet to a unix host. DESCRIPTION Callback module for ct_telnet for talking telnet to a unix host. It requires...
- Some thoughts about testing
12 Some thoughts about testing 12.1 Goals It's not possible to prove that a program is correct by testing. On the contrary, it has been formally proven that it is impossible to prove programs in...
- Writing Test Suites
3 Writing Test Suites 3.1 Support for test suite authors The ct module provides the main interface for writing test cases. This includes: Functions for printing and logging Functions for reading...
- compile
compile MODULE compile MODULE SUMMARY Erlang Compiler DESCRIPTION This module provides an interface to the standard Erlang compiler. It can generate either a new file which contains the object code,...
- The cosEvent Application
1 The cosEvent Application 1.1 Content Overview The cosEvent documentation is divided into three sections: PART ONE - The User's Guide Description of the cosEvent Application including services and a...
- Event Service
3 Event Service 3.1 Overview of the CosEvent Service The Event service allows programmers to subscribe to information channels. Suppliers can generate events without knowing the consumer identities...
- Introduction to cosEvent
2 Introduction to cosEvent 2.1 Overview The cosEvent application is a Event Service compliant with the OMG Event Service CosEvent. 2.1.1 Purpose and Dependencies CosEvent is dependent on Orber ,...
- cosEventApp
cosEventApp MODULE cosEventApp MODULE SUMMARY The main module of the cosEvent application. DESCRIPTION To get access to the record definitions for the structures use:...
- CosEventChannelAdmin
CosEventChannelAdmin MODULE CosEventChannelAdmin MODULE SUMMARY The CosEventChannelAdmin defines a set if event service interfaces that enables decoupled asynchronous communication between objects...
- CosEventChannelAdmin_ConsumerAdmin
CosEventChannelAdmin_ConsumerAdmin MODULE CosEventChannelAdmin_ConsumerAdmin MODULE SUMMARY This module implements a ConsumerAdmin interface, which allows consumers to be connected to the event...
- CosEventChannelAdmin_EventChannel
CosEventChannelAdmin_EventChannel MODULE CosEventChannelAdmin_EventChannel MODULE SUMMARY This module implements an Event Channel interface, which plays the role of a mediator between consumers and...
- CosEventChannelAdmin_ProxyPullConsumer
CosEventChannelAdmin_ProxyPullConsumer MODULE CosEventChannelAdmin_ProxyPullConsumer MODULE SUMMARY This module implements a ProxyPullConsumer interface which acts as a middleman between pull...
- CosEventChannelAdmin_ProxyPullSupplier
CosEventChannelAdmin_ProxyPullSupplier MODULE CosEventChannelAdmin_ProxyPullSupplier MODULE SUMMARY This module implements a ProxyPullSupplier interface which acts as a middleman between pull...
- CosEventChannelAdmin_ProxyPushConsumer
CosEventChannelAdmin_ProxyPushConsumer MODULE CosEventChannelAdmin_ProxyPushConsumer MODULE SUMMARY This module implements a ProxyPushConsumer interface which acts as a middleman between push...
- CosEventChannelAdmin_ProxyPushSupplier
CosEventChannelAdmin_ProxyPushSupplier MODULE CosEventChannelAdmin_ProxyPushSupplier MODULE SUMMARY This module implements a ProxyPushSupplier interface which acts as a middleman between push...
- CosEventChannelAdmin_SupplierAdmin
CosEventChannelAdmin_SupplierAdmin MODULE CosEventChannelAdmin_SupplierAdmin MODULE SUMMARY This module implements a SupplierAdmin interface, which allows suppliers to be connected to the event...
- Event Domain Service
4 Event Domain Service 4.1 Overview of the CosEventDomain Service The Event Domain service allows programmers to manage a cluster of information channels. 4.1.1 Event Domain Service Components There...
- Quality Of Service and Admin Properties
3 Quality Of Service and Admin Properties 3.1 Quality Of Service and Admin Properties This chapter explains the allowed properties it is possible to set for this application. 3.1.1 Quality Of Service...
- CosEventDomainAdmin
CosEventDomainAdmin MODULE CosEventDomainAdmin MODULE SUMMARY This module export functions which return QoS and Admin Properties constants. DESCRIPTION To get access to all definitions include...
- CosEventDomainAdmin_EventDomain
CosEventDomainAdmin_EventDomain MODULE CosEventDomainAdmin_EventDomain MODULE SUMMARY This module implements the Event Domain interface. DESCRIPTION To get access to all definitions include necessary...
- CosEventDomainAdmin_EventDomainFactory
CosEventDomainAdmin_EventDomainFactory MODULE CosEventDomainAdmin_EventDomainFactory MODULE SUMMARY This module implements an Event Domain Factory interface, which is used to create new Event Domain...
- cosEventDomainApp
cosEventDomainApp MODULE cosEventDomainApp MODULE SUMMARY The main module of the cosEventDomain application. DESCRIPTION To get access to the record definitions for the structures use:...
- cosFileTransfer Examples
5 cosFileTransfer Examples 5.1 A tutorial on how to create a simple service 5.1.1 Initiate the application To use the complete cosFileTransfer application cosProperty must be installed. 5.1.2 How to...
- Installing cosFileTransfer
3 Installing cosFileTransfer 3.1 Installation Process This chapter describes how to install cosFileTransferApp in an Erlang Environment. 3.1.1 Preparation Before starting the installation process for...
- Using the File Transfer Service
4 Using the File Transfer Service 4.1 Overview This chapter describes how two File Transfer Service applications interact. 4.1.1 Components There are several ways the OMG File Transfer Service can be...
- CosFileTransfer_Directory
CosFileTransfer_Directory MODULE CosFileTransfer_Directory MODULE SUMMARY This module implements the OMG CosFileTransfer::Directory interface. DESCRIPTION To get access to the record definitions for...
- CosFileTransfer_File
CosFileTransfer_File MODULE CosFileTransfer_File MODULE SUMMARY This module implements the OMG CosFileTransfer::File interface. DESCRIPTION To get access to the record definitions for the structures...
- CosFileTransfer_FileIterator
CosFileTransfer_FileIterator MODULE CosFileTransfer_FileIterator MODULE SUMMARY This module implements the OMG CosFileTransfer::FileIterator interface. DESCRIPTION To get access to the record...
- CosFileTransfer_FileTransferSession
CosFileTransfer_FileTransferSession MODULE CosFileTransfer_FileTransferSession MODULE SUMMARY This module implements the OMG CosFileTransfer::FileTransferSession interface. DESCRIPTION To get access...
- CosFileTransfer_VirtualFileSystem
CosFileTransfer_VirtualFileSystem MODULE CosFileTransfer_VirtualFileSystem MODULE SUMMARY This module implements the OMG CosFileTransfer::VirtualFileSystem interface. DESCRIPTION To get access to the...
- cosFileTransferApp
cosFileTransferApp MODULE cosFileTransferApp MODULE SUMMARY The main module of the cosFileTransfer application. DESCRIPTION To get access to the record definitions for the structures use:...
- Filters and the Constraint Language BNF
5 Filters and the Constraint Language BNF 5.1 Filters and the Constraint Language BNF This chapter describes, the grammar supported by CosNotifyFilter_Filter and CosNotifyFilter_MappingFilter , and...
- CosNotification
CosNotification MODULE CosNotification MODULE SUMMARY This module export functions which return QoS and Admin Properties constants. DESCRIPTION To get access to all definitions include necessary hrl...
- CosNotification_AdminPropertiesAdmin
CosNotification_AdminPropertiesAdmin MODULE CosNotification_AdminPropertiesAdmin MODULE SUMMARY This module implements the OMG CosNotification::AdminPropertiesAdmin interface. DESCRIPTION To get...
- CosNotification_QoSAdmin
CosNotification_QoSAdmin MODULE CosNotification_QoSAdmin MODULE SUMMARY This module implements the OMG CosNotification::QoSAdmin interface. DESCRIPTION To get access to the record definitions for the...
- cosNotificationApp
cosNotificationApp MODULE cosNotificationApp MODULE SUMMARY The main module of the cosNotification application. DESCRIPTION To get access to the record definitions for the structures use:...
- CosNotifyChannelAdmin_ConsumerAdmin
CosNotifyChannelAdmin_ConsumerAdmin MODULE CosNotifyChannelAdmin_ConsumerAdmin MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::ConsumerAdmin interface. DESCRIPTION To get access...
- CosNotifyChannelAdmin_EventChannel
CosNotifyChannelAdmin_EventChannel MODULE CosNotifyChannelAdmin_EventChannel MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::EventChannel interface. DESCRIPTION To get access to...
- CosNotifyChannelAdmin_EventChannelFactory
CosNotifyChannelAdmin_EventChannelFactory MODULE CosNotifyChannelAdmin_EventChannelFactory MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::EventChannelFactory interface....
- CosNotifyChannelAdmin_ProxyConsumer
CosNotifyChannelAdmin_ProxyConsumer MODULE CosNotifyChannelAdmin_ProxyConsumer MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::ProxyConsumer interface. DESCRIPTION To get access...
- CosNotifyChannelAdmin_ProxyPullConsumer
CosNotifyChannelAdmin_ProxyPullConsumer MODULE CosNotifyChannelAdmin_ProxyPullConsumer MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::ProxyPullConsumer interface. DESCRIPTION To...
- CosNotifyChannelAdmin_ProxyPullSupplier
CosNotifyChannelAdmin_ProxyPullSupplier MODULE CosNotifyChannelAdmin_ProxyPullSupplier MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::ProxyPullSupplier interface. DESCRIPTION To...
- CosNotifyChannelAdmin_ProxyPushConsumer
CosNotifyChannelAdmin_ProxyPushConsumer MODULE CosNotifyChannelAdmin_ProxyPushConsumer MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::ProxyPushConsumer interface. DESCRIPTION To...
- CosNotifyChannelAdmin_ProxyPushSupplier
CosNotifyChannelAdmin_ProxyPushSupplier MODULE CosNotifyChannelAdmin_ProxyPushSupplier MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::ProxyPushSupplier interface. DESCRIPTION To...
- CosNotifyChannelAdmin_ProxySupplier
CosNotifyChannelAdmin_ProxySupplier MODULE CosNotifyChannelAdmin_ProxySupplier MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::ProxySupplier interface. DESCRIPTION To get access...
- CosNotifyChannelAdmin_SequenceProxyPullConsumer
CosNotifyChannelAdmin_SequenceProxyPullConsumer MODULE CosNotifyChannelAdmin_SequenceProxyPullConsumer MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::SequenceProxyPullConsumer...
- CosNotifyChannelAdmin_SequenceProxyPullSupplier
CosNotifyChannelAdmin_SequenceProxyPullSupplier MODULE CosNotifyChannelAdmin_SequenceProxyPullSupplier MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::SequenceProxyPullSupplier...
- CosNotifyChannelAdmin_SequenceProxyPushConsumer
CosNotifyChannelAdmin_SequenceProxyPushConsumer MODULE CosNotifyChannelAdmin_SequenceProxyPushConsumer MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::SequenceProxyPushConsumer...
- CosNotifyChannelAdmin_SequenceProxyPushSupplier
CosNotifyChannelAdmin_SequenceProxyPushSupplier MODULE CosNotifyChannelAdmin_SequenceProxyPushSupplier MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::SequenceProxyPushSupplier...
- CosNotifyChannelAdmin_StructuredProxyPullConsumer
CosNotifyChannelAdmin_StructuredProxyPullConsumer MODULE CosNotifyChannelAdmin_StructuredProxyPullConsumer MODULE SUMMARY This module implements the OMG...
- CosNotifyChannelAdmin_StructuredProxyPullSupplier
CosNotifyChannelAdmin_StructuredProxyPullSupplier MODULE CosNotifyChannelAdmin_StructuredProxyPullSupplier MODULE SUMMARY This module implements the OMG...
- CosNotifyChannelAdmin_StructuredProxyPushConsumer
CosNotifyChannelAdmin_StructuredProxyPushConsumer MODULE CosNotifyChannelAdmin_StructuredProxyPushConsumer MODULE SUMMARY This module implements the OMG...
- CosNotifyChannelAdmin_StructuredProxyPushSupplier
CosNotifyChannelAdmin_StructuredProxyPushSupplier MODULE CosNotifyChannelAdmin_StructuredProxyPushSupplier MODULE SUMMARY This module implements the OMG...
- CosNotifyChannelAdmin_SupplierAdmin
CosNotifyChannelAdmin_SupplierAdmin MODULE CosNotifyChannelAdmin_SupplierAdmin MODULE SUMMARY This module implements the OMG CosNotifyChannelAdmin::SupplierAdmin interface. DESCRIPTION To get access...
- CosNotifyComm_NotifyPublish
CosNotifyComm_NotifyPublish MODULE CosNotifyComm_NotifyPublish MODULE SUMMARY This module implements the OMG CosNotifyComm::NotifyPublish interface. DESCRIPTION To get access to the record...
- CosNotifyComm_NotifySubscribe
CosNotifyComm_NotifySubscribe MODULE CosNotifyComm_NotifySubscribe MODULE SUMMARY This module implements the OMG CosNotifyComm::NotifySubscribe interface. DESCRIPTION To get access to the record...
- CosNotifyFilter_Filter
CosNotifyFilter_Filter MODULE CosNotifyFilter_Filter MODULE SUMMARY This module implements the OMG CosNotifyFilter::Filter interface. DESCRIPTION To get access to the record definitions for the...
- CosNotifyFilter_FilterAdmin
CosNotifyFilter_FilterAdmin MODULE CosNotifyFilter_FilterAdmin MODULE SUMMARY This module implements the OMG CosNotifyFilter::FilterAdmin interface. DESCRIPTION To get access to the record...
- CosNotifyFilter_FilterFactory
CosNotifyFilter_FilterFactory MODULE CosNotifyFilter_FilterFactory MODULE SUMMARY This module implements the OMG CosNotifyFilter::FilterFactory interface. DESCRIPTION To get access to the record...
- CosNotifyFilter_MappingFilter
CosNotifyFilter_MappingFilter MODULE CosNotifyFilter_MappingFilter MODULE SUMMARY This module implements the OMG CosNotifyFilter::MappingFilter interface. DESCRIPTION The main purpose of this module...
- cosProperty
cosProperty MODULE cosProperty MODULE SUMMARY The main module of the cosProperty application DESCRIPTION To get access to the record definitions for the structures use:...
- CosPropertyService_PropertiesIterator
CosPropertyService_PropertiesIterator MODULE CosPropertyService_PropertiesIterator MODULE SUMMARY This module implements the OMG CosPropertyService::PropertiesIterator interface. DESCRIPTION To get...
- CosPropertyService_PropertyNamesIterator
CosPropertyService_PropertyNamesIterator MODULE CosPropertyService_PropertyNamesIterator MODULE SUMMARY This module implements the OMG CosPropertyService::PropertyNamesIterator interface. DESCRIPTION...
- CosPropertyService_PropertySet
CosPropertyService_PropertySet MODULE CosPropertyService_PropertySet MODULE SUMMARY This module implements the OMG CosPropertyService::PropertySet interface. DESCRIPTION To get access to the record...
- CosPropertyService_PropertySetDef
CosPropertyService_PropertySetDef MODULE CosPropertyService_PropertySetDef MODULE SUMMARY This module implements the OMG CosPropertyService::PropertySetDef interface. DESCRIPTION To get access to the...
- CosPropertyService_PropertySetDefFactory
CosPropertyService_PropertySetDefFactory MODULE CosPropertyService_PropertySetDefFactory MODULE SUMMARY This module implements the OMG CosPropertyService::PropertySetDefFactory interface. DESCRIPTION...
- CosPropertyService_PropertySetFactory
CosPropertyService_PropertySetFactory MODULE CosPropertyService_PropertySetFactory MODULE SUMMARY This module implements the OMG CosPropertyService::PropertySetFactory interface. DESCRIPTION To get...
- cosTime
cosTime MODULE cosTime MODULE SUMMARY The main module of the cosTime application DESCRIPTION To get access to the record definitions for the structures use: -include_lib("cosTime/include/*.hrl")....
- CosTime_TimeService
CosTime_TimeService MODULE CosTime_TimeService MODULE SUMMARY This module implements the OMG CosTime::TimeService interface. DESCRIPTION To get access to the record definitions for the structures...
- CosTime_TIO
CosTime_TIO MODULE CosTime_TIO MODULE SUMMARY This module implements the OMG CosTime::TIO interface. DESCRIPTION To get access to the record definitions for the structures use:...
- CosTime_UTO
CosTime_UTO MODULE CosTime_UTO MODULE SUMMARY This module implements the OMG CosTime::UTO interface. DESCRIPTION To get access to the record definitions for the structures use:...
- CosTimerEvent_TimerEventHandler
CosTimerEvent_TimerEventHandler MODULE CosTimerEvent_TimerEventHandler MODULE SUMMARY This module implements the OMG CosTimerEvent::TimerEventHandler interface. DESCRIPTION To get access to the...
- CosTimerEvent_TimerEventService
CosTimerEvent_TimerEventService MODULE CosTimerEvent_TimerEventService MODULE SUMMARY This module implements the OMG CosTimerEvent::TimerEventService interface. DESCRIPTION To get access to the...
- Resource Skeletons
5 Resource Skeletons 5.1 Resource Skeletons This chapter provides a skeleton for application Resources. For more information see the Orber documentation....
- cosTransactions
cosTransactions MODULE cosTransactions MODULE SUMMARY The main module of the cosTransactions application. DESCRIPTION To get access to the record definitions for the structures use:...
- CosTransactions_Control
CosTransactions_Control MODULE CosTransactions_Control MODULE SUMMARY This module implements the OMG CosTransactions::Control interface. DESCRIPTION To get access to the record definitions for the...
- CosTransactions_Coordinator
CosTransactions_Coordinator MODULE CosTransactions_Coordinator MODULE SUMMARY This module implements the OMG CosTransactions::Coordinator interface. DESCRIPTION To get access to the record...
- CosTransactions_RecoveryCoordinator
CosTransactions_RecoveryCoordinator MODULE CosTransactions_RecoveryCoordinator MODULE SUMMARY This module implements the OMG CosTransactions::RecoveryCoordinator interface. DESCRIPTION To get access...
- CosTransactions_Resource
CosTransactions_Resource MODULE CosTransactions_Resource MODULE SUMMARY This module implements the OMG CosTransactions::Resource interface. DESCRIPTION To get access to the record definitions for the...
- CosTransactions_SubtransactionAwareResource
CosTransactions_SubtransactionAwareResource MODULE CosTransactions_SubtransactionAwareResource MODULE SUMMARY This module implements the OMG CosTransactions::SubtransactionAwareResource interface....
- CosTransactions_Terminator
CosTransactions_Terminator MODULE CosTransactions_Terminator MODULE SUMMARY This module implements the OMG CosTransactions::Terminator interface. DESCRIPTION To get access to the record definitions...
- CosTransactions_TransactionFactory
CosTransactions_TransactionFactory MODULE CosTransactions_TransactionFactory MODULE SUMMARY This module implements the OMG CosTransactions::TransactionFactory interface. DESCRIPTION To get access to...
- crypto
crypto MODULE crypto MODULE SUMMARY Crypto Functions DESCRIPTION This module provides a set of cryptographic functions. References: md5: The MD5 Message Digest Algorithm (RFC 1321) sha: Secure Hash...
- crypto
crypto APPLICATION crypto APPLICATION SUMMARY The Crypto Application DESCRIPTION The purpose of the Crypto application is to provide message digest and DES encryption for SMNPv3. It provides...
- Licenses
1 Licenses This chapter contains in extenso versions of the OpenSSL and SSLeay licenses. 1.1 OpenSSL License /* ==================================================================== * Copyright (c)...
- Crypto Release Notes
User's Guide | Reference Manual | Release Notes | Off-Print | Top Crypto Release Notes Version 1.5.2 Bibliography | Glossary | Cover Table of Contents 1 Crypto Release Notes 1.1 Crypto 1.5.2 1.2...
- Crypto Release Notes
Bibliography crypto 1.5.2 Copyright © 1991-2008 Ericsson AB
- Crypto Release Notes
Crypto Release Notes Version 1.5.2 The Crypto Application provides functions for computation of message digests, and encryption and decryption functions. This product includes software developed by...
- Crypto Release Notes
This documentation requires a browser that can handle frames
- Crypto Release Notes
Glossary crypto 1.5.2 Copyright © 1991-2008 Ericsson AB
- Crypto User's Guide
User's Guide | Reference Manual | Release Notes | Off-Print | Top Crypto User's Guide Version 1.5.2 Bibliography | Glossary | Cover Table of Contents 1 Licenses 1.1 OpenSSL License 1.2 SSLeay License
- Crypto User's Guide
Bibliography crypto 1.5.2 Copyright © 1991-2008 Ericsson AB
- Crypto User's Guide
Crypto User's Guide Version 1.5.2 The Crypto application provides functions for computation of message digests, and functions for encryption and decryption. This product includes software developed...
- Crypto User's Guide
This documentation requires a browser that can handle frames
- Crypto User's Guide
Glossary crypto 1.5.2 Copyright © 1991-2008 Ericsson AB
- debugger
debugger MODULE debugger MODULE SUMMARY Erlang Debugger DESCRIPTION Erlang Debugger for debugging and testing of Erlang programs. EXPORTS start() start(File) start(Mode) start(Mode, File) Types: Mode...
- Debugger
1 Debugger 1.1 Introduction Debugger is a graphical user interface for the Erlang interpreter, which can be used for debugging and testing of Erlang programs. For example, breakpoints can be set,...
- i
i MODULE i MODULE SUMMARY Debugger/Interpreter Interface DESCRIPTION The module i provides short forms for some of the functions used by the graphical Debugger and some of the functions in the int...
- int
int MODULE int MODULE SUMMARY Interpreter Interface DESCRIPTION The Erlang interpreter provides mechanisms for breakpoints and stepwise execution of code. It is mainly intended to be used by the...
- dialyzer
dialyzer MODULE dialyzer MODULE SUMMARY The Dialyzer, a DIscrepancy AnalYZer for ERlang programs DESCRIPTION The Dialyzer is a static analysis tool that identifies software discrepancies such as type...
- Dialyzer
1 Dialyzer 1.1 Introduction Dialyzer is a static analysis tool that identifies software discrepancies such as type errors, unreachable code, unnecessary tests, etc in single Erlang modules or entire...
- Block Tags
6 Block Tags Block tags typically define a separate block of information, such as a paragraph or a list. The following subset of block tags are common for all DTDs in the DocBuilder DTD suite:...
- Character Entities
8 Character Entities 8.1 Added Latin 1 The DocBuilder DTD suite uses the same character entities as defined in HTML 3.2 ( ISO 8879-1986//ENTITIES Added Latin 1//EN//HTML ). That is: for an &...
- docb_gen
docb_gen MODULE docb_gen MODULE SUMMARY Generate XML from EDoc comments in Erlang source code. DESCRIPTION docb_gen contains functions for generating XML documentation source code according to the...
- docb_transform
docb_transform MODULE docb_transform MODULE SUMMARY Transform XML to HTML DESCRIPTION docb_transform contains functions for transforming XML documentation source code to HTML. EXPORTS file(File)...
- docb_xml_check
docb_xml_check MODULE docb_xml_check MODULE SUMMARY Validate XML documentation source code DESCRIPTION docb_xml_check contains functions for validating XML documentation source code. EXPORTS...
- docbuilder
docbuilder APPLICATION docbuilder APPLICATION SUMMARY The DocBuilder Application DESCRIPTION DocBuilder provides functionality for generating HTML documentation for Erlang modules and Erlang/OTP...
- Fascicules DTDs
4 Fascicules DTDs 4.1 The fascicules DTD The fascicules DTD is a special kind of DTD which can be used to specify the different parts of the documentation, and which one of those should be shown as...
- Header Tags
5 Header Tags Each document begins with a header part, which looks the same for all DTDs. Here the title of the document is specified, as well as administrative data like who is responsible for the...
- Inline Tags
7 Inline Tags Inline tags are typically used within block tags, for example to highlight a word within a paragraph. 7.1 <br> - Line Break Forces a newline. The <br> tag is both a block-...
- Reference Manual DTDs
3 Reference Manual DTDs There are five DTDs for writing manual pages about applications, shell commands, C libraries, Erlang modules and files, all with a similar structure: A header. Name of the...
- User's Guide DTDs
2 User's Guide DTDs 2.1 The part DTD The part DTD is intended for a "normal" document, like the User's Guide or Release Notes. First are some paragraphs introducing the main contents. After that...
- Welcome to EDoc
1 Welcome to EDoc EDoc is the Erlang program documentation generator. Inspired by the Javadoc(TM) tool for the Java(TM) programming language, EDoc is adapted to the conventions of the Erlang world,...
- edoc
edoc MODULE edoc MODULE SUMMARY EDoc - the Erlang program documentation generator. DESCRIPTION EDoc - the Erlang program documentation generator. This module provides the main user interface to EDoc....
- edoc_doclet
edoc_doclet MODULE edoc_doclet MODULE SUMMARY Standard doclet module for EDoc. DESCRIPTION Standard doclet module for EDoc. DATA TYPES doclet_gen() = #doclet_gen{sources=[string()], app=no_app() |...
- edoc_extract
edoc_extract MODULE edoc_extract MODULE SUMMARY EDoc documentation extraction. DESCRIPTION EDoc documentation extraction. DATA TYPES edoc_env() = edoc_env() (see module edoc_lib) filename() =...
- edoc_layout
edoc_layout MODULE edoc_layout MODULE SUMMARY The standard HTML layout module for EDoc. DESCRIPTION The standard HTML layout module for EDoc. See the edoc module for details on usage. EXPORTS...
- edoc_lib
edoc_lib MODULE edoc_lib MODULE SUMMARY Utility functions for EDoc. DESCRIPTION Utility functions for EDoc. DATA TYPES edoc_env() Environment information needed by EDoc for generating references. The...
- edoc_run
edoc_run MODULE edoc_run MODULE SUMMARY Interface for calling EDoc from Erlang startup options. DESCRIPTION Interface for calling EDoc from Erlang startup options. The following is an example of...
- ei
ei C LIBRARY ei C LIBRARY SUMMARY routines for handling the erlang binary term format DESCRIPTION The library ei contains macros and functions to encode and decode the erlang binary term format. With...
- ei_connect
ei_connect C LIBRARY ei_connect C LIBRARY SUMMARY Communicate with distributed erlang DESCRIPTION This module enables C programs to communicate with erlang nodes, using the erlang distribution over...
- The El Library User's Guide
1 The El Library User's Guide The Erl_Interface library contains functions. which help you integrate programs written in C and Erlang. The functions in Erl_Interface support the following:...
- erl_call
erl_call COMMAND erl_call COMMAND SUMMARY Call/Start a Distributed Erlang Node DESCRIPTION erl_call makes it possible to start and/or communicate with a distributed Erlang node. It is built upon the...
- erl_connect
erl_connect C LIBRARY erl_connect C LIBRARY SUMMARY Communicate with Distributed Erlang DESCRIPTION This module provides support for communication between distributed Erlang nodes and C nodes, in a...
- erl_error
erl_error C LIBRARY erl_error C LIBRARY SUMMARY Error Print Routines DESCRIPTION This module contains some error printing routines taken from Advanced Programming in the UNIX Environment by W....
- erl_eterm
erl_eterm C LIBRARY erl_eterm C LIBRARY SUMMARY Functions for Erlang Term Construction DESCRIPTION This module contains functions for creating and manipulating Erlang terms. An Erlang term is...
- erl_format
erl_format C LIBRARY erl_format C LIBRARY SUMMARY Create and Match Erlang Terms DESCRIPTION This module contains two routines - one general function for creating Erlang terms and one for pattern...
- erl_global
erl_global C LIBRARY erl_global C LIBRARY SUMMARY Access globally registered names DESCRIPTION This module provides support for registering, looking up and unregistering names in the Erlang Global...
- erl_malloc
erl_malloc C LIBRARY erl_malloc C LIBRARY SUMMARY Memory Allocation Functions DESCRIPTION This module provides functions for allocating and deallocating memory. EXPORTS ETERM * erl_alloc_eterm(etype)...
- erl_marshal
erl_marshal C LIBRARY erl_marshal C LIBRARY SUMMARY Encoding and Decoding of Erlang terms DESCRIPTION This module contains functions for encoding Erlang terms into a sequence of bytes, and for...
- EI User's Guide
EI User's Guide | EI Library Reference | Erl_interface Library Reference | Command Reference | Release Notes | Off-Print | Top EI User's Guide Version 3.5.7 Bibliography | Glossary | Cover Table of...
- EI User's Guide
Bibliography erl_interface 3.5.7 Copyright © 1991-2008 Ericsson AB
- EI User's Guide
EI User's Guide Version 3.5.7 erl_interface 3.5.7 Copyright © 1991-2008 Ericsson AB
- EI User's Guide
This documentation requires a browser that can handle frames
- EI User's Guide
Glossary erl_interface 3.5.7 Copyright © 1991-2008 Ericsson AB
- EI Library Reference
EI User's Guide | EI Library Reference | Erl_interface Library Reference | Command Reference | Release Notes | Off-Print | Top EI Library Reference Version 3.5.7 Bibliography | Glossary | Index |...
- EI Library Reference
Bibliography erl_interface 3.5.7 Copyright © 1991-2008 Ericsson AB
- EI Library Reference
EI Library Reference Version 3.5.7 The ei library is a C interface library for communication with Erlang . Note By default, the ei library is only guaranteed to be compatible with other Erlang/OTP...
- EI Library Reference
This documentation requires a browser that can handle frames
- INDEX
INDEX Emphasized index entries refer to modules and Courier ditos to functions .
- EI Library Reference
Glossary erl_interface 3.5.7 Copyright © 1991-2008 Ericsson AB
- Erl_Interface Library Reference
EI User's Guide | EI Library Reference | Erl_interface Library Reference | Command Reference | Release Notes | Off-Print | Top Erl_Interface Library Reference Version 3.5.7 Bibliography | Glossary |...
- Erl_Interface Library Reference
Bibliography erl_interface 3.5.7 Copyright © 1991-2008 Ericsson AB
- Erl_Interface Library Reference
Erl_Interface Library Reference Version 3.5.7 The erl_interface library is a C interface library for communication with Erlang . Note By default, the erl_interface library is only guaranteed to be...
- Erl_Interface Library Reference
This documentation requires a browser that can handle frames
- INDEX
INDEX Emphasized index entries refer to modules and Courier ditos to functions .
- Erl_Interface Library Reference
Glossary erl_interface 3.5.7 Copyright © 1991-2008 Ericsson AB
- registry
registry C LIBRARY Registry C LIBRARY SUMMARY Store and backup key-value pairs DESCRIPTION This module provides support for storing key-value pairs in a table known as a registry, backing up...
- et
et MODULE et MODULE SUMMARY Main API of the Event Trace (ET) application DESCRIPTION Interface module for the Event Trace (ET) application EXPORTS report_event(DetailLevel, FromTo, Label, Contents)...
- Usage
2 Usage 2.1 Overview The two major components of the Event Tracer (ET) tool is a graphical sequence chart viewer ( et_viewer ) and its backing storage ( et_collector ). One collector may be used as...
- et_collector
et_collector MODULE et_collector MODULE SUMMARY Collect trace events and provide a backing storage appropriate for iteration DESCRIPTION Interface module for the Event Trace (ET) application EXPORTS...
- Examples
3 Examples 3.1 A simulated Mnesia transaction The Erlang code for running the simulated Mnesia transaction example in the previous chapter is included in the et/examples/et_demo.erl file: sim_trans()...
- Introduction
1 Introduction The Event Tracer (ET) uses the built-in trace mechanism in Erlang and provides tools for collection and graphical viewing of trace data. The viewed trace data is normally collected...
- et_selector
et_selector MODULE et_selector MODULE SUMMARY Define event transforms and trace patterns DESCRIPTION EXPORTS make_pattern(RawPattern) -> TracePattern Types: RawPattern = detail_level()...
- et_viewer
et_viewer MODULE et_viewer MODULE SUMMARY Displays a sequence chart for trace events (messages/actions) DESCRIPTION EXPORTS file(FileName) -> {ok, ViewerPid} | {error, Reason} Types: FileName() =...
- gs
gs MODULE gs MODULE SUMMARY The Graphics System for Erlang. DESCRIPTION The Graphics System, GS, is easy to learn and designed to be portable to many different platforms. In the description below,...
- GS - The Graphics System
1 GS - The Graphics System 1.1 Introduction This section describes the general graphics interface to Erlang. This system was designed with the following requirements in mind: a graphics system which...
- Interface Functions
2 Interface Functions 2.1 Overview The following interface functions are included with the graphics system: gs:start(). This function starts the graphics server and returns its object identifier. If...
- Options
3 Options 3.1 The Option Concept Each object has a set of options. The options are key-value tuples and the key is an atom. Depending on the option, the value can be any Erlang term. Typical options...
- Events
4 Events 4.1 Event Messages Events are messages which are sent to the owner process of the object when the user interacts with the object in some way. A simple case is the user pressing a button. An...
- Fonts
5 Fonts 5.1 The Font Model Text related objects can be handled with the font option {font,Font} . A Font is represented as a two or three tuple: {Family,Size} {Family,Style,Size} Examples of fonts...
- Default Values
6 Default Values 6.1 The Default Value Model When a new object is created, a set of options is provided by the application. Options which are not explicitly given are taken care of by the parent (the...
- The Packer
7 The Packer 7.1 The Packer This section describes the geometry manager in GS. When the user resizes a window, the application normally has to resize and move the graphical objects in the window to...
- Built-In Objects
8 Built-In Objects 8.1 Overview This section describes the built-in objects of the graphics interface. The following objects exist: Window An ordinary window. Button A simple press button....
- OMG IDL
2 OMG IDL 2.1 OMG IDL - Overview The purpose of OMG IDL, Interface Definition Language , mapping is to act as translator between platforms and languages. An IDL specification is supposed to describe...
- The C Client Back-end
7 The C Client Back-end 7.1 Introduction With the option {be, c_client} the IDL Compiler generates C client stubs according to the IDL to C mapping, on top of the Erlang distribution and gen_server...
- CORBA_Environment C Structure
9 CORBA_Environment C Structure This chapter describes the CORBA_Environment C structure. 9.1 C Structure Here is the complete definition of the CORBA_Environment C structure, defined in file "ic.h"...
- IDL to C mapping
6 IDL to C mapping 6.1 Introduction The IC C mapping (used by the C client and C server back-ends) follows the OMG C Language Mapping Specification . The C mapping supports the following: All OMG IDL...
- The C Server Back-end
8 The C Server Back-end 8.1 Introduction With the option {be, c_server} the IDL Compiler generates C server skeletons according to the IDL to C mapping, on top of the Erlang distribution and...
- Using the Erlang Generic Server Back-end
5 Using the Erlang Generic Server Back-end 5.1 Introduction The mapping of OMG IDL to the Erlang programming language when Erlang generic server is the back-end of choice is similar to the one used...
- Using the Plain Erlang Back-end
4 Using the Plain Erlang Back-end 4.1 Introduction The mapping of OMG IDL to the Erlang programming language when Plain Erlang is the back-end of choice is similar to the one used in pure Erlang IDL...
- IC Protocol
3 IC Protocol The purpose of this chapter is to explain the bits and bytes of the IC protocol, which is a composition of the Erlang distribution protocol and the Erlang/OTP gen_server protocol. If...
- IDL to Java language Mapping
10 IDL to Java language Mapping 10.1 Introduction This chapter describes the mapping of OMG IDL constructs to the Java programming language for the generation of native Java - Erlang communication....
- ic
ic MODULE ic MODULE SUMMARY The Erlang IDL Compiler DESCRIPTION The ic module is an Erlang implementation of an OMG IDL compiler. Depending on the choice of back-end the code will map to Erlang, C,...
- IC C Protocol Functions
IC C Protocol Functions C LIBRARY ic_c_protocol C LIBRARY SUMMARY IC C Protocol Functions DESCRIPTION This manual page lists some of the functions of the IC C runtime library that are used internally...
- IC C Library Functions
IC C Library Functions C LIBRARY ic_clib C LIBRARY SUMMARY IC C Library Functions DESCRIPTION This manual page lists some of the functions in the IC C runtime library. Allocation and Deallocation...
- ftp
ftp MODULE ftp MODULE SUMMARY A File Transfer Protocol client DESCRIPTION The ftp module implements a client for file transfer according to a subset of the File Transfer Protocol (see RFC 959)....
- FTP Client
2 FTP Client 2.1 Introduction Ftp clients are consider to be rather temporary and are for that reason only started and stopped during runtime and can not be started at application startup. Due to the...
- http
http MODULE http MODULE SUMMARY An HTTP/1.1 client DESCRIPTION This module provides the API to a HTTP/1.1 client according to RFC 2616, caching is currentyl not supported. Note When starting the...
- HTTP Client
3 HTTP Client 3.1 Introduction The HTTP client default profile will be started when the inets application is started and is then available to all processes on that erlang node. Other profiles may...
- HTTP server
4 HTTP server 4.1 Introduction The HTTP server, also referred to as httpd, handles HTTP requests as described in RFC 2616 with a few exceptions such as gateway and proxy functionality. The server...
- httpd
httpd MODULE httpd MODULE SUMMARY An implementation of an HTTP 1.1 compliant Web server, as defined in RFC 2616. DESCRIPTION Documents the HTTP server start options, some administrative functions and...
- httpd_conf
httpd_conf MODULE httpd_conf MODULE SUMMARY Configuration utility functions to be used by the Erlang Web server API programmer. DESCRIPTION This module provides the Erlang Webserver API programmer...
- httpd_socket
httpd_socket MODULE httpd_socket MODULE SUMMARY Communication utility functions to be used by the Erlang Web server API programmer. DESCRIPTION This module provides the Erlang Web server API module...
- httpd_util
httpd_util MODULE httpd_util MODULE SUMMARY Miscellaneous utility functions to be used when implementing Erlang Web server API modules. DESCRIPTION This module provides the Erlang Web Server API...
- inets
inets MODULE inets MODULE SUMMARY The inets services API DESCRIPTION This module provides the most basic API to the clients and servers, that are part of the Inets application, such as start and...
- Introduction
1 Introduction 1.1 Purpose Inets is a container for Internet clients and servers. Currently, an HTTP client and server, a TFPT client and server, and a FTP client has been incorporated into Inets....
- mod_alias
mod_alias MODULE mod_alias MODULE SUMMARY URL ailasing. DESCRIPTION Erlang Webserver Server internal API for handling of things such as interaction data exported by the mod_alias module. EXPORTS...
- mod_auth
mod_auth MODULE mod_auth MODULE SUMMARY User authentication using text files, dets or mnesia database. DESCRIPTION This module provides for basic user authentication using textual files, dets...
- mod_esi
mod_esi MODULE mod_esi MODULE SUMMARY Erlang Server Interface DESCRIPTION This module defines the API - Erlang Server Interface (ESI). Which is a more efficient way of writing erlang scripts for your...
- mod_security
mod_security MODULE mod_security MODULE SUMMARY Security Audit and Trailing Functionality DESCRIPTION Security Audit and Trailing Functionality EXPORTS list_auth_users(Port) -> Users | []...
- tftp
tftp MODULE tftp MODULE SUMMARY Trivial FTP DESCRIPTION This is a complete implementation of the following IETF standards: RFC 1350, The TFTP Protocol (revision 2). RFC 2347, TFTP Option Extension....
- inviso
inviso MODULE inviso MODULE SUMMARY Main API Module to the Inviso Tracer DESCRIPTION With the inviso API runtime components can be started and tracing managed across a network of distributed Erlang...
- inviso_as_lib
inviso_as_lib MODULE inviso_as_lib MODULE SUMMARY The Inviso Autostart Utility Library DESCRIPTION The purpose of the Inviso autostart utility library is to facilitate the creation and modification...
- Inviso
1 Inviso 1.1 Introduction inviso : (Latin) to go to see, visit, inspect, look at. The Inviso trace system consists of one or several runtime components supposed to run on each Erlang node doing...
- inviso_lfm
inviso_lfm MODULE inviso_lfm MODULE SUMMARY An Inviso Off-Line Logfile Merger DESCRIPTION Implements an off-line logfile merger, merging binary trace-log files from several nodes together in...
- inviso_lfm_tpfreader
inviso_lfm_tpfreader MODULE inviso_lfm_tpfreader MODULE SUMMARY Inviso Standard Reader Process to Standard Logfile Merger DESCRIPTION Implements the standard reader process to the standard logfile...
- inviso_rt
inviso_rt MODULE inviso_rt MODULE SUMMARY Direct API to the Inviso Runtime Component DESCRIPTION The inviso_rt API is normally only used when programming autostart scripts or similar mechanisms. The...
- inviso_rt_meta
inviso_rt_meta MODULE inviso_rt_meta MODULE SUMMARY Direct API to the Inviso Runtime Component's meta tracer DESCRIPTION This module provides a direct API to the inviso meta tracer. These functions...
- The Jinterface Package
1 The Jinterface Package The Jinterface package provides a set of tools for communication with Erlang processes. It can also be used for communication with other Java processes using the same...
- Java-Erlang Interface Library: Class AbstractConnection
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class AbstractNode
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class GenericQueue
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpAuthException
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpConnection
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpCookedConnection
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpEpmd
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangAtom
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpErlangBinary
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpErlangBitstr
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpErlangBoolean
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpErlangByte
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangChar
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangDecodeException
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangDouble
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangException
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangExit
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangFloat
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangInt
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangList
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangLong
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangObject
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangPid
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangPort
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangRangeException
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangRef
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangShort
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangString
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangTuple
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangUInt
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpErlangUShort
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpException
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpExternal
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpInputStream
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpLocalNode
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpMbox
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpMsg
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpNode.Acceptor
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpNode
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpNode.Mailboxes
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpNodeStatus
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpOutputStream
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpPeer
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY:...
- Java-Erlang Interface Library: Class OtpSelf
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Class OtpServer
Package Class Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES SUMMARY: INNER | ...
- Java-Erlang Interface Library: Package com.ericsson.otp.erlang
com.ericsson.otp.erlang Classes AbstractConnection AbstractNode GenericQueue OtpConnection OtpCookedConnection OtpEpmd OtpErlangAtom OtpErlangBinary OtpErlangBitstr OtpErlangBoolean...
- Java-Erlang Interface Library: Package com.ericsson.otp.erlang
Package Class Tree Deprecated Index Help PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES Package com.ericsson.otp.erlang...
- Java-Erlang Interface Library: com.ericsson.otp.erlang Class Hierarchy
Package Class Tree Deprecated Index Help PREV NEXT FRAMES NO FRAMES Hierarchy For Package com.ericsson.otp.erlang...
- app
app FILE app FILE SUMMARY Application resource file. DESCRIPTION The application resource file specifies the resources an application uses, and how the application is started. There must always be...
- application
application MODULE application MODULE SUMMARY Generic OTP application functions DESCRIPTION In OTP, application denotes a component implementing some specific functionality, that can be started and...
- auth
auth MODULE auth MODULE SUMMARY Erlang Network Authentication Server DESCRIPTION This module is deprecated. For a description of the Magic Cookie system, refer to Distributed Erlang in the Erlang...
- code
code MODULE code MODULE SUMMARY Erlang Code Server DESCRIPTION This module contains the interface to the Erlang code server , which deals with the loading of compiled code into a running Erlang...
- config
config FILE config FILE SUMMARY Configuration file. DESCRIPTION A configuration file contains values for configuration parameters for the applications in the system. The erl command line argument...
- disk_log
disk_log MODULE disk_log MODULE SUMMARY A disk based term logging facility DESCRIPTION disk_log is a disk based term logger which makes it possible to efficiently log items on files. Two types of...
- erl_boot_server
erl_boot_server MODULE erl_boot_server MODULE SUMMARY Boot Server for Other Erlang Machines DESCRIPTION This server is used to assist diskless Erlang nodes which fetch all Erlang code from another...
- erl_ddll
erl_ddll MODULE erl_ddll MODULE SUMMARY Dynamic Driver Loader and Linker DESCRIPTION The erl_ddll module provides an interface for loading and unloading erlang linked in drivers in runtime. Note This...
- erl_prim_loader
erl_prim_loader MODULE erl_prim_loader MODULE SUMMARY Low Level Erlang Loader DESCRIPTION erl_prim_loader is used to load all Erlang modules into the system. The start script is also fetched with...
- erlang
erlang MODULE erlang MODULE SUMMARY The Erlang BIFs DESCRIPTION By convention, most built-in functions (BIFs) are seen as being in the module erlang . A number of the BIFs are viewed more or less as...
- error_handler
error_handler MODULE error_handler MODULE SUMMARY Default System Error Handler DESCRIPTION The error handler module defines what happens when certain types of errors occur. EXPORTS...
- error_logger
error_logger MODULE error_logger MODULE SUMMARY Erlang Error Logger DESCRIPTION The Erlang error logger is an event manager (see OTP Design Principles and gen_event(3) ), registered as error_logger ....
- file
file MODULE file MODULE SUMMARY File Interface Module DESCRIPTION The module file provides an interface to the file system. On operating systems with thread support, it is possible to let file...
- gen_sctp
gen_sctp MODULE gen_sctp MODULE SUMMARY The gen_sctp module provides functions for communicating with sockets using the SCTP protocol. DESCRIPTION The gen_sctp module provides functions for...
- gen_tcp
gen_tcp MODULE gen_tcp MODULE SUMMARY Interface to TCP/IP sockets DESCRIPTION The gen_tcp module provides functions for communicating with sockets using the TCP/IP protocol. The following code...
- gen_udp
gen_udp MODULE gen_udp MODULE SUMMARY Interface to UDP sockets DESCRIPTION The gen_udp module provides functions for communicating with sockets using the UDP protocol. DATA TYPES ip_address() see...
- global
global MODULE global MODULE SUMMARY A Global Name Registration Facility DESCRIPTION This documentation describes the Global module which consists of the following functionalities: registration of...
- global_group
global_group MODULE global_group MODULE SUMMARY Grouping Nodes to Global Name Registration Groups DESCRIPTION The global group function makes it possible to group the nodes in a system into...
- heart
heart MODULE heart MODULE SUMMARY Heartbeat Monitoring of an Erlang Runtime System DESCRIPTION This modules contains the interface to the heart process. heart sends periodic heartbeats to an external...
- inet
inet MODULE inet MODULE SUMMARY Access to TCP/IP Protocols DESCRIPTION Provides access to TCP/IP protocols. See also ERTS User's Guide, Inet configuration for more information on how to configure an...
- init
init MODULE init MODULE SUMMARY Coordination of System Startup DESCRIPTION The init module is pre-loaded and contains the code for the init system process which coordinates the start-up of the...
- kernel
kernel APPLICATION kernel APPLICATION SUMMARY The Kernel Application DESCRIPTION The Kernel application is the first application started. It is mandatory in the sense that the minimal system based on...
- net_adm
net_adm MODULE net_adm MODULE SUMMARY Various Erlang Net Administration Routines DESCRIPTION This module contains various network utility functions. EXPORTS dns_hostname(Host) -> {ok, Name} |...
- net_kernel
net_kernel MODULE net_kernel MODULE SUMMARY Erlang Networking Kernel DESCRIPTION The net kernel is a system process, registered as net_kernel , which must be running for distributed Erlang to work....
- os
os MODULE os MODULE SUMMARY Operating System Specific Functions DESCRIPTION The functions in this module are operating system specific. Careless use of these functions will result in programs that...
- packages
packages MODULE packages MODULE SUMMARY Packages in Erlang DESCRIPTION Introduction Packages are simply namespaces for modules. All old Erlang modules automatically belong to the top level...
- pg2
pg2 MODULE pg2 MODULE SUMMARY Distributed Named Process Groups DESCRIPTION This module implements process groups. The groups in this module differ from the groups in the module pg in several ways. In...
- rpc
rpc MODULE rpc MODULE SUMMARY Remote Procedure Call Services DESCRIPTION This module contains services which are similar to remote procedure calls. It also contains broadcast facilities and parallel...
- seq_trace
seq_trace MODULE seq_trace MODULE SUMMARY Sequential Tracing of Messages DESCRIPTION Sequential tracing makes it possible to trace all messages resulting from one initial message. Sequential tracing...
- user
user MODULE user MODULE SUMMARY Standard I/O Server DESCRIPTION user is a server which responds to all the messages defined in the I/O interface. The code in user.erl can be used as a model for...
- wrap_log_reader
wrap_log_reader MODULE wrap_log_reader MODULE SUMMARY A function to read internally formatted wrap disk logs DESCRIPTION wrap_log_reader is a function to read internally formatted wrap disk logs,...
- zlib
zlib MODULE zlib MODULE SUMMARY Zlib Compression interface. DESCRIPTION The zlib module provides an API for the zlib library (http://www.zlib.org). It is used to compress and decompress data. The...
- megaco
megaco MODULE megaco MODULE SUMMARY Main API of the Megaco application DESCRIPTION Interface module for the Megaco application DATA TYPES action_request() = #'ActionRequest'{} action_reply() =...
- Architecture
2 Architecture 2.1 Network view Megaco is a (master/slave) protocol for control of gateway functions at the edge of the packet network. Examples of this is IP-PSTN trunking gateways and analog line...
- megaco_codec_meas
megaco_codec_meas MODULE megaco_codec_meas MODULE SUMMARY This module implements a simple megaco codec measurement tool. DESCRIPTION This module implements a simple megaco codec measurement tool....
- megaco_codec_transform
megaco_codec_transform MODULE megaco_codec_transform MODULE SUMMARY Megaco message transformation utility. DESCRIPTION This module implements a simple megaco message transformation utility. Note that...
- Testing and tools
9 Testing and tools 9.1 Tracing We have instrumented our code in order to enable tracing. Running the application with tracing deactivated, causes a neglectible performance overhead (an external call...
- megaco_encoder
megaco_encoder MODULE megaco_edist_compress MODULE SUMMARY Megaco erlang dist compress behaviour. DESCRIPTION The following functions should be exported from a megaco_edist_compress callback module:...
- Internal form and its encodings
4 Internal form and its encodings This version of the stack is compliant with: Megaco/H.248 version 1 (RFC3525) updated according to Implementors Guide version 10-13. Megaco/H.248 version 2 as...
- megaco_encoder
megaco_encoder MODULE megaco_encoder MODULE SUMMARY Megaco encoder behaviour. DESCRIPTION The following functions should be exported from a megaco_encoder callback module: DATA TYPES megaco_message()...
- Implementation examples
6 Implementation examples 6.1 A simple Media Gateway Controller In megaco/examples/simple/megaco_simple_mgc.erl there is an example of a simple MGC that listens on both text and binary standard ports...
- megaco_flex_scanner
megaco_flex_scanner MODULE megaco_flex_scanner MODULE SUMMARY Interface module to the flex scanner linked in driver. DESCRIPTION This module contains the public interface to the flex scanner linked...
- Introduction
1 Introduction Megaco/H.248 is a protocol for control of elements in a physically decomposed multimedia gateway, enabling separation of call control from media conversion. A Media Gateway Controller...
- Megaco mib
7 Megaco mib 7.1 Intro The Megaco mib is as of yet not standardized and our implementation is based on draft-ietf-megaco-mib-04.txt . Almost all of the mib cannot easily be implemented by the megaco...
- Performace comparison
8 Performace comparison 8.1 Comparison of encoder/decoders The Megaco/H.248 standard defines both a plain text encoding and a binary encoding (ASN.1 BER) and we have implemented encoders and decoders...
- Running the stack
3 Running the stack 3.1 Starting A user may have a number of "virtual" connections to other users. An MG is connected to at most one MGC, while an MGC may be connected to any number of MG's. For each...
- megaco_tcp
megaco_tcp MODULE megaco_tcp MODULE SUMMARY Interface module to TPKT transport protocol for Megaco/H.248. DESCRIPTION This module contains the public interface to the TPKT (TCP/IP) version transport...
- megaco_transport
megaco_transport MODULE megaco_transport MODULE SUMMARY Megaco transport begaviour. DESCRIPTION The following functions should be exported from a megaco_transport callback module: send_message/2 [...
- Transport mechanisms
5 Transport mechanisms 5.1 Callback interface The callback interface of the transport module contains several functions. Some of which are mandatory while others are only optional: send_message -...
- megaco_udp
megaco_udp MODULE megaco_udp MODULE SUMMARY Interface module to UDP transport protocol for Megaco/H.248. DESCRIPTION This module contains the public interface to the UDP/IP version transport protocol...
- megaco_user
megaco_user MODULE megaco_user MODULE SUMMARY Callback module for users of the Megaco application DESCRIPTION This module defines the callback behaviour of Megaco users. A megaco_user compliant...
- rfc3015
Network Working Group F. Cuervo Request for Comments: 3015 N. Greene Obsoletes: 2885, 2886 A. Rayhan Category: Standards Track Nortel Networks C. Huitema Microsoft Corporation B. Rosen Marconi J....
- mnesia
mnesia MODULE mnesia MODULE SUMMARY A Distributed Telecommunications DBMS DESCRIPTION Mnesia is a distributed DataBase Management System (DBMS), appropriate for telecommunications applications and...
- Appendix A: Mnesia Error Messages
8 Appendix A: Mnesia Error Messages Whenever an operation returns an error in Mnesia, a description of the error is available. For example, the functions mnesia:transaction(Fun) , or...
- Appendix B: The Backup Call Back Interface
9 Appendix B: The Backup Call Back Interface 9.1 mnesia_backup callback behavior %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% %% This module contains one implementation...
- Appendix C: The Activity Access Call Back Interface
10 Appendix C: The Activity Access Call Back Interface 10.1 mnesia_access callback behavior -module(mnesia_frag). %% Callback functions when accessed within an activity -export([ lock/4, write/5,...
- Appendix D: The Fragmented Table Hashing Call Back Interface
11 Appendix D: The Fragmented Table Hashing Call Back Interface 11.1 mnesia_frag_hash callback behavior -module(mnesia_frag_hash). %% Fragmented Table Hashing callback functions -export([...
- Introduction
1 Introduction This book describes the Mnesia DataBase Management System (DBMS). Mnesia is a distributed Database Management System, appropriate for telecommunications applications and other Erlang...
- Getting Started with Mnesia
2 Getting Started with Mnesia This chapter introduces Mnesia. Following a brief discussion about the first initial setup, a Mnesia database example is demonstrated. This database example will be...
- Building A Mnesia Database
3 Building A Mnesia Database This chapter details the basic steps involved when designing a Mnesia database and the programming constructs which make different solutions available to the programmer....
- Transactions and Other Access Contexts
4 Transactions and Other Access Contexts This chapter describes the Mnesia transaction system and the transaction properties which make Mnesia a fault tolerant, distributed database management...
- Miscellaneous Mnesia Features
5 Miscellaneous Mnesia Features The earlier chapters of this User Guide described how to get started with Mnesia, and how to build a Mnesia database. In this chapter, we will describe the more...
- Mnesia System Information
6 Mnesia System Information 6.1 Database Configuration Data The following two functions can be used to retrieve system information. They are described in detail in the reference manual....
- Combining Mnesia with SNMP
7 Combining Mnesia with SNMP 7.1 Combining Mnesia and SNMP Many telecommunications applications must be controlled and reconfigured remotely. It is sometimes an advantage to perform this remote...
- mnesia_frag_hash
mnesia_frag_hash MODULE mnesia_frag_hash MODULE SUMMARY Defines mnesia_frag_hash callback behaviour DESCRIPTION The module mnesia_frag_hash defines a callback behaviour for user defined hash...
- mnesia_registry
mnesia_registry MODULE mnesia_registry MODULE SUMMARY Dump support for registries in erl_interface. DESCRIPTION The module mnesia_registry is usually part of erl_interface , but for the time being,...
- crashdump_viewer
crashdump_viewer MODULE crashdump_viewer MODULE SUMMARY A HTML based tool for browsing Erlang crashdumps. DESCRIPTION The Crashdump Viewer is an HTML based tool for browsing Erlang crashdumps....
- Crashdump Viewer help
Information pages Each menu item points to an information page. If no information is found for an item, the page will simply say "No information found". The reason for not finding any information...
- Crashdump Viewer
3 Crashdump Viewer 3.1 Introduction The Crashdump Viewer is an HTML based tool for browsing Erlang crashdumps. Crashdump Viewer runs under the WebTool application. 3.2 Getting Started From an erlang...
- etop
etop MODULE etop MODULE SUMMARY Erlang Top is a tool for presenting information about erlang processes similar to the information presented by "top" in UNIX. DESCRIPTION etop should be started with...
- Erlang Top
2 Erlang Top 2.1 Introduction Erlang Top, etop is a tool for presenting information about erlang processes similar to the information presented by top in UNIX. 2.2 Output The output from etop can be...
- observer
observer APPLICATION observer APPLICATION SUMMARY The Observer Application DESCRIPTION This chapter describes the OBSERVER application in OTP, which provides tools for tracing and investigation of...
- ttb
ttb MODULE ttb MODULE SUMMARY A base for building trace tools for distributed systems. DESCRIPTION The Trace Tool Builder ttb is a base for building trace tools for distributed systems. When using...
- Trace Tool Builder
1 Trace Tool Builder 1.1 Introduction The Trace Tool Builder is a base for building trace tools for single node or distributed erlang systems. It requires the runtime_tools application to be...
- Databases
3 Databases 3.1 Databases If you need to access a relational database such as sqlserver , mysql , postgres , oracle , cybase etc. from your erlang application using the Erlang ODBC interface is a...
- Error handling
4 Error handling 4.1 Strategy On a conceptual level starting a database connection using the Erlang ODBC API is a basic client server application. The client process uses the API to start and...
- Getting started
2 Getting started 2.1 Setting things up As the Erlang ODBC application is dependent on third party products there are a few administrative things that needs to be done before you can get things up...
- odbc
odbc MODULE odbc MODULE SUMMARY Erlang ODBC application DESCRIPTION This application provides an Erlang interface to communicate with relational SQL-databases. It is built on top of Microsofts ODBC...
- any
any MODULE any MODULE SUMMARY the corba any type DESCRIPTION This module contains functions that gives an interface to the CORBA any type. Note that the any interface in orber does not contain a...
- Debugging
14 Debugging 14.1 Tools and FAQ Persons who use Orber for the first time may find it hard to tell what goes wrong when trying to setup communication between an Orber-ORB and ORB:s supplied by another...
- CORBA System and User Defined Exceptions
11 CORBA System and User Defined Exceptions 11.1 System Exceptions Orber , or any other ORB , may raise a System Exceptions . These exceptions contain status- and minor-fields and may not appear in...
- OMG IDL to Erlang Mapping
6 OMG IDL to Erlang Mapping 6.1 OMG IDL to Erlang Mapping - Overview The purpose of OMG IDL, Interface Definition Language , mapping is to act as translator between platforms and languages. An IDL...
- Interface Repository
4 Interface Repository 4.1 Interface Repository(IFR) The IFR is an interface repository built on the Mnesia application. Orber uses the IFR for some type-checking when coding/decoding IIOP. The IFR...
- Orber Interceptors
12 Orber Interceptors 12.1 Using Interceptors For Inter-ORB communication, e.g., via IIOP , it is possible to intercept requests and replies. To be able to use Interceptors Orber the configuration...
- CosNaming Service
7 CosNaming Service 7.1 Overview of the CosNaming Service The CosNaming Service is a service developed to help users and programmers identify objects by human readable names rather than by a...
- The Orber Application
3 The Orber Application 3.1 ORB Kernel and IIOP This chapter gives a brief overview of the ORB and its relation to objects in a distributed environment and the usage of Domains in Orber. Also...
- OrberWeb
13 OrberWeb 13.1 Using OrberWeb OrberWeb is intended to make things easier when developing and testing applications using Orber . The user is able to interact with Orber via a GUI by using a web...
- How to use security in Orber
8 How to use security in Orber 8.1 Security in Orber 8.1.1 Introduction Orber SSL provides authentication, privacy and integrity for your Erlang applications. Based on the Secure Sockets Layer...
- Orber Stubs/Skeletons
10 Orber Stubs/Skeletons 10.1 Orber Stubs and Skeletons Description This example describes the API and behavior of Orber stubs and skeletons. 10.1.1 Server Start Orber servers can be started in...
- corba
corba MODULE corba MODULE SUMMARY The functions on CORBA module level DESCRIPTION This module contains functions that are specified on the CORBA module level. It also contains some functions for...
- corba_object
corba_object MODULE corba_object MODULE SUMMARY The CORBA Object interface functions DESCRIPTION This module contains the CORBA Object interface functions that can be called for all objects. EXPORTS...
- CosNaming
CosNaming MODULE CosNaming MODULE SUMMARY The CosNaming service is a collection of interfaces that together define the naming service. DESCRIPTION The naming service provides the principal mechanism...
- CosNaming_BindingIterator
CosNaming_BindingIterator MODULE CosNaming_BindingIterator MODULE SUMMARY This interface supports iteration over a name binding list. DESCRIPTION This interface allows a client to iterate over the...
- CosNaming_NamingContext
CosNaming_NamingContext MODULE CosNaming_NamingContext MODULE SUMMARY This interface supports different bind and access functions for names in a context. DESCRIPTION This is the object that defines...
- CosNaming_NamingContextExt
CosNaming_NamingContextExt MODULE CosNaming_NamingContextExt MODULE SUMMARY This interface contains operation for converting a Name sequence to a string and back. DESCRIPTION To get access to the...
- fixed
fixed MODULE fixed MODULE SUMMARY the corba fixed type DESCRIPTION This module contains functions that gives an interface to the CORBA fixed type. The type Fixed used below is defined as:...
- interceptors
interceptors MODULE interceptors MODULE SUMMARY Describe the functions which must be exported by any supplied Orber native interceptor. DESCRIPTION This module contains the mandatory functions for...
- lname
lname MODULE lname MODULE SUMMARY Interface that supports the name pseudo-objects. DESCRIPTION This interface is a part of the names library which is used to hide the representation of names. In...
- lname_component
lname_component MODULE lname_component MODULE SUMMARY Interface that supports the name pseudo-objects. DESCRIPTION This interface is a part of the name library, which is used to hide the...
- Module_Interface
Module_Interface MODULE Module_Interface MODULE SUMMARY Orber generated stubs/skeletons. DESCRIPTION This module contains the stub/skeleton functions generated by IC. Starting a Orber server can be...
- orber
orber MODULE orber MODULE SUMMARY The main module of the Orber application DESCRIPTION This module contains the functions for starting and stopping the application. It also has some utility functions...
- orber_acl
orber_acl MODULE orber_acl MODULE SUMMARY Orber ACL operations DESCRIPTION This module contains functions intended for analyzing Access Control List (ACL) filters. The filters uses a extended format...
- orber_diagnostics
orber_diagnostics MODULE orber_diagnostics MODULE SUMMARY Diagnostics API for Orber DESCRIPTION This module contains functions which makes it possible to run simple tests. Warning Functions exported...
- orber_ifr
orber_ifr MODULE orber_ifr MODULE SUMMARY The Interface Repository stores representations of IDL information DESCRIPTION This module contains functions for managing the Interface Repository (IFR)....
- orber_tc
orber_tc MODULE orber_tc MODULE SUMMARY Help functions for IDL typecodes DESCRIPTION This module contains some functions that gives support in creating IDL typecodes that can be used in for example...
- cpu_sup
cpu_sup MODULE cpu_sup MODULE SUMMARY A CPU Load and CPU Utilization Supervisor Process DESCRIPTION cpu_sup is a process which supervises the CPU load and CPU utilization. It is part of the OS_Mon...
- disksup
disksup MODULE disksup MODULE SUMMARY A Disk Supervisor Process DESCRIPTION disksup is a process which supervises the available disk space in the system. It is part of the OS_Mon application, see...
- memsup
memsup MODULE memsup MODULE SUMMARY A Memory Supervisor Process DESCRIPTION memsup is a process which supervises the memory usage for the system and for individual processes. It is part of the OS_Mon...
- nteventlog
nteventlog MODULE nteventlog MODULE SUMMARY Interface to Windows Event Log DESCRIPTION nteventlog provides a generic interface to the Windows event log. It is part of the OS_Mon application, see...
- os_mon
os_mon APPLICATION os_mon APPLICATION SUMMARY OS Monitoring Application DESCRIPTION The operating system monitor, OS_Mon, provides the following services: cpu_sup CPU load and utilization supervision...
- os_mon_mib
os_mon_mib MODULE os_mon_mib MODULE SUMMARY Loading and Unloading of OTP-OS-MON-MIB DESCRIPTION Functions for loading and unloading the OTP-OS-MON-MIB into/from an SNMP agent. The instrumentation of...
- os_sup
os_sup MODULE os_sup MODULE SUMMARY Interface to OS System Messages DESCRIPTION os_sup is a process providing a message passing service from the operating system to the error logger in the Erlang...
- Mibs
2 Mibs 2.1 Structure The OTP mibs are stored in the $OTP_ROOT/lib/otp_mibs/mibs/ directory. They are defined in SNMPv2 SMI syntax. An SNMPv1 version of the mib is delivered in the mibs/v1 directory....
- otp_mib
otp_mib MODULE otp_mib MODULE SUMMARY Handles the OTP-MIB DESCRIPTION The SNMP application should be used to start an SNMP agent. Then the API functions below can be used to load/unload the OTP-MIB...
- yecc
yecc MODULE yecc MODULE SUMMARY LALR-1 Parser Generator DESCRIPTION An LALR-1 parser generator for Erlang, similar to yacc . Takes a BNF grammar definition as input, and produces Erlang code for a...
- motorcycles
Suzuki Suzuki VL 1500 Intruder V-engine, 2-cylinders, 1500 cc custom cardan Sissy bar, luggage carrier,V&H exhaust pipes 2004.08.25 Yamaha XJ 400 4 cylinder, 400 cc alround chain Good shape!
- motorcycles dtd
- motorcycles2
Suzuki Suzuki VL 1500 Intruder V-engine, 2-cylinders, 1500 cc custom cardan Sissy bar, luggage carrier,V&H exhaust pipes 2004.08.25 Suzuki Suzuki GSX 750 4 cylinders, 750 cc alround chain...
- new motorcycles
Suzuki Suzuki VL 1500 Intruder V-engine, 2-cylinders, 1500 cc custom cardan Sissy bar, luggage carrier,V&H exhaust pipes 2004.08.25 Yamaha XJ 400 4 cylinder, 400 cc alround chain Good shape!...
- new motorcycles2
Suzuki Suzuki VL 1500 Intruder V-engine, 2-cylinders, 1500 cc custom cardan Sissy bar, luggage carrier,V&H exhaust pipes 2004.08.25 Yamaha XJ 400 4 cylinder, 400 cc alround chain Good shape!...
- people
Alan Turing computer scientist mathematician cryptographer Richard P Feynman physicist Playing the bongos
- people2
]> Alan Turing computer scientist mathematician cryptographer Richard P Feynman physicist Playing the bongos
- result export
Suzuki Suzuki VL 1500 Intruder V-engine, 2-cylinders, 1500 cc custom cardan Sissy bar, luggage carrier,V&H exhaust pipes 2004.08.25 Yamaha XJ 400 4 cylinder, 400 cc alround chain Good shape!
- motorcycles
Used Motorcycles Harley Davidsson, Yamaha, Suzuki Harley Davidsson HD FLSTCi Heritage Softail Classic Manufacturing year: 2001 Color: red Shape : Suzuki Suzuki VL 1500 Intruder Manufacturing year:...
- xmerl
xmerl MODULE xmerl MODULE SUMMARY Functions for exporting XML data to an external format. DESCRIPTION Functions for exporting XML data to an external format. EXPORTS callbacks(M::atom()) ->...
- xmerl_eventp
xmerl_eventp MODULE xmerl_eventp MODULE SUMMARY Simple event-based front-ends to xmerl_scan for processing of XML documents in streams and for parsing in SAX style. DESCRIPTION Simple event-based...
- Customization functions
Customization functions 1 Description The XML processor offers a number of hooks for customization. These hooks are defined as function objects, and can be provided by the caller. The following...
- xmerl_scan
xmerl_scan MODULE xmerl_scan MODULE SUMMARY This module is the interface to the XML parser, it handles XML 1.0. DESCRIPTION This module is the interface to the XML parser, it handles XML 1.0. The XML...
- xmerl
1 xmerl 1.1 Introduction 1.1.1 Features The xmerl XML parser is able to parse XML documents according to the XML 1.0 standard. As default it performs well-formed parsing,(syntax checks and checks of...
- xmerl_xpath
xmerl_xpath MODULE xmerl_xpath MODULE SUMMARY The xmerl_xpath module handles the entire XPath 1.0 spec XPath expressions typically occurs in XML attributes and are used to addres parts of an XML...
- xmerl_xs
xmerl_xs MODULE xmerl_xs MODULE SUMMARY Erlang has similarities to XSLT since both languages have a functional programming approach. DESCRIPTION Erlang has similarities to XSLT since both languages...
- XSLT like transformations in Erlang
Examples Example 1 Using xslapply original XSLT: <xsl:template match="doc/title"> <h1> <xsl:apply-templates/> </h1> </xsl:template> becomes in Erlang: template(E =...
- xmerl_xsd
xmerl_xsd MODULE xmerl_xsd MODULE SUMMARY Interface module for XML Schema vlidation. DESCRIPTION Interface module for XML Schema vlidation. It handles the W3.org specifications of XML Schema second...
- start_webtool
start_webtool COMMAND start_webtool COMMAND SUMMARY WebTool Start Script DESCRIPTION The start_webtool script starts WebTool, a WebTool application and a web browser pointing to this application....
- webtool
webtool MODULE webtool MODULE SUMMARY WebTool is a tool used to simplify the implementation of web based tools with Erlang/OTP. DESCRIPTION WebTool makes it easy to use web based tools with...
- WebTool User Guide
1 WebTool User Guide 1.1 Introduction WebTool provides an easy and efficient way to implement web based tools with Erlang/OTP. WebTool configures and starts the webserver and the various web based...
- The Table Visualizer
1 The Table Visualizer The TV, TV, is a tool that enables the user to examine ETS and Mnesia tables on any (connected) node in the currently running Erlang system. Once a certain table has been...
- tv
tv MODULE tv MODULE SUMMARY TV graphically examines ETS and Mnesia tables. DESCRIPTION TV enables the user to examine ETS and Mnesia tables. Once a certain table has been opened in the tool, the...
- cover
cover MODULE cover MODULE SUMMARY A Coverage Analysis Tool for Erlang DESCRIPTION The module cover provides a set of functions for coverage analysis of Erlang programs, counting how many times each...
- cprof
cprof MODULE cprof MODULE SUMMARY A simple Call Count Profiling Tool using breakpoints for minimal runtime performance impact. DESCRIPTION The cprof module is used to profile a program to find out...
- cprof - The Call Count Profiler
2 cprof - The Call Count Profiler cprof is a profiling tool that can be used to get a picture of how often different functions in the system are called. cprof uses breakpoints similar to local call...
- eprof
eprof MODULE eprof MODULE SUMMARY A Time Profiling Tool for Erlang DESCRIPTION The module eprof provides a set of functions for time profiling of Erlang programs to find out how the execution time is...
- Erlang mode for Emacs
Erlang mode for Emacs MODULE erlang.el MODULE SUMMARY Erlang mode for Emacs DESCRIPTION Possibly the most important feature of an editor designed for programmers is the ability to indent a line of...
- The Erlang mode for Emacs
3 The Erlang mode for Emacs 3.1 Purpose The purpose of this user guide is to introduce you to the Erlang mode for Emacs and gives some relevant background information of the functions and features....
- fprof
fprof MODULE fprof MODULE SUMMARY A Time Profiling Tool using trace to file for minimal runtime performance impact. DESCRIPTION This module is used to profile a program to find out how the execution...
- fprof - The File Trace Profiler
4 fprof - The File Trace Profiler fprof is a profiling tool that can be used to get a picture of how much processing time different functions consumes and in which processes. fprof uses tracing with...
- instrument
instrument MODULE instrument MODULE SUMMARY Analysis and Utility Functions for Instrumentation DESCRIPTION The module instrument contains support for studying the resource usage in an Erlang runtime...
- make
make MODULE make MODULE SUMMARY A Make Utility for Erlang DESCRIPTION The module make provides a set of functions similar to the UNIX type Make functions. EXPORTS all() -> up_to_date | error...
- tags
tags MODULE tags MODULE SUMMARY Generate Emacs TAGS file from Erlang source files DESCRIPTION A TAGS file is used by Emacs to find function and variable definitions in any source file in large...
- xref
xref MODULE xref MODULE SUMMARY A Cross Reference Tool for analyzing dependencies between functions, modules, applications and releases. DESCRIPTION Xref is a cross reference tool that can be used...
- Xref - The Cross Reference Tool
5 Xref - The Cross Reference Tool Xref is a cross reference tool that can be used for finding dependencies between functions, modules, applications and releases. It does so by analyzing the defined...
- toolbar
toolbar MODULE toolbar MODULE SUMMARY GUI for Starting Tools and User Contributions DESCRIPTION Toolbar makes it easier to use the different Erlang tools - and the user contributions - which are...
- Toolbar
1 Toolbar Toolbar provides an interface to the various Erlang tools which are available. Toolbar can also provide access to user supplied tools which are included with the Erlang software release....
- test_server
test_server MODULE test_server MODULE SUMMARY This module provides support for test suite authors. DESCRIPTION The test_server module aids the test suite author by providing various support...
- Test Server Application
Test Server Application APPLICATION Test Server Application APPLICATION SUMMARY Test Server for manual or automatic testing of Erlang code DESCRIPTION Test Server is a portable test server for...
- The Test Server Controller
The Test Server Controller MODULE test_server_ctrl MODULE SUMMARY This module provides a low level interface to the Test Server. DESCRIPTION The test_server_ctrl module provides a low level interface...
- Test Structure and Test Specifications
2 Test Structure and Test Specifications 2.1 Test structure A test consists of a set of test cases. Each test case is implemented as an erlang function. An erlang module implementing one or more test...
- Write you own test server framework
5 Write you own test server framework 5.1 Introduction The test server controller can be interfaced from the operating system or from within Erlang. The nature of your new framework will decide which...
- epp_dodger
epp_dodger MODULE epp_dodger MODULE SUMMARY epp_dodger - bypasses the Erlang preprocessor. DESCRIPTION epp_dodger - bypasses the Erlang preprocessor. This module tokenises and parses most Erlang...
- erl_comment_scan
erl_comment_scan MODULE erl_comment_scan MODULE SUMMARY Functions for reading comment lines from Erlang source code. DESCRIPTION Functions for reading comment lines from Erlang source code. EXPORTS...
- erl_prettypr
erl_prettypr MODULE erl_prettypr MODULE SUMMARY Pretty printing of abstract Erlang syntax trees. DESCRIPTION Pretty printing of abstract Erlang syntax trees. This module is a front end to the...
- erl_recomment
erl_recomment MODULE erl_recomment MODULE SUMMARY Inserting comments into abstract Erlang syntax trees. DESCRIPTION Inserting comments into abstract Erlang syntax trees This module contains functions...
- erl_syntax
erl_syntax MODULE erl_syntax MODULE SUMMARY Abstract Erlang syntax trees. DESCRIPTION Abstract Erlang syntax trees. This module defines an abstract data type for representing Erlang source code as...
- erl_syntax_lib
erl_syntax_lib MODULE erl_syntax_lib MODULE SUMMARY Support library for abstract Erlang syntax trees. DESCRIPTION Support library for abstract Erlang syntax trees. This module contains utility...
- erl_tidy
erl_tidy MODULE erl_tidy MODULE SUMMARY Tidies and pretty-prints Erlang source code, removing unused functions, updating obsolete constructs and function calls, etc. DESCRIPTION Tidies and...
- igor
igor MODULE igor MODULE SUMMARY Igor: the Module Merger and Renamer. DESCRIPTION Igor: the Module Merger and Renamer. The program Igor merges the source code of one or more Erlang modules into a...
- prettypr
prettypr MODULE prettypr MODULE SUMMARY A generic pretty printer library. DESCRIPTION A generic pretty printer library. This module uses a strict-style context passing implementation of John Hughes...
- array
array MODULE array MODULE SUMMARY Functional, extendible arrays. DESCRIPTION Functional, extendible arrays. Arrays can have fixed size, or can grow automatically as needed. A default value is used...
- base64
base64 MODULE base64 MODULE SUMMARY Implements base 64 encode and decode, see RFC2045. DESCRIPTION Implements base 64 encode and decode, see RFC2045. EXPORTS encode(Data) -> Base64...
- beam_lib
beam_lib MODULE beam_lib MODULE SUMMARY An Interface To the BEAM File Format DESCRIPTION beam_lib provides an interface to files created by the BEAM compiler ("BEAM files"). The format used, a...
- c
c MODULE c MODULE SUMMARY Command Interface Module DESCRIPTION The c module enables users to enter the short form of some commonly used commands. Note These functions are are intended for interactive...
- calendar
calendar MODULE calendar MODULE SUMMARY Local and universal time, day-of-the-week, date and time conversions DESCRIPTION This module provides computation of local and universal time, day-of-the-week,...
- dets
dets MODULE dets MODULE SUMMARY A Disk Based Term Storage DESCRIPTION The module dets provides a term storage on file. The stored terms, in this module called objects , are tuples such that one...
- dict
dict MODULE dict MODULE SUMMARY Key-Value Dictionary DESCRIPTION Dict implements a Key - Value dictionary. The representation of a dictionary is not defined. This module provides exactly the same...
- digraph
digraph MODULE digraph MODULE SUMMARY Directed Graphs DESCRIPTION The digraph module implements a version of labeled directed graphs. What makes the graphs implemented here non-proper directed graphs...
- digraph_utils
digraph_utils MODULE digraph_utils MODULE SUMMARY Algorithms for Directed Graphs DESCRIPTION The digraph_utils module implements some algorithms based on depth-first traversal of directed graphs. See...
- epp
epp MODULE epp MODULE SUMMARY An Erlang Code Preprocessor DESCRIPTION The Erlang code preprocessor includes functions which are used by compile to preprocess macros and include files before the...
- erl_eval
erl_eval MODULE erl_eval MODULE SUMMARY The Erlang Meta Interpreter DESCRIPTION This module provides an interpreter for Erlang expressions. The expressions are in the abstract syntax as returned by...
- erl_expand_records
erl_expand_records MODULE erl_expand_records MODULE SUMMARY Expands Records in a Module DESCRIPTION EXPORTS module(AbsForms, CompileOptions) -> AbsForms Types: AbsForms = [term()] CompileOptions =...
- erl_id_trans
erl_id_trans MODULE erl_id_trans MODULE SUMMARY An Identity Parse Transform DESCRIPTION This module performs an identity parse transformation of Erlang code. It is included as an example for users...
- erl_internal
erl_internal MODULE erl_internal MODULE SUMMARY Internal Erlang Definitions DESCRIPTION This module defines Erlang BIFs, guard tests and operators. This module is only of interest to programmers who...
- erl_lint
erl_lint MODULE erl_lint MODULE SUMMARY The Erlang Code Linter DESCRIPTION This module is used to check Erlang code for illegal syntax and other bugs. It also warns against coding practices which are...
- erl_parse
erl_parse MODULE erl_parse MODULE SUMMARY The Erlang Parser DESCRIPTION This module is the basic Erlang parser which converts tokens into the abstract form of either forms (i.e., top-level...
- erl_pp
erl_pp MODULE erl_pp MODULE SUMMARY The Erlang Pretty Printer DESCRIPTION The functions in this module are used to generate aesthetically attractive representations of abstract forms, which are...
- erl_scan
erl_scan MODULE erl_scan MODULE SUMMARY The Erlang Token Scanner DESCRIPTION This module contains functions for tokenizing characters into Erlang tokens. EXPORTS string(CharList,StartLine]) ->...
- erl_tar
erl_tar MODULE erl_tar MODULE SUMMARY Unix 'tar' utility for reading and writing tar archives DESCRIPTION The erl_tar module archives and extract files to and from a tar file. The tar file format is...
- ets
ets MODULE ets MODULE SUMMARY Built-In Term Storage DESCRIPTION This module is an interface to the Erlang built-in term storage BIFs. These provide the ability to store very large quantities of data...
- file_sorter
file_sorter MODULE file_sorter MODULE SUMMARY File Sorter DESCRIPTION The functions of this module sort terms on files, merge already sorted files, and check files for sortedness. Chunks containing...
- filelib
filelib MODULE filelib MODULE SUMMARY File utilities, such as wildcard matching of filenames DESCRIPTION This module contains utilities on a higher level than the file module. DATA TYPES filename() =...
- filename
filename MODULE filename MODULE SUMMARY Filename Manipulation Functions DESCRIPTION The module filename provides a number of useful functions for analyzing and manipulating file names. These...
- gb_sets
gb_sets MODULE gb_sets MODULE SUMMARY General Balanced Trees DESCRIPTION An implementation of ordered sets using Prof. Arne Andersson's General Balanced Trees. This can be much more efficient than...
- gb_trees
gb_trees MODULE gb_trees MODULE SUMMARY General Balanced Trees DESCRIPTION An efficient implementation of Prof. Arne Andersson's General Balanced Trees. These have no storage overhead compared to...
- gen_event
gen_event MODULE gen_event MODULE SUMMARY Generic Event Handling Behaviour DESCRIPTION A behaviour module for implementing event handling functionality. The OTP event handling model consists of a...
- gen_fsm
gen_fsm MODULE gen_fsm MODULE SUMMARY Generic Finite State Machine Behaviour DESCRIPTION A behaviour module for implementing a finite state machine. A generic finite state machine process (gen_fsm)...
- gen_server
gen_server MODULE gen_server MODULE SUMMARY Generic Server Behaviour DESCRIPTION A behaviour module for implementing the server of a client-server relation. A generic server process (gen_server)...
- io
io MODULE io MODULE SUMMARY Standard IO Server Interface Functions DESCRIPTION This module provides an interface to standard Erlang IO servers. The output functions all return ok if they are...
- io_lib
io_lib MODULE io_lib MODULE SUMMARY IO Library Functions DESCRIPTION This module contains functions for converting to and from strings (lists of characters). They are used for implementing the...
- lib
lib MODULE lib MODULE SUMMARY A number of useful library functions DESCRIPTION Warning This module is retained for compatibility. It may disappear without warning in a future release. EXPORTS...
- lists
lists MODULE lists MODULE SUMMARY List Processing Functions DESCRIPTION This module contains functions for list processing. The functions are organized in two groups: those in the first group perform...
- log_mf_h
log_mf_h MODULE log_mf_h MODULE SUMMARY An Event Handler which Logs Events to Disk DESCRIPTION The log_mf_h is a gen_event handler module which can be installed in any gen_event process. It logs onto...
- math
math MODULE math MODULE SUMMARY Mathematical Functions DESCRIPTION This module provides an interface to a number of mathematical functions. Note Not all functions are implemented on all platforms. In...
- ms_transform
ms_transform MODULE ms_transform MODULE SUMMARY Parse_transform that translates fun syntax into match specifications. DESCRIPTION This module implements the parse_transform that makes calls to ets...
- orddict
orddict MODULE orddict MODULE SUMMARY Key-Value Dictionary as Ordered List DESCRIPTION Orddict implements a Key - Value dictionary. An orddict is a representation of a dictionary, where a list of...
- ordsets
ordsets MODULE ordsets MODULE SUMMARY Functions for Manipulating Sets as Ordered Lists DESCRIPTION Sets are collections of elements with no duplicate elements. An ordset is a representation of a set,...
- pg
pg MODULE pg MODULE SUMMARY Distributed, Named Process Groups DESCRIPTION This (experimental) module implements process groups. A process group is a group of processes that can be accessed by a...
- pool
pool MODULE pool MODULE SUMMARY Load Distribution Facility DESCRIPTION pool can be used to run a set of Erlang nodes as a pool of computational processors. It is organized as a master and a set of...
- proc_lib
proc_lib MODULE proc_lib MODULE SUMMARY Functions for asynchronous and synchronous start of processes adhering to the OTP design principles. DESCRIPTION This module is used to start processes...
- proplists
proplists MODULE proplists MODULE SUMMARY Support functions for property lists DESCRIPTION Property lists are ordinary lists containing entries in the form of either tuples, whose first elements are...
- qlc
qlc MODULE qlc MODULE SUMMARY Query Interface to Mnesia, ETS, Dets, etc DESCRIPTION The qlc module provides a query interface to Mnesia, ETS, Dets and other data structures that implement an iterator...
- queue
queue MODULE queue MODULE SUMMARY Abstract Data Type for FIFO Queues DESCRIPTION This module implements (double ended) FIFO queues in an efficient manner. All functions fail with reason badarg if...
- random
random MODULE random MODULE SUMMARY Pseudo random number generation DESCRIPTION Random number generator. The method is attributed to B.A. Wichmann and I.D.Hill, in 'An efficient and portable...
- re
re MODULE re MODULE SUMMARY Perl like regular expressions for Erlang DESCRIPTION Warning This is an experimental module and the interface is subject to change. The purpose is to be a reference...
- regexp
regexp MODULE regexp MODULE SUMMARY Regular Expression Functions for Strings DESCRIPTION This module contains functions for regular expression matching and substitution. EXPORTS match(String, RegExp)...
- sets
sets MODULE sets MODULE SUMMARY Functions for Set Manipulation DESCRIPTION Sets are collections of elements with no duplicate elements. The representation of a set is not defined. This module...
- shell
shell MODULE shell MODULE SUMMARY The Erlang Shell DESCRIPTION The module shell implements an Erlang shell. The shell is a user interface program for entering expression sequences. The expressions...
- shell_default
shell_default MODULE shell_default MODULE SUMMARY Customizing the Erlang Environment DESCRIPTION The functions in shell_default are called when no module name is given in a shell command. Consider...
- slave
slave MODULE slave MODULE SUMMARY Functions to Starting and Controlling Slave Nodes DESCRIPTION This module provides functions for starting Erlang slave nodes. All slave nodes which are started by a...
- sofs
sofs MODULE sofs MODULE SUMMARY Functions for Manipulating Sets of Sets DESCRIPTION The sofs module implements operations on finite sets and relations represented as sets. Intuitively, a set is a...
- STDLIB
STDLIB APPLICATION STDLIB APPLICATION SUMMARY The STDLIB Application DESCRIPTION The STDLIB is mandatory in the sense that the minimal system based on Erlang/OTP consists of Kernel and STDLIB. The...
- string
string MODULE string MODULE SUMMARY String Processing Functions DESCRIPTION This module contains functions for string processing. EXPORTS len(String) -> Length Types: String = string() Length =...
- supervisor
supervisor MODULE supervisor MODULE SUMMARY Generic Supervisor Behaviour DESCRIPTION A behaviour module for implementing a supervisor, a process which supervises other processes called child...
- supervisor_bridge
supervisor_bridge MODULE supervisor_bridge MODULE SUMMARY Generic Supervisor Bridge Behaviour. DESCRIPTION A behaviour module for implementing a supervisor_bridge, a process which connects a...
- sys
sys MODULE sys MODULE SUMMARY A Functional Interface to System Messages DESCRIPTION This module contains functions for sending system messages used by programs, and messaged used for debugging...
- timer
timer MODULE timer MODULE SUMMARY Timer Functions DESCRIPTION This module provides useful functions related to time. Unless otherwise stated, time is always measured in milliseconds . All timer...
- win32reg
win32reg MODULE win32reg MODULE SUMMARY win32reg provides access to the registry on Windows DESCRIPTION win32reg provides read and write access to the registry on Windows. It is essentially a port...
- zip
zip MODULE zip MODULE SUMMARY Utility for reading and creating 'zip' arhcives. DESCRIPTION The zip module archives and extract files to and from a zip archive. The zip format is specified by the "ZIP...
- Creating Certificates
4 Creating Certificates Here we consider the creation of example certificates. 4.1 The openssl Command The openssl command is a utility that comes with the OpenSSL distribution. It provides a variety...
- ssl
ssl MODULE new_ssl MODULE SUMMARY Interface Functions for Secure Socket Layer DESCRIPTION This module contains interface functions to the Secure Socket Layer. NEW SSL This manual page describes...
- PKIX Certificates
3 PKIX Certificates 3.1 Introduction to Certificates Certificates were originally defined by ITU (CCITT) and the latest definitions are described in X.509 , but those definitions are (as always) not...
- SSL Reference Manual
User's Guide | Reference Manual | Release Notes | Off-Print | Top SSL Reference Manual Version 3.9 Bibliography | Glossary | Index | Cover Table of Contents ssl ssl ssl_pkix new_ssl
- SSL Reference Manual
Bibliography ssl 3.9 Copyright © 1991-2008 Ericsson AB
- SSL Reference Manual
SSL Reference Manual Version 3.9 The SSL application provides secure communication over sockets. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit...
- SSL Reference Manual
This documentation requires a browser that can handle frames
- INDEX
INDEX Emphasized index entries refer to modules and Courier ditos to functions . accept/1 ssl accept/2 ssl cipher_suites/0 new_ssl cipher_suites/1 new_ssl ciphers/0 ssl close/1 ssl close/1 new_ssl...
- SSL Reference Manual
Glossary ssl 3.9 Copyright © 1991-2008 Ericsson AB
- ssl
ssl MODULE ssl MODULE SUMMARY Interface Functions for Secure Socket Layer DESCRIPTION This module contains interface functions to the Secure Socket Layer. General The reader is advised to also read...
- ssl
ssl APPLICATION ssl APPLICATION SUMMARY The SSL Application DESCRIPTION The Secure Socket Layer (SSL) application provides secure socket communication over TCP/IP. Warning In previous versions of...
- Using SSL for Erlang Distribution
5 Using SSL for Erlang Distribution This chapter describes how the Erlang distribution can use SSL to get additional verification and security. 5.1 Introduction The Erlang distribution can in theory...
- ssl_pkix
ssl_pkix MODULE ssl_pkix MODULE SUMMARY Decoding of PKIX certificates with representation in Erlang. DESCRIPTION This module provides decoding of PKIX certificates either provided as files or as...
- The SSL Protocol
1 The SSL Protocol Here we provide a short introduction to the SSL protocol. We only consider those part of the protocol that are important from a programming point of view. For a very good general...
- Using the SSL application
2 Using the SSL application Here we provide an introduction to using the Erlang/OTP SSL application, which is accessed through the ssl interface module. We also present example code in the Erlang...
- SSH
SSH MODULE ssh MODULE SUMMARY Main API of the SSH application DESCRIPTION Interface module for the SSH application EXPORTS start() -> ok | {error, Reason} Types: Reason = term() Starts the SSH...
- ssh_cli
ssh_cli MODULE ssh_cli MODULE SUMMARY SSH Command Line Interface. DESCRIPTION This module implements a CLI (Command Line Interface), for an SSH server. It's used by ssh_sshd to provide an interactive...
- ssh_cm
ssh_cm MODULE ssh_cm MODULE SUMMARY SSH connection layer. DESCRIPTION This module implements the SSH connection layer. EXPORTS connect(Host) -> {ok, Pid} | {error, Error} connect(Host, Options)...
- ssh_sftp
ssh_sftp MODULE ssh_sftp MODULE SUMMARY SFTP client. DESCRIPTION This module implements an SFTP (SSH FTP) client. SFTP is a secure, encrypted file transfer service available for SSH. The errors...
- ssh_sftpd
ssh_sftpd MODULE ssh_sftpd MODULE SUMMARY SSH FTP server. DESCRIPTION This module implements an SFTP server. EXPORTS listen(Port) -> {ok, Pid}|{error, Error} listen(Port, Options) -> {ok,...
- ssh_ssh
ssh_ssh MODULE ssh_ssh MODULE SUMMARY SSH client. DESCRIPTION This module implements a simple SSH client in erlang, providing an interactive shell to another computer. EXPORTS connect(Host) -> ok...
- ssh_sshd
ssh_sshd MODULE ssh_sshd MODULE SUMMARY SSH server with erlang shell. DESCRIPTION This module implements an erlang shell as an SSH server. EXPORTS listen(Port) -> {ok, Pid}|{error, Error}...
- ssh_transport
ssh_transport MODULE ssh_transport MODULE SUMMARY SSH transport layer. DESCRIPTION This module implements the SSH connection layer, as described in draft-ietf-secsh-transport-24 . This module should...
- snmp
snmp MODULE snmp MODULE SUMMARY Interface functions to the SNMP toolkit DESCRIPTION The module snmp contains interface functions to the SNMP toolkit. Common Data Types The following data-types are...
- Advanced Agent Topics
15 Advanced Agent Topics The chapter Advanced Agent Topics describes the more advanced agent related features of the SNMP development tool. The following topics are covered: When to use a Sub-agent...
- Definition of Agent Configuration Files
6 Definition of Agent Configuration Files All configuration data must be included in configuration files that are located in the configuration directory. The name of this directory is given in the...
- Agent Functional Description
2 Agent Functional Description The SNMP agent system consists of one Master Agent and optional Sub-agents. The tool makes it easy to dynamically extend an SNMP agent in run-time. MIBs can be loaded...
- Definition of Agent Net if
12 Definition of Agent Net if The Purpose of Agent Net if The Network Interface (Net if) process delivers SNMP PDUs to a master agent, and receives SNMP PDUs from the master agent. The most common...
- snmp
snmp APPLICATION snmp APPLICATION SUMMARY The SNMP Application DESCRIPTION This chapter describes the snmp application in OTP. The SNMP application provides the following services: a multilingual...
- SNMP Appendix A
16 SNMP Appendix A 16.1 Appendix A This appendix describes the conversion of SNMPv2 to SNMPv1 error messages. The instrumentation functions should return v2 error messages. Mapping of SNMPv2 error...
- SNMP Appendix B
17 SNMP Appendix B 17.1 Appendix B 17.1.1 RowStatus (from RFC1903) RowStatus ::= TEXTUAL-CONVENTION STATUS current DESCRIPTION "The RowStatus textual convention is used to manage the creation and...
- Audit Trail Log
14 Audit Trail Log The chapter Audit Trail Log describes the audit trail logging. Both the agent and the manager can be configured to log incoming and outgoing messages. It uses the Erlang standard...
- snmp_community_mib
snmp_community_mib MODULE snmp_community_mib MODULE SUMMARY Instrumentation Functions for SNMP-COMMUNITY-MIB DESCRIPTION The module snmp_community_mib implements the instrumentation functions for the...
- Running the application
5 Running the application The chapter Running the application describes how the application is configured and started. The topics include: configuration directories and parameters modifying the...
- Definition of Instrumentation Functions
11 Definition of Instrumentation Functions The section Definition of Instrumentation Functions describes the user defined functions, which the agent calls at different times. 11.1 Variable...
- snmp_framework_mib
snmp_framework_mib MODULE snmp_framework_mib MODULE SUMMARY Instrumentation Functions for SNMP-FRAMEWORK-MIB DESCRIPTION The module snmp_framework_mib implements instrumentation functions for the...
- snmp_generic
snmp_generic MODULE snmp_generic MODULE SUMMARY Generic Functions for Implementing SNMP Objects in a Database DESCRIPTION The module snmp_generic contains generic functions for implementing tables...
- Agent Implementation Example
8 Agent Implementation Example This Implementation Example section describes how an MIB can be implemented with the SNMP Development Toolkit. The example shown can be found in the toolkit...
- Manager Implementation Example
9 Manager Implementation Example This Implementation Example section describes how a simple manager can be implemented with the SNMP Development Toolkit. The example shown, ex2 , can be found in the...
- snmp_index
snmp_index MODULE snmp_index MODULE SUMMARY Abstract Data Type for SNMP Indexing DESCRIPTION The module snmp_index implements an Abstract Data Type (ADT) for an SNMP index structure for SNMP tables....
- Instrumentation Functions
10 Instrumentation Functions A user-defined instrumentation function for each object attaches the managed objects to real resources. This function is called by the agent on a get or set operation....
- SNMP Introduction
1 SNMP Introduction The SNMP development toolkit contains the following parts: An Extensible multi-lingual SNMP agent, which understands SNMPv1 (RFC1157), SNMPv2c (RFC1901, 1905, 1906 and 1907),...
- Definition of Manager Configuration Files
7 Definition of Manager Configuration Files Configuration data may be included in configuration files that is located in the configuration directory. The name of this directory is given in the...
- Manager Functional Description
3 Manager Functional Description 3.1 Features The manager provided with the tool is a lightweight manager that basically provides a means to communicate with agents. It does not really implement any...
- Definition of Manager Net if
13 Definition of Manager Net if The Purpose of Manager Net if The Network Interface (Net if) process delivers SNMP PDUs to the manager server, and receives SNMP PDUs from the manager server. The most...
- The MIB Compiler
4 The MIB Compiler The chapter The MIB Compiler describes the MIB compiler and contains the following topics: Operation Import Consistency checking between MIBs .hrl file generation Emacs integration...
- snmp_notification_mib
snmp_notification_mib MODULE snmp_notification_mib MODULE SUMMARY Instrumentation Functions for SNMP-NOTIFICATION-MIB DESCRIPTION The module snmp_notification_mib implements the instrumentation...
- snmp_pdus
snmp_pdus MODULE snmp_pdus MODULE SUMMARY Encode and Decode Functions for SNMP PDUs DESCRIPTION RFC1157, RFC1905 and/or RFC2272 should be studied carefully before using this module, snmp_pdus . The...
- snmp_standard_mib
snmp_standard_mib MODULE snmp_standard_mib MODULE SUMMARY Instrumentation Functions for STANDARD-MIB and SNMPv2-MIB DESCRIPTION The module snmp_standard_mib implements the instrumentation functions...
- snmp_target_mib
snmp_target_mib MODULE snmp_target_mib MODULE SUMMARY Instrumentation Functions for SNMP-TARGET-MIB DESCRIPTION The module snmp_target_mib implements the instrumentation functions for the...
- snmp_user_based_sm_mib
snmp_user_based_sm_mib MODULE snmp_user_based_sm_mib MODULE SUMMARY Instrumentation Functions for SNMP-USER-BASED-SM-MIB DESCRIPTION The module snmp_user_based_sm_mib implements the instrumentation...
- snmp_view_based_acm_mib
snmp_view_based_acm_mib MODULE snmp_view_based_acm_mib MODULE SUMMARY Instrumentation Functions for SNMP-VIEW-BASED-ACM-MIB DESCRIPTION The module snmp_view_based_acm_mib implements the...
- snmpa
snmpa MODULE snmpa MODULE SUMMARY Interface Functions to the SNMP toolkit agent DESCRIPTION The module snmpa contains interface functions to the SNMP agent. DATA TYPES oid() = [byte()] atl_type() =...
- snmpa_conf
snmpa_conf MODULE snmpa_conf MODULE SUMMARY Utility functions for handling the agent config files. DESCRIPTION The module snmpa_conf contains various utility functions to used for manipulating...
- snmpa_error
snmpa_error MODULE snmpa_error MODULE SUMMARY Functions for Reporting SNMP Errors DESCRIPTION The module snmpa_error contains two callback functions which are called if an error occurs at different...
- snmpa_error_io
snmpa_error_io MODULE snmpa_error_io MODULE SUMMARY Functions for Reporting SNMP Errors on stdio DESCRIPTION The module snmpa_error_io implements the snmp_error_report behaviour (see...
- snmpa_error_logger
snmpa_error_logger MODULE snmpa_error_logger MODULE SUMMARY Functions for Reporting SNMP Errors through the error_logger DESCRIPTION The module snmpa_error_logger implements the snmpa_error_report...
- snmpa_error_report
snmpa_error_report MODULE snmpa_error_report MODULE SUMMARY Behaviour module for reporting SNMP agent errors DESCRIPTION This module defines the behaviour of the agent error reporting. A...
- snmpa_local_db
snmpa_local_db MODULE snmpa_local_db MODULE SUMMARY The SNMP built-in database DESCRIPTION The module snmpa_local_db contains functions for implementing tables (and variables) using the SNMP built-in...
- snmpa_mpd
snmpa_mpd MODULE snmpa_mpd MODULE SUMMARY Message Processing and Dispatch module for the SNMP agent DESCRIPTION The module snmpa_mpd implements the version independent Message Processing and Dispatch...
- snmpa_network_interface
snmpa_network_interface MODULE snmpa_network_interface MODULE SUMMARY Behaviour module for the SNMP agent network interface. DESCRIPTION This module defines the behaviour of the agent network...
- snmpa_network_interface_filter
snmpa_network_interface_filter MODULE snmpa_network_interface_filter MODULE SUMMARY Behaviour module for the SNMP agent network-interface filter. DESCRIPTION This module defines the behaviour of the...
- snmpa_notification_delivery_info_receiver
snmpa_notification_delivery_info_receiver MODULE snmpa_notification_delivery_info_receiver MODULE SUMMARY Behaviour module for the SNMP agent notification delivery information receiver. DESCRIPTION...
- snmpa_notification_filter
snmpa_notification_filter MODULE snmpa_notification_filter MODULE SUMMARY Behaviour module for the SNMP agent notification filters. DESCRIPTION This module defines the behaviour of the agent...
- snmpa_supervisor
snmpa_supervisor MODULE snmpa_supervisor MODULE SUMMARY A supervisor for the SNMP agent Processes DESCRIPTION This is the top supervisor for the agent part of the SNMP application. There is always...
- snmpc
snmpc MODULE snmpc MODULE SUMMARY Interface Functions to the SNMP toolkit MIB compiler DESCRIPTION The module snmpc contains interface functions to the SNMP toolkit MIB compiler. EXPORTS...
- snmpm
snmpm MODULE snmpm MODULE SUMMARY Interface functions to the SNMP toolkit manager DESCRIPTION The module snmpm contains interface functions to the SNMP manager. Common Data Types The following data...
- snmpm_conf
snmpm_conf MODULE snmpm_conf MODULE SUMMARY Utility functions for handling the manager config files. DESCRIPTION The module snmpm_conf contains various utility functions to used for manipulating...
- snmpm_mpd
snmpm_mpd MODULE snmpm_mpd MODULE SUMMARY Message Processing and Dispatch module for the SNMP manager DESCRIPTION The module snmpm_mpd implements the version independent Message Processing and...
- snmpm_network_interface
snmpm_network_interface MODULE snmpm_network_interface MODULE SUMMARY Behaviour module for the SNMP manager network interface. DESCRIPTION This module defines the behaviour of the manager network...
- snmpm_user
snmpm_user MODULE snmpm_user MODULE SUMMARY Behaviour module for the SNMP manager user. DESCRIPTION This module defines the behaviour of the manager user. A snmpm_user compliant module must export...
- alarm_handler
alarm_handler MODULE alarm_handler MODULE SUMMARY An Alarm Handling Process DESCRIPTION The alarm handler process is a gen_event event manager process which receives alarms in the system. This...
- appup
appup FILE appup FILE SUMMARY Application upgrade file. DESCRIPTION The application upgrade file defines how an application is upgraded or downgraded in a running system. This file is used by the...
- overload
overload MODULE overload MODULE SUMMARY An Overload Regulation Process DESCRIPTION overload is a process which indirectly regulates CPU usage in the system. The idea is that a main application calls...
- rb
rb MODULE rb MODULE SUMMARY The Report Browser Tool DESCRIPTION The Report Browser (RB) tool makes it possible to browse and format error reports written by the error logger handler log_mf_h ....
- rel
rel FILE rel FILE SUMMARY Release resource file DESCRIPTION The release resource file specifies which applications are are included in a release (system) based on Erlang/OTP. This file is used by the...
- release_handler
release_handler MODULE release_handler MODULE SUMMARY Unpacking and Installation of Release Packages DESCRIPTION The release handler is a process belonging to the SASL application which is...
- relup
relup FILE relup FILE SUMMARY Release upgrade file DESCRIPTION The release upgrade file describes how a release is upgraded in a running system. This file is automatically generated by...
- sasl
sasl APPLICATION sasl APPLICATION SUMMARY The SASL Application DESCRIPTION This section describes the SASL (System Architecture Support Libraries) application which provides the following services:...
- Introduction
1 Introduction 1.1 About This Document The SASL (System Architecture Support Libraries) application provides support for: error logging alarm handling overload regulation release handling report...
- script
script FILE script FILE SUMMARY Boot script DESCRIPTION The boot script describes how the Erlang runtime system is started. It contains instructions on which code to load and which processes and...
- systools
systools MODULE systools MODULE SUMMARY A Set of Release Handling Tools. DESCRIPTION This module contains functions to generate boot scripts ( .boot , .script ), release upgrade scripts ( relup ),...
- dbg
dbg MODULE dbg MODULE SUMMARY The Text Based Trace Facility DESCRIPTION This module implements a text based interface to the trace/3 and the trace_pattern/2 BIFs. It makes it possible to trace...
- erts_alloc_config
erts_alloc_config MODULE erts_alloc_config MODULE SUMMARY Configuration tool for erts_alloc DESCRIPTION Note erts_alloc_config is currently an experimental tool and might be subject to backward...
- runtime_tools
runtime_tools APPLICATION runtime_tools APPLICATION SUMMARY The Runtime tools Application DESCRIPTION This chapter describes the Runtime_Tools application in OTP, which provides low footprint...
- pman
pman MODULE pman MODULE SUMMARY A graphical process manager. DESCRIPTION A graphical tool used to inspect the Erlang processes executing either locally or on remote nodes. It is also possible to...
- Pman
1 Pman 1.1 Introduction The process manager Pman is a tool for viewing processes executing locally or on remote nodes. Its main purpose is to locate erroneous code by inspecting the state of the...
- egd
egd MODULE egd MODULE SUMMARY egd - erlang graphical drawer. DESCRIPTION egd - erlang graphical drawer DATA TYPES color() egd_image() point() = {integer(), integer()} render_option() =...
- egd
2 egd 2.1 Introduction The egd module is an interface for 2d-image rendering and is used by Percept to generate dynamic graphs to its web pages. All code is pure erlang, no drivers needed. The...
- percept
percept MODULE percept MODULE SUMMARY Percept - Erlang Concurrency Profiling Tool. DESCRIPTION Percept - Erlang Concurrency Profiling Tool This module provides the user interface for the application....
- Customization functions
Customization functions
- percept_profile
percept_profile MODULE percept_profile MODULE SUMMARY Percept Collector. DESCRIPTION Percept Collector This module provides the user interface for the percept data collection (profiling). DATA TYPES...
- Percept
1 Percept Percept, or Percept - Erlang Concurrency Profiling Tool, utilizes trace informations and profiler events to form a picture of the processes's and ports runnability. 1.1 Introduction Percept...
- How we generate the formats
How to help improve the documentation Translations About the manual PHP Manual How we generate the formats This manual is written in XML using the » DocBook XML DTD , using » PhD (The [PH]P based...
- How to help improve the documentation
How to find more information about PHP How we generate the formats About the manual PHP Manual How to help improve the documentation There are three ways everyone can help improve this documentation....
- About the manual
Tips About user notes Appendices PHP Manual About the manual Table of Contents About user notes How to read a function definition (prototype) PHP versions documented in this manual How to find more...
- How to find more information about PHP
PHP versions documented in this manual How to help improve the documentation About the manual PHP Manual How to find more information about PHP This manual does not attempt to provide instruction...
- About user notes
About the manual How to read a function definition (prototype) About the manual PHP Manual About user notes The user-contributed notes play an important role in the development of this manual. By...
- PHP versions documented in this manual
How to read a function definition (prototype) How to find more information about PHP About the manual PHP Manual PHP versions documented in this manual The manual contains information about past,...
- How to read a function definition (prototype)
About user notes PHP versions documented in this manual About the manual PHP Manual How to read a function definition (prototype) Each function in the manual is documented for quick reference....
- Translations
About the manual Open Publication License About the manual PHP Manual Translations The PHP manual is available not only in various formats, but also in various languages. The text of the manual is...
- List of Function Aliases
State List of Reserved Words Appendices PHP Manual List of Function Aliases There are quite a few functions in PHP which you can call with more than one name. In some cases there is no preferred name...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of the Apache PHP module is affected by settings in php.ini . Configuration settings from php.ini may...
- Predefined Constants
Resource Types Apache Functions Apache PHP Manual Predefined Constants This extension has no constants defined. Resource Types Apache Functions Apache PHP Manual
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation For PHP installation on Apache see the installation chapter . Installing/Configuring Runtime Configuration...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation Apache PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . Although the default APC settings are fine...
- Predefined Constants
Resource Types APC Functions APC PHP Manual Predefined Constants This extension has no constants defined. Resource Types APC Functions APC PHP Manual
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation This » PECL extension is not bundled with PHP. Information for installing this PECL extension may be found...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation APC PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Runtime Configuration
Building on Win32 Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . APD Configuration Options Name Default...
- Predefined Constants
Resource Types Examples APD PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or...
- Examples
Predefined Constants APD Functions APD PHP Manual Examples How to use PHP-APD in your scripts As the first line of your PHP script, call the apd_set_pprof_trace() function to start the trace:...
- Installation
Installing/Configuring Building on Win32 Installing/Configuring PHP Manual Installation APD is currently available as a PECL extension from » http://pecl.php.net/package/apd . Make sure you have...
- Building on Win32
Installation Runtime Configuration Installing/Configuring PHP Manual Building on Win32 To build APD under Windows you need a working PHP compilation environment as described on http://php.net/ --...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation APD PHP Manual Installing/Configuring Table of Contents Installation Building on Win32 Runtime Configuration Resource Types Requirements No external libraries are needed to...
- Appendices
PHP Manual History of PHP and related projects PHP Manual PHP Manual Appendices History of PHP and related projects History of PHP related projects Books about PHP Publications about PHP Migrating...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Array Functions Arrays PHP Manual Predefined Constants The constants below are always available as part of the PHP core. CASE_LOWER ( integer ) CASE_LOWER is used with...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation There is no installation needed to use these functions; they are part of the PHP core....
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation Arrays PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Return current array entry
ArrayIterator ArrayIterator::key ArrayIterator PHP Manual ArrayIterator::current (PHP 5) ArrayIterator::current — Return current array entry Description mixed ArrayIterator::current ( void ) Get the...
- Return current array key
ArrayIterator::current ArrayIterator::next ArrayIterator PHP Manual ArrayIterator::key (PHP 5) ArrayIterator::key — Return current array key Description mixed ArrayIterator::key ( void ) This...
- Move to next entry
ArrayIterator::key ArrayIterator::rewind ArrayIterator PHP Manual ArrayIterator::next (PHP 5) ArrayIterator::next — Move to next entry Description void ArrayIterator::next ( void ) The iterator to...
- Rewind array back to the start
ArrayIterator::next ArrayIterator::seek ArrayIterator PHP Manual ArrayIterator::rewind (PHP 5) ArrayIterator::rewind — Rewind array back to the start Description void ArrayIterator::rewind ( void )...
- Seek to position
ArrayIterator::rewind ArrayIterator::valid ArrayIterator PHP Manual ArrayIterator::seek (PHP 5) ArrayIterator::seek — Seek to position Description void ArrayIterator::seek ( int $position ) Warning...
- Check whether array contains more entries
ArrayIterator ArrayObject ArrayIterator PHP Manual ArrayIterator::valid (PHP 5) ArrayIterator::valid — Check whether array contains more entries Description bool ArrayIterator::valid ( void ) Checks...
- Appends the value
ArrayObject ArrayObject::__construct ArrayObject PHP Manual ArrayObject::append (PHP 5) ArrayObject::append — Appends the value Description void ArrayObject::append ( mixed $newval ) Warning This...
- Construct a new array object
ArrayObject::append ArrayObject::count ArrayObject PHP Manual ArrayObject::__construct (PHP 5) ArrayObject::__construct — Construct a new array object Description ArrayObject::__construct ( mixed...
- Get the number of elements in the Iterator
ArrayObject::__construct ArrayObject::getIterator ArrayObject PHP Manual ArrayObject::count (PHP 5) ArrayObject::count — Get the number of elements in the Iterator Description int ArrayObject::count...
- Create a new iterator from an ArrayObject instance
ArrayObject::count ArrayObject::offsetExists ArrayObject PHP Manual ArrayObject::getIterator (PHP 5) ArrayObject::getIterator — Create a new iterator from an ArrayObject instance Description...
- Returns whether the requested $index exists
ArrayObject::getIterator ArrayObject::offsetGet ArrayObject PHP Manual ArrayObject::offsetExists (PHP 5) ArrayObject::offsetExists — Returns whether the requested $index exists Description bool...
- Returns the value at the specified $index
ArrayObject::offsetExists ArrayObject::offsetSet ArrayObject PHP Manual ArrayObject::offsetGet (PHP 5) ArrayObject::offsetGet — Returns the value at the specified $index Description mixed...
- Sets the value at the specified $index to $newval
ArrayObject::offsetGet ArrayObject::offsetUnset ArrayObject PHP Manual ArrayObject::offsetSet (PHP 5) ArrayObject::offsetSet — Sets the value at the specified $index to $newval Description void...
- Unsets the value at the specified $index
ArrayObject CachingIterator ArrayObject PHP Manual ArrayObject::offsetUnset (PHP 5) ArrayObject::offsetUnset — Unsets the value at the specified $index Description void ArrayObject::offsetUnset (...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types BBCode Functions BBCode PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation Information for installing this PECL extension may be found in the manual chapter titled Installation of...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types One resource is used in the BBCode extension: a BBCode_Container returned by bbcode_create() ....
- Installing/Configuring
Introduction Installation BBCode PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . BC math configuration options Name Default...
- Predefined Constants
Resource Types BC Math Functions BC Math PHP Manual Predefined Constants This extension has no constants defined. Resource Types BC Math Functions BC Math PHP Manual
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation These functions are only available if PHP was configured with --enable-bcmath . The Windows version of PHP...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation BC Math PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements Since PHP 4.0.4, libbcmath is bundled with PHP....
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types bcompiler Functions bcompiler PHP Manual Predefined Constants This extension has no constants defined. Resource Types bcompiler Functions bcompiler PHP Manual
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation short installation note: You need at least PHP 4.3.0 for the compression to work To install on PHP 4.3.0...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation bcompiler PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Apache
Server Specific Extensions Introduction Server Specific Extensions PHP Manual Apache Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Apache...
- Alternative PHP Cache
Affecting PHP's Behaviour Introduction Affecting PHP's Behaviour PHP Manual Alternative PHP Cache Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- Advanced PHP debugger
apc_store Introduction Affecting PHP's Behaviour PHP Manual Advanced PHP debugger Introduction Installing/Configuring Installation Building on Win32 Runtime Configuration Resource Types Predefined...
- Arrays
Variable and Type Related Extensions Introduction Variable and Type Related Extensions PHP Manual Arrays Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- Bulletin Board Code
Text Processing Introduction Text Processing PHP Manual Bulletin Board Code Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants BBCode Functions...
- BCMath Arbitrary Precision Mathematics
Mathematical Extensions Introduction Mathematical Extensions PHP Manual BCMath Arbitrary Precision Mathematics Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- PHP bytecode Compiler
rename_function Introduction Affecting PHP's Behaviour PHP Manual PHP bytecode Compiler Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- Bzip2
Compression and Archive Extensions Introduction Compression and Archive Extensions PHP Manual Bzip2 Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- Calendar
Calendar and Event Related Extensions Introduction Calendar and Event Related Extensions PHP Manual Calendar Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- Classkit
property_exists Introduction Variable and Type Related Extensions PHP Manual Classkit Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- Class/Object Information
usort Introduction Variable and Type Related Extensions PHP Manual Class/Object Information Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- COM and .Net (Windows)
dotnet_load Introduction Windows Only Extensions PHP Manual COM and .Net (Windows) Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Errors...
- Cracklib
Cryptography Extensions Introduction Cryptography Extensions PHP Manual Cracklib Crack Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- Character type checking
classkit_method_rename Introduction Variable and Type Related Extensions PHP Manual Character type checking Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- Client URL Library
Other Services Introduction Other Services PHP Manual Client URL Library Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples cURL...
- Cyrus IMAP administration
Mail Related Extensions Introduction Mail Related Extensions PHP Manual Cyrus IMAP administration Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- Date and Time
Calendar and Event Related Extensions Introduction Calendar and Event Related Extensions PHP Manual Date and Time Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- Database (dbm-style) Abstraction Layer
Abstraction Layers Introduction Abstraction Layers PHP Manual Database (dbm-style) Abstraction Layer Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- dBase
Vendor Specific Database Extensions Introduction Vendor Specific Database Extensions PHP Manual dBase Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- DB++
dbase_replace_record Introduction Vendor Specific Database Extensions PHP Manual DB++ Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants DB++...
- dbx
dba_sync Introduction Abstraction Layers PHP Manual dbx Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants dbx Functions dbx_close — Close an...
- Direct IO
File System Related Extensions Introduction File System Related Extensions PHP Manual Direct IO Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- Directories
dio_write Installing/Configuring File System Related Extensions PHP Manual Directories Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Directory...
- Document Object Model
XML Manipulation Introduction XML Manipulation PHP Manual Document Object Model Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants DOMAttr —...
- DOM XML
dom_import_simplexml Introduction XML Manipulation PHP Manual DOM XML Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants DOM XML Functions...
- .NET
Windows Only Extensions Introduction Windows Only Extensions PHP Manual .NET Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants .NET Functions...
- Enchant spelling library
Human Language and Character Encoding Support Introduction Human Language and Character Encoding Support PHP Manual Enchant spelling library Introduction Installing/Configuring Installation Runtime...
- Error Handling and Logging
bcompiler_write_included_filename Introduction Affecting PHP's Behaviour PHP Manual Error Handling and Logging Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- System program execution
Process Control Extensions Introduction Process Control Extensions PHP Manual System program execution Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- Exchangeable image information
Image Processing and Generation Introduction Image Processing and Generation PHP Manual Exchangeable image information Introduction Installing/Configuring Installation Runtime Configuration Resource...
- Expect
system Introduction Process Control Extensions PHP Manual Expect Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples Expect Functions...
- File Alteration Monitor
curl_version Introduction Other Services PHP Manual File Alteration Monitor Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants FAM Functions...
- FrontBase
dbplus_xunlockrel Introduction Vendor Specific Database Extensions PHP Manual FrontBase Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- Forms Data Format
Non-Text MIME Output Introduction Non-Text MIME Output PHP Manual Forms Data Format Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- File Information
scandir Introduction File System Related Extensions PHP Manual File Information Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Fileinfo...
- filePro
fbsql_warnings Introduction Vendor Specific Database Extensions PHP Manual filePro Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants filePro...
- Filesystem
finfo_set_flags Introduction File System Related Extensions PHP Manual Filesystem Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Filesystem...
- Data Filtering
ctype_xdigit Introduction Variable and Type Related Extensions PHP Manual Data Filtering Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- FriBiDi
enchant_dict_suggest Introduction Human Language and Character Encoding Support PHP Manual FriBiDi Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- FTP
fam_suspend_monitor Introduction Other Services PHP Manual FTP Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples FTP Functions...
- Function Handling
filter_var Introduction Variable and Type Related Extensions PHP Manual Function Handling Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- Geo IP Location
Other Basic Extensions Introduction Other Basic Extensions PHP Manual Geo IP Location Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants GeoIP...
- Gettext
fribidi_log2vis Introduction Human Language and Character Encoding Support PHP Manual Gettext Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- GNU Multiple Precision
bcsub Introduction Mathematical Extensions PHP Manual GNU Multiple Precision Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples GMP...
- GNU Privacy Guard
fdf_set_version Introduction Non-Text MIME Output PHP Manual GNU Privacy Guard Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- Haru PDF
gnupg_verify Introduction Non-Text MIME Output PHP Manual Haru PDF Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples Builtin Fonts...
- HASH Message Digest Framework
crack_opendict Introduction Cryptography Extensions PHP Manual HASH Message Digest Framework Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- HTTP
hw_api->userlist Introduction Other Services PHP Manual HTTP Introduction Installing/Configuring Installing the HTTP extension — Installation/Configuration Runtime Configuration Resource Types...
- Hyperwave
ftp_systype Introduction Other Services PHP Manual Hyperwave Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Integration with Apache...
- Hyperwave API
hw_Who Introduction Other Services PHP Manual Hyperwave API Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Hyperwave API Functions...
- Internationalization
textdomain Introduction Human Language and Character Encoding Support PHP Manual Internationalization Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- Firebird/InterBase
filepro Introduction Vendor Specific Database Extensions PHP Manual Firebird/InterBase Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- IBM DB2, Cloudscape and Apache Derby
ifxus_write_slob Introduction Vendor Specific Database Extensions PHP Manual IBM DB2, Cloudscape and Apache Derby Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- iconv
locale_set_default Introduction Human Language and Character Encoding Support PHP Manual iconv Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- ID3 Tags
Audio Formats Manipulation Introduction Audio Formats Manipulation PHP Manual ID3 Tags Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants ID3...
- Informix
ibase_wait_event Introduction Vendor Specific Database Extensions PHP Manual Informix Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- IIS Administration
virtual Introduction Server Specific Extensions PHP Manual IIS Administration Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants IIS Functions...
- Image Processing (GD)
read_exif_data Introduction Image Processing and Generation PHP Manual Image Processing (GD) Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- Image Processing (ImageMagick)
Image Processing and Generation Introduction Image Processing and Generation PHP Manual Image Processing (ImageMagick) Introduction Installing/Configuring Installation Runtime Configuration Resource...
- IMAP, POP3 and NNTP
cyrus_unbind Introduction Mail Related Extensions PHP Manual IMAP, POP3 and NNTP Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants IMAP...
- PHP Options and Information
output_reset_rewrite_vars Introduction Affecting PHP's Behaviour PHP Manual PHP Options and Information Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- Ingres II
db2_tables Introduction Vendor Specific Database Extensions PHP Manual Ingres II Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- Internationalization Functions
ob_iconv_handler Introduction Human Language and Character Encoding Support PHP Manual Internationalization Functions Introduction Installing/Configuring Installation Testing Building Resource Types...
- PHP / Java Integration
http_build_url Introduction Other Services PHP Manual PHP / Java Integration Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Java Servlet...
- JavaScript Object Notation
geoip_region_by_name Introduction Other Basic Extensions PHP Manual JavaScript Object Notation Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- Kerberos V
Authentication Services Introduction Authentication Services PHP Manual Kerberos V Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Constants...
- Lightweight Directory Access Protocol
java_last_exception_get Introduction Other Services PHP Manual Lightweight Directory Access Protocol Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- libxml
xptr_new_context Introduction XML Manipulation PHP Manual libxml Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants libxml Functions...
- LZF
bzwrite Introduction Compression and Archive Extensions PHP Manual LZF Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants LZF Functions...
- Mail
imap_utf8 Introduction Mail Related Extensions PHP Manual Mail Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Mail Functions ezmlm_hash —...
- Mailparse
mail Introduction Mail Related Extensions PHP Manual Mailparse Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Mailparse Functions...
- Mathematical Functions
gmp_xor Introduction Mathematical Extensions PHP Manual Mathematical Functions Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Math...
- MaxDB
ingres_rollback Introduction Vendor Specific Database Extensions PHP Manual MaxDB Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- Multibyte String
IntlDateFormatter::setTimeZoneId Introduction Human Language and Character Encoding Support PHP Manual Multibyte String Introduction Installing/Configuring Installation Runtime Configuration Resource...
- Mcrypt
hash Introduction Cryptography Extensions PHP Manual Mcrypt Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Mcrypt ciphers Examples Mcrypt...
- MCVE (Monetra) Payment
Credit Card Processing Introduction Credit Card Processing PHP Manual MCVE (Monetra) Payment Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- Memcache
notes_version Introduction Other Services PHP Manual Memcache Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples Memcache Functions...
- Mhash
mdecrypt_generic Introduction Cryptography Extensions PHP Manual Mhash Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples Mhash...
- Mimetype
unlink Introduction File System Related Extensions PHP Manual Mimetype Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Mimetype Functions...
- Ming (flash)
HaruDestination::setXYZ Introduction Non-Text MIME Output PHP Manual Ming (flash) Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- Miscellaneous Functions
json_encode Introduction Other Basic Extensions PHP Manual Miscellaneous Functions Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Misc....
- mnoGoSearch
Memcache::setServerParams Introduction Other Services PHP Manual mnoGoSearch Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants mnoGoSearch...
- mqseries
udm_set_agent_param Introduction Other Services PHP Manual mqseries Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants mqseries Functions...
- Mohawk Software Session Handler Functions
Session Extensions Introduction Session Extensions PHP Manual Mohawk Software Session Handler Functions Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- mSQL
maxdb_warning_count Introduction Vendor Specific Database Extensions PHP Manual mSQL Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- Microsoft SQL Server
msql Introduction Vendor Specific Database Extensions PHP Manual Microsoft SQL Server Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Mssql...
- MySQL
mssql_select_db Introduction Vendor Specific Database Extensions PHP Manual MySQL Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- MySQL Improved Extension
mysql_unbuffered_query Introduction Vendor Specific Database Extensions PHP Manual MySQL Improved Extension Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- Ncurses Terminal Screen Control
newt_win_ternary Introduction Command Line Specific Extensions PHP Manual Ncurses Terminal Screen Control Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- Net Gopher
mqseries_strerror Introduction Other Services PHP Manual Net Gopher Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples Gopher...
- Network
gopher_parsedir Introduction Other Services PHP Manual Network Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Network Functions checkdnsrr...
- Newt
Command Line Specific Extensions Introduction Command Line Specific Extensions PHP Manual Newt Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- YP/NIS
Other Services Introduction Other Services PHP Manual YP/NIS Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants YP/NIS Functions yp_all —...
- Lotus Notes
ldap_unbind Introduction Other Services PHP Manual Lotus Notes Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Lotus Notes Functions...
- NSAPI
Server Specific Extensions Introduction Server Specific Extensions PHP Manual NSAPI Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants NSAPI...
- Object Aggregation/Composition
unregister_tick_function Introduction Variable and Type Related Extensions PHP Manual Object Aggregation/Composition Introduction Examples Examples Object Aggregation Functions aggregate_info — Gets...
- Oracle OCI8
mysqli_slave_query Introduction Vendor Specific Database Extensions PHP Manual Oracle OCI8 Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- OGG/Vorbis
id3_set_tag Introduction Audio Formats Manipulation PHP Manual OGG/Vorbis Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Context options...
- OpenAL Audio Bindings
Audio Formats Manipulation Introduction Audio Formats Manipulation PHP Manual OpenAL Audio Bindings Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- OpenSSL
Cryptography Extensions Introduction Cryptography Extensions PHP Manual OpenSSL Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Padding...
- Output Buffering Control
overload Introduction Affecting PHP's Behaviour PHP Manual Output Buffering Control Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- Object property and method call overloading
user_error Introduction Affecting PHP's Behaviour PHP Manual Object property and method call overloading Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- Ovrimos SQL
ociwritetemporarylob Introduction Vendor Specific Database Extensions PHP Manual Ovrimos SQL Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- Paradox File Access
ovrimos_rollback Introduction Vendor Specific Database Extensions PHP Manual Paradox File Access Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- Parsekit
usleep Introduction Other Basic Extensions PHP Manual Parsekit Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Parsekit Functions...
- Process Control
expect_popen Introduction Process Control Extensions PHP Manual Process Control Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- Regular Expressions (Perl-Compatible)
bbcode_set_flags Introduction Text Processing PHP Manual Regular Expressions (Perl-Compatible) Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- PDF
SWFVideoStream->setDimension() Introduction Non-Text MIME Output PHP Manual PDF Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- PHP Data Objects
odbc_tables Introduction Abstraction Layers PHP Manual PHP Data Objects Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Connections and...
- PostgreSQL
px_update_record Introduction Vendor Specific Database Extensions PHP Manual PostgreSQL Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- Phar
lzf_optimized_for Introduction Compression and Archive Extensions PHP Manual Phar Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Using Phar...
- POSIX
pcntl_wtermsig Introduction Process Control Extensions PHP Manual POSIX Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants POSIX Functions...
- Printer
variant_xor Introduction Windows Only Extensions PHP Manual Printer Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Printer Functions...
- PostScript document creation
PDF_utf8_to_utf16 Introduction Non-Text MIME Output PHP Manual PostScript document creation Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- Pspell
mb_substr Introduction Human Language and Character Encoding Support PHP Manual Pspell Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- qtdom
libxml_use_internal_errors Introduction XML Manipulation PHP Manual qtdom Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants qtdom Functions...
- Radius
Authentication Services Introduction Authentication Services PHP Manual Radius Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- Rar Archiving
PharException Introduction Compression and Archive Extensions PHP Manual Rar Archiving Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- GNU Readline
Command Line Specific Extensions Introduction Command Line Specific Extensions PHP Manual GNU Readline Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- GNU Recode
pspell_suggest Introduction Human Language and Character Encoding Support PHP Manual GNU Recode Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- Regular Expression (POSIX Extended)
preg_split Introduction Text Processing PHP Manual Regular Expression (POSIX Extended) Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- RPM Header Reading
ps_translate Introduction Non-Text MIME Output PHP Manual RPM Header Reading Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples RPM...
- runkit
Affecting PHP's Behaviour Introduction Affecting PHP's Behaviour PHP Manual runkit Introduction Predefined Constants Installing/Configuring Installation Runtime Configuration Resource Types runkit...
- Simple Asynchronous Messaging
syslog Introduction Other Services PHP Manual Simple Asynchronous Messaging Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- SCA
qdom_tree Introduction XML Manipulation PHP Manual SCA Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples Obtaining a proxy for...
- Service Data Objects
PDO->sqliteCreateFunction() Introduction Abstraction Layers PHP Manual Service Data Objects Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- SDO Relational Data Access Service
Abstraction Layers Introduction Abstraction Layers PHP Manual SDO Relational Data Access Service Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- SDO XML Data Access Service
SCA::getService Introduction XML Manipulation PHP Manual SDO XML Data Access Service Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- Semaphore, Shared Memory and IPC
posix_uname Introduction Process Control Extensions PHP Manual Semaphore, Shared Memory and IPC Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- Session Handling
msession_unlock Introduction Session Extensions PHP Manual Session Handling Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples Passing...
- PostgreSQL Session Save Handler
Session Extensions Introduction Session Extensions PHP Manual PostgreSQL Session Save Handler Introduction Installing/Configuring Installation Runtime Configuration Resource Types Table definitions...
- Shared Memory
Process Control Extensions Introduction Process Control Extensions PHP Manual Shared Memory Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- SimpleXML
SDO_DAS_XML::saveString Introduction XML Manipulation PHP Manual SimpleXML Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- SNMP
SAMMessage->header Introduction Other Services PHP Manual SNMP Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants SNMP Functions...
- SOAP
Web Services Introduction Web Services PHP Manual SOAP Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants SOAP Functions is_soap_fault — Checks...
- Sockets
snmpwalkoid Introduction Other Services PHP Manual Sockets Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples Socket Errors Socket...
- Standard PHP Library (SPL)
parsekit_func_arginfo Introduction Other Basic Extensions PHP Manual Standard PHP Library (SPL) Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- SPPLUS Payment System
Credit Card Processing Introduction Credit Card Processing PHP Manual SPPLUS Payment System Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- SQLite
pg_version Introduction Vendor Specific Database Extensions PHP Manual SQLite Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants SQLite...
- SQLite3
sqlite_valid Introduction Vendor Specific Database Extensions PHP Manual SQLite3 Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants SQLite3 —...
- Secure Shell2
socket_write Introduction Other Services PHP Manual Secure Shell2 Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants SSH2 Functions...
- Statistics
Mathematical Extensions Introduction Mathematical Extensions PHP Manual Statistics Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Statistic...
- Streams
SplPriorityQueue::valid Introduction Other Basic Extensions PHP Manual Streams Introduction Installing/Configuring Installation Runtime Configuration Stream Classes Predefined Constants Stream...
- Strings
Text Processing Introduction Text Processing PHP Manual Strings Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants String Functions addcslashes...
- Subversion
ssh2_tunnel Introduction Other Services PHP Manual Subversion Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants SVN Functions svn_add —...
- Shockwave Flash
rpm_version Introduction Non-Text MIME Output PHP Manual Shockwave Flash Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples SWF...
- Swish Indexing
Non-Text MIME Output Introduction Non-Text MIME Output PHP Manual Swish Indexing Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- Sybase
Vendor Specific Database Extensions Introduction Vendor Specific Database Extensions PHP Manual Sybase Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined...
- TCP Wrappers
svn_update Introduction Other Services PHP Manual TCP Wrappers Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants TCP Functions tcpwrap_check —...
- Tidy
stream_wrapper_unregister Introduction Other Basic Extensions PHP Manual Tidy Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples Tidy...
- Tokenizer
tidyNode::getParent Introduction Other Basic Extensions PHP Manual Tokenizer Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- Unicode
Human Language and Character Encoding Support Introduction Human Language and Character Encoding Support PHP Manual Unicode Introduction Installing/Configuring Installation Runtime Configuration...
- ODBC (Unified)
dbx_sort Introduction Abstraction Layers PHP Manual ODBC (Unified) Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants ODBC Functions...
- URLs
Other Basic Extensions Introduction Other Basic Extensions PHP Manual URLs Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants URL Functions...
- Variable handling
Variable and Type Related Extensions Introduction Variable and Type Related Extensions PHP Manual Variable handling Introduction Installing/Configuring Installation Runtime Configuration Resource...
- vpopmail
Mail Related Extensions Introduction Mail Related Extensions PHP Manual vpopmail Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants vpopmail...
- W32api
printer_write Introduction Windows Only Extensions PHP Manual W32api Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples W32api...
- WDDX
simplexml_load_string Introduction XML Manipulation PHP Manual WDDX Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples WDDX Functions...
- win32ps
w32api_set_call_method Introduction Windows Only Extensions PHP Manual win32ps Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples...
- win32service
Windows Only Extensions Introduction Windows Only Extensions PHP Manual win32service Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- xattr
mime_content_type Introduction File System Related Extensions PHP Manual xattr Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants xattr...
- xdiff
File System Related Extensions Introduction File System Related Extensions PHP Manual xdiff Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants...
- XML Parser
wddx_unserialize Introduction XML Manipulation PHP Manual XML Parser Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Event Handlers Case...
- XMLReader
xml_set_unparsed_entity_decl_handler Introduction XML Manipulation PHP Manual XMLReader Introduction Installing/Configuring Installation Runtime Configuration Resource Types XMLReader — The XMLReader...
- XML-RPC
Web Services Introduction Web Services PHP Manual XML-RPC Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants XML-RPC Functions...
- XMLWriter
XMLReader::XML Introduction XML Manipulation PHP Manual XMLWriter Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants XMLWriter Functions...
- XSL
XMLWriter::writeRaw Introduction XML Manipulation PHP Manual XSL Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples XSLTProcessor —...
- XSLT
XML Manipulation Introduction XML Manipulation PHP Manual XSLT Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants XSLT Functions...
- YAZ
tcpwrap_check Introduction Other Services PHP Manual YAZ Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples YAZ Functions yaz_addinfo...
- Zip
rar_open Introduction Compression and Archive Extensions PHP Manual Zip Introduction Installing/Configuring Installation Runtime Configuration Resource Types Predefined Constants Examples Zip...
- Zlib Compression
Compression and Archive Extensions Introduction Compression and Archive Extensions PHP Manual Zlib Compression Introduction Installing/Configuring Installation Runtime Configuration Resource Types...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Examples Bzip2 PHP Manual Predefined Constants This extension has no constants defined. Resource Types Examples Bzip2 PHP Manual
- Examples
Predefined Constants Bzip2 Functions Bzip2 PHP Manual Examples This example opens a temporary file and writes a test string to it, then prints out the contents of the file. Example #1 Small bzip2...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation Bzip2 support in PHP is not enabled by default. You will need to use the --with-bz2[=DIR] configuration...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension defines one resource type: a file pointer identifying the bz2-file to work on....
- Installing/Configuring
Introduction Installation Bzip2 PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements This module uses the functions of the » bzip2...
- Check whether the inner iterator has a valid next element
CachingIterator CachingIterator::next CachingIterator PHP Manual CachingIterator::hasNext (PHP 5) CachingIterator::hasNext — Check whether the inner iterator has a valid next element Description bool...
- Move the iterator forward
CachingIterator::hasNext CachingIterator::rewind CachingIterator PHP Manual CachingIterator::next (PHP 5) CachingIterator::next — Move the iterator forward Description void CachingIterator::next (...
- Rewind the iterator
CachingIterator::next CachingIterator::__toString CachingIterator PHP Manual CachingIterator::rewind (PHP 5) CachingIterator::rewind — Rewind the iterator Description void CachingIterator::rewind (...
- Return the string representation of the current element
CachingIterator::rewind CachingIterator::valid CachingIterator PHP Manual CachingIterator::__toString (PHP 5) CachingIterator::__toString — Return the string representation of the current element...
- Check whether the current element is valid
CachingIterator RecursiveCachingIterator CachingIterator PHP Manual CachingIterator::valid (PHP 5) CachingIterator::valid — Check whether the current element is valid Description bool...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Calendar Functions Calendar PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation To get these functions to work, you have to compile PHP with --enable-calendar . The Windows version of PHP...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation Calendar PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- The ArrayIterator class
spl_object_hash ArrayIterator::current SPL PHP Manual The ArrayIterator class Introduction This iterator allows to unset and modify values and keys while iterating over Arrays and Objects. When you...
- The ArrayObject class
ArrayIterator::valid ArrayObject::append SPL PHP Manual The ArrayObject class Introduction ... Class synopsis ArrayObject class ArrayObject implements IteratorAggregate , Traversable , ArrayAccess ,...
- The CachingIterator class
ArrayObject::offsetUnset CachingIterator::hasNext SPL PHP Manual The CachingIterator class Introduction ... Class synopsis CachingIterator class CachingIterator extends IteratorIterator implements...
- The Collator class
intl_is_failure Collator::asort intl PHP Manual The Collator class Introduction Provides string comparison capability with support for appropriate locale-sensitive sort orderings. Class synopsis...
- COM class
COM Functions DOTNET COM Functions PHP Manual COM (No version information available, might be only in CVS) COM — COM class $obj = new COM ("Application.ID") Description The COM class allows you to...
- Return an instance of the Directory class
chroot closedir Directory Functions PHP Manual dir (PHP 4, PHP 5) dir — Return an instance of the Directory class Description Directory class Directory { string $path ; resource $handle ; string read...
- The DirectoryIterator class
RecursiveCachingIterator::hasChildren DirectoryIterator::__construct SPL PHP Manual The DirectoryIterator class Introduction ... Class synopsis DirectoryIterator class DirectoryIterator extends...
- The DOMAttr class
Predefined Constants DOMAttr::__construct DOM PHP Manual The DOMAttr class Introduction DOMAttr represents an attribute in the DOMElement object. Class synopsis DOMAttr class DOMAttr extends DOMNode...
- The DOMCharacterData class
DOMAttr::isId DOMCharacterData::appendData DOM PHP Manual The DOMCharacterData class Introduction Represents nodes with character data. No nodes directly correspond to this class, but other nodes do...
- The DOMComment class
DOMCharacterData::substringData DOMComment::__construct DOM PHP Manual The DOMComment class Introduction Represents comment nodes, characters delimited by <!-- and --> . Class synopsis...
- The DOMDocument class
DOMComment::__construct DOMDocument::__construct DOM PHP Manual The DOMDocument class Introduction Represents an entire HTML or XML document; serves as the root of the document tree. Class synopsis...
- The DOMDocumentFragment class
DOMDocument::xinclude DOMDocumentFragment::appendXML DOM PHP Manual The DOMDocumentFragment class Class synopsis DOMDocumentFragment class DOMDocumentFragment extends DOMNode { /* Properties */ /*...
- The DOMDocumentType class
DOMDocumentFragment::appendXML DOMElement DOM PHP Manual The DOMDocumentType class Introduction Each DOMDocument has a doctype attribute whose value is either NULL or a DOMDocumentType object. Class...
- The DOMElement class
DOMDocumentType DOMElement::__construct DOM PHP Manual The DOMElement class Class synopsis DOMElement class DOMElement extends DOMNode { /* Properties */ readonly public bool $schemaTypeInfo ;...
- The DOMEntity class
DOMElement::setIdAttributeNS DOMEntityReference DOM PHP Manual The DOMEntity class Introduction This interface represents a known entity, either parsed or unparsed, in an XML document. Class synopsis...
- The DOMEntityReference class
DOMEntity DOMEntityReference::__construct DOM PHP Manual The DOMEntityReference class Class synopsis DOMEntityReference class DOMEntityReference extends DOMNode { /* Properties */ /* Methods */...
- The DOMException class
DOMEntityReference::__construct DOMImplementation DOM PHP Manual The DOMException class Introduction DOM operations raise exceptions under particular circumstances, i.e., when an operation is...
- The DOMImplementation class
DOMException DOMImplementation::__construct DOM PHP Manual The DOMImplementation class Introduction The DOMImplementation interface provides a number of methods for performing operations that are...
- The DOMNamedNodeMap class
DOMImplementation::hasFeature DOMNamedNodeMap::getNamedItem DOM PHP Manual The DOMNamedNodeMap class Class synopsis DOMNamedNodeMap class DOMNamedNodeMap { /* Properties */ /* Methods */ DOMNode...
- The DOMNode class
DOMNamedNodeMap::item DOMNode::appendChild DOM PHP Manual The DOMNode class Class synopsis DOMNode class DOMNode { /* Properties */ public readonly string $nodeName ; public string $nodeValue ;...
- The DOMNodeList class
DOMNode::replaceChild DOMNodelist::item DOM PHP Manual The DOMNodeList class Class synopsis DOMNodeList class DOMNodeList { /* Properties */ readonly public int $length ; /* Methods */ DOMNode...
- The DOMNotation class
DOMNodelist::item DOMProcessingInstruction DOM PHP Manual The DOMNotation class Class synopsis DOMNotation class DOMNotation extends DOMNode { /* Properties */ readonly public string $publicId ;...
- The DOMProcessingInstruction class
DOMNotation DOMProcessingInstruction::__construct DOM PHP Manual The DOMProcessingInstruction class Class synopsis DOMProcessingInstruction class DOMProcessingInstruction extends DOMNode { /*...
- The DOMText class
DOMProcessingInstruction::__construct DOMText::__construct DOM PHP Manual The DOMText class Class synopsis DOMText class DOMText extends DOMCharacterData { /* Properties */ readonly public string...
- The DOMXPath class
DOMText::splitText DOMXPath::__construct DOM PHP Manual The DOMXPath class Class synopsis DOMXPath class DOMXPath { /* Properties */ public DOMDocument $document ; /* Methods */ __construct (...
- DOTNET class
COM VARIANT COM Functions PHP Manual DOTNET (No version information available, might be only in CVS) DOTNET — DOTNET class $obj = new DOTNET ("assembly", "classname") Description The DOTNET class...
- ErrorException
Predefined Exceptions ErrorException::__construct Predefined Exceptions PHP Manual ErrorException Introduction An Error Exception. Class synopsis ErrorException class ErrorException extends Exception...
- Exception
Predefined Exceptions Exception::__construct Predefined Exceptions PHP Manual Exception Introduction Exception is the base class for all Exceptions. Class synopsis Exception class Exception { /*...
- The FilterIterator class
DirectoryIterator::valid FilterIterator::current SPL PHP Manual The FilterIterator class Introduction ... Class synopsis FilterIterator abstract class FilterIterator extends IteratorIterator...
- The HaruAnnotation class
HaruOutline::setOpened HaruAnnotation::setBorderStyle haru PHP Manual The HaruAnnotation class Introduction Haru PDF Annotation Class. Class synopsis HaruAnnotation class HaruAnnotation { /* Methods...
- The HaruDestination class
haru HaruDestination::setFit haru PHP Manual The HaruDestination class Introduction Haru PDF Destination Class. Class synopsis HaruDestination class HaruDestination { /* Methods */ bool setFit ( void...
- The HaruDoc class
HaruException HaruDoc::addPage haru PHP Manual The HaruDoc class Introduction Haru PDF Document Class. Class synopsis HaruDoc class HaruDoc { /* Methods */ object addPage ( void ) bool addPageLabel (...
- The HaruEncoder class
HaruImage::setMaskImage HaruEncoder::getByteType haru PHP Manual The HaruEncoder class Introduction Haru PDF Encoder Class. Class synopsis HaruEncoder class HaruEncoder { /* Methods */ int...
- The HaruException class
Builtin Encodings HaruDoc haru PHP Manual The HaruException class Introduction Haru PDF Exception Class. Class synopsis HaruException class HaruException extends Exception { } Builtin Encodings...
- The HaruFont class
HaruPage::textRect HaruFont::getAscent haru PHP Manual The HaruFont class Introduction Haru PDF Font Class. Class synopsis HaruFont class HaruFont { /* Methods */ int getAscent ( void ) int...
- The HaruImage class
HaruFont::measureText HaruImage::getBitsPerComponent haru PHP Manual The HaruImage class Introduction Haru PDF Image Class. Class synopsis HaruImage class HaruImage { /* Methods */ int...
- The HaruOutline class
HaruEncoder::getWritingMode HaruOutline::setDestination haru PHP Manual The HaruOutline class Introduction Haru PDF Outline Class. Class synopsis HaruOutline class HaruOutline { /* Methods */ bool...
- The HaruPage class
HaruDoc::useKRFonts HaruPage::arc haru PHP Manual The HaruPage class Introduction Haru PDF Page Class. Class synopsis HaruPage class HaruPage { /* Methods */ bool arc ( float $x , float $y , float...
- The HttpDeflateStream class
Request Options HttpDeflateStream::__construct HTTP PHP Manual The HttpDeflateStream class Class synopsis HttpDeflateStream class HttpDeflateStream { public void __construct ([ int $flags = 0 ] )...
- The HttpInflateStream class
HttpDeflateStream::update HttpInflateStream::__construct HTTP PHP Manual The HttpInflateStream class Class synopsis HttpInflateStream class HttpInflateStream { public void __construct ([ int $flags =...
- The HttpMessage class
HttpInflateStream::update HttpMessage::addHeaders HTTP PHP Manual The HttpMessage class Class synopsis HttpMessage class HttpMessage implements Iterator , Countable , Serializable { public void...
- The HttpQueryString class
HttpMessage::toString HttpQueryString::__construct HTTP PHP Manual The HttpQueryString class Class synopsis HttpQueryString class HttpQueryString implements ArrayAccess , Serializable { final public...
- The HttpRequest
HttpQueryString::xlate HttpRequest::addCookies HTTP PHP Manual The HttpRequest Class synopsis HttpRequest class HttpRequest { public bool addCookies ( array $cookies ) public bool addHeaders ( array...
- The HttpRequestPool class
HttpRequest::setUrl HttpRequestPool::attach HTTP PHP Manual The HttpRequestPool class Class synopsis HttpRequestPool class HttpRequestPool implements Iterator , Countable { public bool attach (...
- The HttpResponse
HttpRequestPool::socketSelect HttpResponse::capture HTTP PHP Manual The HttpResponse Class synopsis HttpResponse class HttpResponse { static void capture ( void ) static int getBufferSize ( void )...
- The Imagick class
Examples Imagick::adaptiveBlurImage ImageMagick PHP Manual The Imagick class Class synopsis Imagick class Imagick implements Iterator , Traversable { bool adaptiveBlurImage ( float $radius , float...
- The ImagickDraw class
Imagick::writeImages ImagickDraw::affine ImageMagick PHP Manual The ImagickDraw class Class synopsis ImagickDraw class ImagickDraw { bool affine ( array $affine ) bool annotation ( float $x , float...
- The ImagickPixel class
ImagickDraw::translate ImagickPixel::clear ImageMagick PHP Manual The ImagickPixel class Class synopsis ImagickPixel class ImagickPixel { bool clear ( void ) ImagickPixel __construct ([ string $color...
- The ImagickPixelIterator class
ImageMagick ImagickPixelIterator::clear ImageMagick PHP Manual The ImagickPixelIterator class Class synopsis ImagickPixelIterator class ImagickPixelIterator { bool clear ( void ) ImagickPixelIterator...
- The IntlDateFormatter class
intl IntlDateFormatter::create intl PHP Manual The IntlDateFormatter class Introduction Date Formatter is a concrete class that enables locale-dependent formatting/parsing of dates using pattern...
- The LimitIterator class
FilterIterator::valid LimitIterator::getPosition SPL PHP Manual The LimitIterator class Introduction ... Class synopsis LimitIterator class LimitIterator extends IteratorIterator implements...
- The Locale class
NumberFormatter::setTextAttribute Locale::composeLocale intl PHP Manual The Locale class Introduction A "Locale" is an identifier used to get language, culture, or regionally-specific behavior from...
- The MessageFormatter class
Normalizer::normalize MessageFormatter::create intl PHP Manual The MessageFormatter class Introduction MessageFormatter is a concrete class that enables users to produce concatenated,...
- The MySQLi class
Predefined Constants mysqli->affected_rows Mysqli PHP Manual The MySQLi class Introduction Represents a connection between PHP and a MySQL database. Class synopsis MySQLi class MySQLi { /*...
- The MySQLi_Driver class
mysqli_result->num_rows mysqli_driver::embedded_server_end Mysqli PHP Manual The MySQLi_Driver class Introduction MySQLi Driver. Class synopsis MySQLi_Driver class MySQLi_Driver { /* Properties */...
- The MySQLi_Result class
mysqli_stmt::store_result mysqli_result->current_field Mysqli PHP Manual The MySQLi_Result class Introduction Represents the result set obtained from a query against the database. Class synopsis...
- The MySQLi_STMT class
mysqli::warning_count mysqli_stmt->affected_rows Mysqli PHP Manual The MySQLi_STMT class Introduction Represents a prepared statement. Class synopsis MySQLi_STMT class MySQLi_STMT { /* Properties...
- The Normalizer class
Locale::setDefault Normalizer::isNormalized intl PHP Manual The Normalizer class Introduction Normalization is a process that involves transforming characters and sequences of characters into a...
- The NumberFormatter class
Collator::sort NumberFormatter::create intl PHP Manual The NumberFormatter class Introduction Programs store and operate on numbers using a locale-independent binary representation. When displaying...
- The ParentIterator class
LimitIterator::valid ParentIterator::getChildren SPL PHP Manual The ParentIterator class Introduction ... Class synopsis ParentIterator class ParentIterator extends RecursiveFilterIterator implements...
- The PDO class
Large Objects (LOBs) PDO::beginTransaction PDO PHP Manual The PDO class Introduction Represents a connection between PHP and a database server. Class synopsis PDO class PDO { __construct ( string...
- The PDOStatement class
PDO::setAttribute PDOStatement->bindColumn PDO PHP Manual The PDOStatement class Introduction Represents a prepared statement and, after the statement is executed, an associated result set. Class...
- The Phar class
Phar Signature format Phar::addEmptyDir Phar PHP Manual The Phar class Introduction The Phar class provides a high-level interface to accessing and creating phar archives. Class synopsis Phar class...
- The PharData class
Phar::webPhar PharData::addEmptyDir Phar PHP Manual The PharData class Introduction The PharData class provides a high-level interface to accessing and creating non-executable tar and zip archives....
- The PharException class
Phar PharException Phar PHP Manual The PharException class Introduction The PharException class provides a phar-specific exception class for try/catch blocks. Class synopsis PharException class...
- The PharFileInfo class
PharData::setStub PharFileInfo::chmod Phar PHP Manual The PharFileInfo class Introduction The PharFileInfo class provides a high-level interface to the contents and attributes of a single file within...
- The RecursiveCachingIterator class
CachingIterator::valid RecursiveCachingIterator::getChildren SPL PHP Manual The RecursiveCachingIterator class Introduction ... Class synopsis RecursiveCachingIterator class RecursiveCachingIterator...
- The RecursiveDirectoryIterator class
ParentIterator::rewind RecursiveDirectoryIterator::getChildren SPL PHP Manual The RecursiveDirectoryIterator class Introduction ... Class synopsis RecursiveDirectoryIterator class...
- The RecursiveIteratorIterator class
RecursiveDirectoryIterator::rewind RecursiveIteratorIterator::current SPL PHP Manual The RecursiveIteratorIterator class Introduction ... Class synopsis RecursiveIteratorIterator class...
- The SimpleXMLIterator class
RecursiveIteratorIterator::valid SimpleXMLIterator::current SPL PHP Manual The SimpleXMLIterator class Introduction ... Class synopsis SimpleXMLIterator class SimpleXMLIterator extends...
- The SplDoublyLinkedList class
SimpleXMLIterator::valid SplDoublyLinkedList::bottom SPL PHP Manual The SplDoublyLinkedList class Introduction The SplDoublyLinkedList class provides the main functionalities of a doubly linked list....
- The SplHeap class
SplQueue::setIteratorMode SplHeap::compare SPL PHP Manual The SplHeap class Introduction The SplHeap class provides the main functionalities of an Heap. Class synopsis SplHeap abstract class SplHeap...
- The SplMaxHeap class
SplHeap::valid SplMaxHeap::compare SPL PHP Manual The SplMaxHeap class Introduction The SplMaxHeap class provides the main functionalities of a heap, keeping the maximum on the top. Class synopsis...
- The SplMinHeap class
SplMaxHeap::compare SplMinHeap::compare SPL PHP Manual The SplMinHeap class Introduction The SplMinHeap class provides the main functionalities of a heap, keeping the minimum on the top. Class...
- The SplPriorityQueue class
SPL SplPriorityQueue::compare SPL PHP Manual The SplPriorityQueue class Introduction The SplPriorityQueue class provides the main functionalities of an prioritized queue, implemented using a heap....
- The SplQueue class
SplStack::setIteratorMode SplQueue::__construct SPL PHP Manual The SplQueue class Introduction The SplQueue class provides the main functionalities of a queue implemented using a doubly linked list....
- The SplStack class
SplDoublyLinkedList::valid SplStack::__construct SPL PHP Manual The SplStack class Introduction The SplStack class provides the main functionalities of a stack implemented using a doubly linked list....
- The SQLite3 class
Predefined Constants SQLite3::changes SQLite3 PHP Manual The SQLite3 class Introduction Description of the class. Class synopsis SQLite3 class SQLite3 { /* Methods */ public int changes ( void )...
- The SQLite3_result class
SQLite3 SQLite3_result::columnName SQLite3 PHP Manual The SQLite3_result class Introduction Description of the class. Class synopsis SQLite3_result class SQLite3_result { /* Methods */ public string...
- The SQLite3_stmt class
SQLite3::version SQLite3_stmt::bindParam SQLite3 PHP Manual The SQLite3_stmt class Introduction Description of the class. Class synopsis SQLite3_stmt class SQLite3_stmt { /* Methods */ public bool...
- The SWFAction class
ming_useswfversion SWFAction->__construct() Ming PHP Manual The SWFAction class Introduction SWFAction. Class synopsis SWFAction class SWFAction { /* Methods */ SWFAction __construct ( string...
- The SWFBitmap class
SWFAction->__construct() SWFBitmap->__construct() Ming PHP Manual The SWFBitmap class Introduction SWFBitmap. Class synopsis SWFBitmap class SWFBitmap { /* Methods */ SWFBitmap __construct (...
- The SWFButton class
SWFBitmap->getWidth() SWFButton->addAction() Ming PHP Manual The SWFButton class Introduction SWFButton. Class synopsis SWFButton class SWFButton { /* Methods */ void addAction ( SWFAction...
- The SWFDisplayItem class
SWFButton->setUp() SWFDisplayItem->addAction() Ming PHP Manual The SWFDisplayItem class Introduction SWFDisplayItem. Class synopsis SWFDisplayItem class SWFDisplayItem { /* Methods */ void...
- The SWFFill class
SWFDisplayItem->skewYTo() SWFFill->moveTo() Ming PHP Manual The SWFFill class Introduction The SWFFill object allows you to transform (scale, skew, rotate) bitmap and gradient fills. swffill...
- The SWFFont class
SWFFill->skewYTo() SWFFont->__construct() Ming PHP Manual The SWFFont class Introduction The SWFFont object represent a reference to the font definition, for us with SWFText->setFont() and...
- The SWFFontChar class
SWFFont->getWidth() SWFFontChar->addChars() Ming PHP Manual The SWFFontChar class Introduction SWFFontChar. Class synopsis SWFFontChar class SWFFontChar { /* Methods */ void addChars ( string...
- The SWFGradient class
SWFFontChar->addUTF8Chars() SWFGradient->addEntry() Ming PHP Manual The SWFGradient class Introduction SWFGradient. Class synopsis SWFGradient class SWFGradient { /* Methods */ void addEntry (...
- The SWFMorph class
SWFGradient->__construct() SWFMorph->__construct() Ming PHP Manual The SWFMorph class Introduction The methods here are sort of weird. It would make more sense to just have newSWFMorph(shape1,...
- The SWFMovie class
SWFMorph->getShape2() SWFMovie->add() Ming PHP Manual The SWFMovie class Introduction SWFMovie is a movie object representing an SWF movie. Class synopsis SWFMovie class SWFMovie { /* Methods...
- The SWFPrebuiltClip class
SWFMovie->writeExports() SWFPrebuiltClip->__construct() Ming PHP Manual The SWFPrebuiltClip class Introduction SWFPrebuiltClip. Class synopsis SWFPrebuiltClip class SWFPrebuiltClip { /* Methods...
- The SWFShape class
SWFPrebuiltClip->__construct() SWFShape->addFill() Ming PHP Manual The SWFShape class Introduction SWFShape. Class synopsis SWFShape class SWFShape { /* Methods */ SWFFill addFill ( int $red ,...
- The SWFSound class
SWFShape->setRightFill() SWFSound Ming PHP Manual The SWFSound class Introduction SWFSound. Class synopsis SWFSound class SWFSound { /* Methods */ SWFSound __construct ( string $filename , int...
- The SWFSoundInstance class
SWFSound SWFSoundInstance->loopCount() Ming PHP Manual The SWFSoundInstance class Introduction SWFSoundInstance objects are returned by the SWFSprite->startSound() and SWFMovie->startSound()...
- The SWFSprite class
SWFSoundInstance->noMultiple() SWFSprite->add() Ming PHP Manual The SWFSprite class Introduction An SWFSprite is also known as a "movie clip", this allows one to create objects which are...
- The SWFText class
SWFSprite->stopSound() SWFText->addString() Ming PHP Manual The SWFText class Introduction SWFText. Class synopsis SWFText class SWFText { /* Methods */ void addString ( string $string ) void...
- The SWFTextField class
SWFText->setSpacing() SWFTextField->addChars() Ming PHP Manual The SWFTextField class Introduction SWFTextField. Class synopsis SWFTextField class SWFTextField { /* Methods */ void addChars (...
- The SWFVideoStream class
Ming SWFVideoStream->__construct() Ming PHP Manual The SWFVideoStream class Introduction SWFVideoStream. Class synopsis SWFVideoStream class SWFVideoStream { /* Methods */ SWFVideoStream...
- VARIANT class
DOTNET com_addref COM Functions PHP Manual VARIANT (No version information available, might be only in CVS) VARIANT — VARIANT class $vVar = new VARIANT ($var) Description The VARIANT is COM's...
- The XMLReader class
XMLReader XMLReader::close XMLReader PHP Manual The XMLReader class Introduction The XMLReader extension is an XML Pull parser. The reader acts as a cursor going forward on the document stream and...
- The XSLTProcessor class
XSL XSLTProcessor::__construct XSL PHP Manual The XSLTProcessor class Introduction Description of the class. Class synopsis XSLTProcessor class XSLTProcessor { /* Methods */ string getParameter (...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Classkit Functions Classkit PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation This » PECL extension is not bundled with PHP. Information for installing this PECL extension may be found...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation Classkit PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Examples Classes/Objects PHP Manual Predefined Constants This extension has no constants defined. Resource Types Examples Classes/Objects PHP Manual
- Examples
Predefined Constants Classes/Object Functions Classes/Objects PHP Manual Examples In this example, we first define a base class and an extension of the class. The base class describes a general...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation There is no installation needed to use these functions; they are part of the PHP core....
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation Classes/Objects PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build...
- Sort array maintaining index association
Collator Collator::compare Collator PHP Manual Collator::asort collator_asort (No version information available, might be only in CVS) collator_asort — Sort array maintaining index association...
- Compare two Unicode strings
Collator::asort Collator::__construct Collator PHP Manual Collator::compare collator_compare (No version information available, might be only in CVS) collator_compare — Compare two Unicode strings...
- Create a collator
Collator::compare Collator::create Collator PHP Manual Collator::__construct (No version information available, might be only in CVS) Collator::__construct — Create a collator Description...
- Create a collator
Collator::__construct Collator::getAttribute Collator PHP Manual Collator::create collator_create (No version information available, might be only in CVS) collator_create — Create a collator...
- Get collation attribute value
Collator::create Collator::getErrorCode Collator PHP Manual Collator::getAttribute collator_get_attribute (No version information available, might be only in CVS) collator_get_attribute — Get...
- Get collator's last error code
Collator::getAttribute Collator::getErrorMessage Collator PHP Manual Collator::getErrorCode collator_get_error_code (No version information available, might be only in CVS) collator_get_error_code —...
- Get text for collator's last error code
Collator::getErrorCode Collator::getLocale Collator PHP Manual Collator::getErrorMessage collator_get_error_message (No version information available, might be only in CVS) collator_get_error_message...
- Get the locale name of the collator
Collator::getErrorMessage Collator::getStrength Collator PHP Manual Collator::getLocale collator_get_locale (No version information available, might be only in CVS) collator_get_locale — Get the...
- Get current collation strength
Collator::getLocale Collator::setAttribute Collator PHP Manual Collator::getStrength collator_get_strength (No version information available, might be only in CVS) collator_get_strength — Get current...
- Set collation attribute
Collator::getStrength Collator::setStrength Collator PHP Manual Collator::setAttribute collator_set_attribute (No version information available, might be only in CVS) collator_set_attribute — Set...
- Set collation strength
Collator::setAttribute Collator::sortWithSortKeys Collator PHP Manual Collator::setStrength collator_set_strength (No version information available, might be only in CVS) collator_set_strength — Set...
- Sort array using specified collator
Collator NumberFormatter Collator PHP Manual Collator::sort collator_sort (No version information available, might be only in CVS) collator_sort — Sort array using specified collator Description...
- Sort array using specified collator and sort keys
Collator::setStrength Collator::sort Collator PHP Manual Collator::sortWithSortKeys collator_sort_with_sort_keys (No version information available, might be only in CVS) collator_sort_with_sort_keys...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . Com configuration options Name Default...
- Predefined Constants
Resource Types Errors and error handling COM PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled...
- Errors and error handling
Predefined Constants Examples COM PHP Manual Errors and error handling Exceptions (PHP 5) This extension will throw instances of the class com_exception whenever there is a potentially fatal error...
- Arrays and Array-style COM properties
Examples COM Functions Examples PHP Manual Arrays and Array-style COM properties Many COM objects expose their properties as arrays, or using array-style access. In PHP 4, you may use PHP array...
- Examples
Errors and error handling Arrays and Array-style COM properties COM PHP Manual Examples Table of Contents Arrays and Array-style COM properties For Each Starting with PHP 5, you may use PHP's own...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation There is no installation needed to use these functions; they are part of the PHP core. The Windows version...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension defines a reference to a COM component returned by deprecated com_load() (this function...
- Installing/Configuring
Introduction Installation COM PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types COM functions are only available for the Windows version of PHP....
- How to change configuration settings
Runtime Configuration Language Reference Runtime Configuration PHP Manual How to change configuration settings Running PHP as an Apache module When using PHP as an Apache module, you can also change...
- Runtime Configuration
Installation and Configuration How to change configuration settings Installation and Configuration PHP Manual Runtime Configuration Table of Contents How to change configuration settings The...
- Configure options
Debugging in PHP php.ini directives Appendices PHP Manual Configure options List of core configure options Below is a partial list of configure options used by the PHP configure scripts when...
- Predefined Constants
Resource Types dbx Functions dbx PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or...
- Newt Anchors
Newt Keys Grid Flags Predefined Constants PHP Manual Newt Anchors Newt Anchors constant meaning NEWT_ANCHOR_LEFT NEWT_ANCHOR_RIGHT NEWT_ANCHOR_TOP NEWT_ANCHOR_BOTTOM Newt...
- Newt argument flags
Newt colorsets Newt Flags Sense Predefined Constants PHP Manual Newt argument flags Newt argument flags constant meaning NEWT_ARG_LAST NEWT_ARG_APPEND Newt colorsets Newt Flags Sense...
- Checkbox Tree Flags
File Descriptor Flags Entry Flags Predefined Constants PHP Manual Checkbox Tree Flags Checkbox Tree Flags constant meaning NEWT_CHECKBOXTREE_UNSELECTABLE NEWT_CHECKBOXTREE_HIDE_BOX ...
- Newt colorsets
Predefined Constants Newt argument flags Predefined Constants PHP Manual Newt colorsets Newt colorsets constant meaning NEWT_COLORSET_ROOT NEWT_COLORSET_BORDER NEWT_COLORSET_WINDOW...
- Newt Components Flags
Newt Flags Sense File Descriptor Flags Predefined Constants PHP Manual Newt Components Flags Newt Components Flags constant meaning NEWT_FLAG_RETURNEXIT Exit form, when component is activated...
- Entry Flags
Checkbox Tree Flags Listbox Flags Predefined Constants PHP Manual Entry Flags Entry Flags constant meaning NEWT_ENTRY_SCROLL NEWT_ENTRY_HIDDEN NEWT_ENTRY_RETURNEXIT ...
- File Descriptor Flags
Newt Components Flags Checkbox Tree Flags Predefined Constants PHP Manual File Descriptor Flags File Descriptor Flags constant meaning NEWT_FD_READ NEWT_FD_WRITE NEWT_FD_EXCEPT ...
- Form Flags
Textbox Flags Newt Keys Predefined Constants PHP Manual Form Flags Form Flags constant meaning NEWT_FORM_NOF12 Don't exit form on F12 press Textbox Flags Newt Keys Predefined Constants PHP Manual
- Grid Flags
Predefined Constants Examples Predefined Constants PHP Manual Grid Flags Grid Flags constant meaning NEWT_GRID_FLAG_GROWX NEWT_GRID_FLAG_GROWY NEWT_GRID_EMPTY NEWT_GRID_COMPONENT...
- Newt Keys
Form Flags Newt Anchors Predefined Constants PHP Manual Newt Keys Newt Keys constant meaning NEWT_KEY_TAB NEWT_KEY_ENTER NEWT_KEY_SUSPEND NEWT_KEY_ESCAPE NEWT_KEY_RETURN...
- Listbox Flags
Entry Flags Textbox Flags Predefined Constants PHP Manual Listbox Flags Listbox Flags constant meaning NEWT_LISTBOX_RETURNEXIT Entry Flags Textbox Flags Predefined Constants PHP Manual
- Newt Flags Sense
Newt argument flags Newt Components Flags Predefined Constants PHP Manual Newt Flags Sense Newt Flags Sense constant meaning NEWT_FLAGS_SET NEWT_FLAGS_RESET NEWT_FLAGS_TOGGLE ...
- Textbox Flags
Listbox Flags Form Flags Predefined Constants PHP Manual Textbox Flags Textbox Flags constant meaning NEWT_TEXTBOX_WRAP Wrap text in the textbox NEWT_TEXTBOX_SCROLL Scroll text in the textbox Listbox...
- CURL context option listing
SSL context options Context parameters Context options and parameters PHP Manual CURL context options (No version information available, might be only in CVS) CURL context options — CURL context...
- FTP context option listing
HTTP context options SSL context options Context options and parameters PHP Manual FTP context options (No version information available, might be only in CVS) FTP context options — FTP context...
- Context options and parameters
Language Reference Socket context options Language Reference PHP Manual Context options and parameters PHP offers various context options and parameters which can be used with all filesystem and...
- HTTP context option listing
Socket context options FTP context options Context options and parameters PHP Manual HTTP context options (No version information available, might be only in CVS) HTTP context options — HTTP context...
- Context parameter listing
Context options and parameters Security Context options and parameters PHP Manual Context parameters (No version information available, might be only in CVS) Context parameters — Context parameter...
- Socket context option listing
Context options and parameters HTTP context options Context options and parameters PHP Manual Socket context options (No version information available, might be only in CVS) Socket context options —...
- SSL context option listing
FTP context options CURL context options Context options and parameters PHP Manual SSL context options (No version information available, might be only in CVS) SSL context options — SSL context...
- Alternative syntax for control structures
elseif/else if while Control Structures PHP Manual Alternative syntax for control structures PHP offers an alternative syntax for some of its control structures; namely, if , while , for , foreach ,...
- break
foreach continue Control Structures PHP Manual break break ends execution of the current for , foreach , while , do-while or switch structure. break accepts an optional numeric argument which tells...
- continue
break switch Control Structures PHP Manual continue continue is used within looping structures to skip the rest of the current loop iteration and continue execution at the condition evaluation and...
- declare
switch return Control Structures PHP Manual declare The declare construct is used to set execution directives for a block of code. The syntax of declare is similar to the syntax of other flow control...
- do-while
while for Control Structures PHP Manual do-while do-while loops are very similar to while loops, except the truth expression is checked at the end of each iteration instead of in the beginning. The...
- else
if elseif/else if Control Structures PHP Manual else Often you'd want to execute a statement if a certain condition is met, and a different statement if the condition is not met. This is what else is...
- elseif/else if
else Alternative syntax for control structures Control Structures PHP Manual elseif / else if elseif , as its name suggests, is a combination of if and else . Like else , it extends an if statement...
- for
do-while foreach Control Structures PHP Manual for for loops are the most complex loops in PHP. They behave like their C counterparts. The syntax of a for loop is: for (expr1; expr2; expr3) statement...
- foreach
for break Control Structures PHP Manual foreach PHP 4 introduced a foreach construct, much like Perl and some other languages. This simply gives an easy way to iterate over arrays. foreach works only...
- if
Control Structures else Control Structures PHP Manual if The if construct is one of the most important features of many languages, PHP included. It allows for conditional execution of code fragments....
- switch
continue declare Control Structures PHP Manual switch The switch statement is similar to a series of IF statements on the same expression. In many occasions, you may want to compare the same variable...
- while
Alternative syntax for control structures do-while Control Structures PHP Manual while while loops are the simplest type of loop in PHP. They behave just like their C counterparts. The basic form of...
- Copyright
PHP Manual Preface PHP Manual PHP Manual Copyright Copyright © 1997 - 2008 by the PHP Documentation Group. This material may be distributed only subject to the terms and conditions set forth in the...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . Crack configuration options Name Default...
- Predefined Constants
Resource Types Examples Cracklib PHP Manual Predefined Constants This extension has no constants defined. Resource Types Examples Cracklib PHP Manual
- Examples
Predefined Constants Crack Functions Cracklib PHP Manual Examples This example shows how to open a CrackLib dictionary, test a given password, retrieve any diagnostic messages, and close the...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation This » PECL extension is not bundled with PHP. Information for installing this PECL extension may be found...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types The CrackLib extension defines a dictionary resource identifier returned by crack_opendict() ....
- Installing/Configuring
Introduction Installation Cracklib PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements More information regarding CrackLib along with...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Ctype Functions Ctype PHP Manual Predefined Constants This extension has no constants defined. Resource Types Ctype Functions Ctype PHP Manual
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation Beginning with PHP 4.2.0 these functions are enabled by default. For older versions you have to configure...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation Ctype PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements None besides functions from the standard C library...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Examples cURL PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or...
- Examples
Predefined Constants cURL Functions cURL PHP Manual Examples Once you've compiled PHP with cURL support, you can begin using the cURL functions. The basic idea behind the cURL functions is that you...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation To use PHP's cURL support you must also compile PHP --with-curl[=DIR] where DIR is the location of the...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension defines two resource types: a cURL handle and a cURL multi handle. Installing/Configuring...
- Installing/Configuring
Introduction Installation cURL PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements In order to use PHP's cURL functions you need to...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Cyrus Functions Cyrus PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation To enable Cyrus IMAP support and to use these functions you have to compile PHP with the --with-cyrus...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension defines a Cyrus IMAP connection identifier returned by cyrus_connect() ....
- Installing/Configuring
Introduction Installation Cyrus PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . Date/Time Configuration Options Name Default...
- Predefined Constants
Resource Types List of Supported Timezones Date/Time PHP Manual Predefined Constants The following constants are defined since PHP 5.1.1 and they offer standard date representations, which can be...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation There is no installation needed to use these functions; they are part of the PHP core. Note : Getting the...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation Date/Time PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Examples DBA PHP Manual Predefined Constants This extension has no constants defined. Resource Types Examples DBA PHP Manual
- Examples
Predefined Constants DBA Functions DBA PHP Manual Examples Basic usage Example #1 DBA example <?php $id = dba_open ( "/tmp/test.db" , "n" , "db2" ); if (! $id ) {...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation By using the --enable-dba=shared configuration option you can build a dynamic loadable module to enable PHP...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types The functions dba_open() and dba_popen() return a handle to the specified database file to access which is...
- Installing/Configuring
Introduction Installation DBA PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements The behaviour of various aspects depends on the...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types dBase Functions dBase PHP Manual Predefined Constants This extension has no constants defined. Resource Types dBase Functions dBase PHP Manual
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation In order to enable the bundled dbase library and to use these functions, you must compile PHP with the...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation dBase PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types DB++ Functions DB++ PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation In order to build this extension yourself you need the db++ client libraries and header files to be...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types dbplus_relation Most db++ functions operate on or return dbplus_relation resources. A dbplus_relation is a...
- Installing/Configuring
Introduction Installation DB++ PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements This extension relies on external client libraries so...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . DBX Configuration Options Name Default...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation In order to have these functions available, you must compile PHP with dbx support by using the --enable-dbx...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types There are two resource types used in the dbx module. The first one is the link- object for a database...
- Installing/Configuring
Introduction Installation dbx PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements To be able to use a database with the dbx-module, the...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Direct IO Functions Direct IO PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation To get these functions to work, you have to configure PHP with --enable-dio . Installing/Configuring...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types One resource type is defined by this extension: a file descriptor returned by dio_open() ....
- Installing/Configuring
Introduction Installation Direct IO PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Directory Functions Directories PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation There is no installation needed to use these functions; they are part of the PHP core....
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Directories Installation Directories PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Constructs a new dir iterator from a path
DirectoryIterator DirectoryIterator::current DirectoryIterator PHP Manual DirectoryIterator::__construct (PHP 5) DirectoryIterator::__construct — Constructs a new dir iterator from a path Description...
- Return this (needed for Iterator interface)
DirectoryIterator::__construct DirectoryIterator::getATime DirectoryIterator PHP Manual DirectoryIterator::current (PHP 5) DirectoryIterator::current — Return this (needed for Iterator interface)...
- Get last access time of file
DirectoryIterator::current DirectoryIterator::getCTime DirectoryIterator PHP Manual DirectoryIterator::getATime (PHP 5 >= 5.0.2) DirectoryIterator::getATime — Get last access time of file...
- Get inode modification time of file
DirectoryIterator::getATime DirectoryIterator::getFilename DirectoryIterator PHP Manual DirectoryIterator::getCTime (PHP 5 >= 5.0.2) DirectoryIterator::getCTime — Get inode modification time of...
- Return filename of current dir entry
DirectoryIterator::getCTime DirectoryIterator::getGroup DirectoryIterator PHP Manual DirectoryIterator::getFilename (PHP 5) DirectoryIterator::getFilename — Return filename of current dir entry...
- Get file group
DirectoryIterator::getFilename DirectoryIterator::getInode DirectoryIterator PHP Manual DirectoryIterator::getGroup (PHP 5 >= 5.0.2) DirectoryIterator::getGroup — Get file group Description int...
- Get file inode
DirectoryIterator::getGroup DirectoryIterator::getMTime DirectoryIterator PHP Manual DirectoryIterator::getInode (PHP 5 >= 5.0.2) DirectoryIterator::getInode — Get file inode Description int...
- Get last modification time of file
DirectoryIterator::getInode DirectoryIterator::getOwner DirectoryIterator PHP Manual DirectoryIterator::getMTime (PHP 5 >= 5.0.2) DirectoryIterator::getMTime — Get last modification time of file...
- Get file owner
DirectoryIterator::getMTime DirectoryIterator::getPath DirectoryIterator PHP Manual DirectoryIterator::getOwner (PHP 5 >= 5.0.2) DirectoryIterator::getOwner — Get file owner Description int...
- Return directory path
DirectoryIterator::getOwner DirectoryIterator::getPathname DirectoryIterator PHP Manual DirectoryIterator::getPath (PHP 5 <= 5.1.1) DirectoryIterator::getPath — Return directory path Description...
- Return path and filename of current dir entry
DirectoryIterator::getPath DirectoryIterator::getPerms DirectoryIterator PHP Manual DirectoryIterator::getPathname (PHP 5 <= 5.1.1) DirectoryIterator::getPathname — Return path and filename of...
- Get file permissions
DirectoryIterator::getPathname DirectoryIterator::getSize DirectoryIterator PHP Manual DirectoryIterator::getPerms (PHP 5 >= 5.0.2) DirectoryIterator::getPerms — Get file permissions Description...
- Get file size
DirectoryIterator::getPerms DirectoryIterator::getType DirectoryIterator PHP Manual DirectoryIterator::getSize (PHP 5 >= 5.0.2) DirectoryIterator::getSize — Get file size Description int...
- Get file type
DirectoryIterator::getSize DirectoryIterator::isDir DirectoryIterator PHP Manual DirectoryIterator::getType (PHP 5 >= 5.0.2) DirectoryIterator::getType — Get file type Description string...
- Returns true if file is directory
DirectoryIterator::getType DirectoryIterator::isDot DirectoryIterator PHP Manual DirectoryIterator::isDir (PHP 5 <= 5.1.1) DirectoryIterator::isDir — Returns true if file is directory Description...
- Returns true if current entry is '.' or '..'
DirectoryIterator::isDir DirectoryIterator::isExecutable DirectoryIterator PHP Manual DirectoryIterator::isDot (PHP 5) DirectoryIterator::isDot — Returns true if current entry is '.' or '..'...
- Returns true if file is executable
DirectoryIterator::isDot DirectoryIterator::isFile DirectoryIterator PHP Manual DirectoryIterator::isExecutable (PHP 5 <= 5.1.1) DirectoryIterator::isExecutable — Returns true if file is...
- Returns true if file is a regular file
DirectoryIterator::isExecutable DirectoryIterator::isLink DirectoryIterator PHP Manual DirectoryIterator::isFile (PHP 5 <= 5.1.1) DirectoryIterator::isFile — Returns true if file is a regular file...
- Returns true if file is symbolic link
DirectoryIterator::isFile DirectoryIterator::isReadable DirectoryIterator PHP Manual DirectoryIterator::isLink (PHP 5 <= 5.1.1) DirectoryIterator::isLink — Returns true if file is symbolic link...
- Returns true if file can be read
DirectoryIterator::isLink DirectoryIterator::isWritable DirectoryIterator PHP Manual DirectoryIterator::isReadable (PHP 5 <= 5.1.1) DirectoryIterator::isReadable — Returns true if file can be read...
- Returns true if file can be written
DirectoryIterator::isReadable DirectoryIterator::key DirectoryIterator PHP Manual DirectoryIterator::isWritable (PHP 5 <= 5.1.1) DirectoryIterator::isWritable — Returns true if file can be written...
- Return current dir entry
DirectoryIterator::isWritable DirectoryIterator::next DirectoryIterator PHP Manual DirectoryIterator::key (PHP 5) DirectoryIterator::key — Return current dir entry Description string...
- Move to next entry
DirectoryIterator::key DirectoryIterator::rewind DirectoryIterator PHP Manual DirectoryIterator::next (PHP 5) DirectoryIterator::next — Move to next entry Description void DirectoryIterator::next (...
- Rewind dir back to the start
DirectoryIterator::next DirectoryIterator::valid DirectoryIterator PHP Manual DirectoryIterator::rewind (PHP 5) DirectoryIterator::rewind — Rewind dir back to the start Description void...
- Check whether dir contains more entries
DirectoryIterator FilterIterator DirectoryIterator PHP Manual DirectoryIterator::valid (PHP 5) DirectoryIterator::valid — Check whether dir contains more entries Description string...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types DOMAttr DOM PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation There is no installation needed to use these functions; they are part of the PHP core....
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation DOM PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Creates a new DOMAttr object
DOMAttr DOMAttr::isId DOMAttr PHP Manual DOMAttr::__construct (PHP 5) DOMAttr::__construct — Creates a new DOMAttr object Description DOMAttr::__construct ( string $name [, string $value ] ) Creates...
- Checks if attribute is a defined ID
DOMAttr DOMCharacterData DOMAttr PHP Manual DOMAttr::isId (No version information available, might be only in CVS) DOMAttr::isId — Checks if attribute is a defined ID Description bool DOMAttr::isId (...
- Append the string to the end of the character data of the node
DOMCharacterData DOMCharacterData::deleteData DOMCharacterData PHP Manual DOMCharacterData::appendData (No version information available, might be only in CVS) DOMCharacterData::appendData — Append...
- Remove a range of characters from the node
DOMCharacterData::appendData DOMCharacterData::insertData DOMCharacterData PHP Manual DOMCharacterData::deleteData (No version information available, might be only in CVS)...
- Insert a string at the specified 16-bit unit offset
DOMCharacterData::deleteData DOMCharacterData::replaceData DOMCharacterData PHP Manual DOMCharacterData::insertData (No version information available, might be only in CVS)...
- Replace a substring within the DOMCharacterData node
DOMCharacterData::insertData DOMCharacterData::substringData DOMCharacterData PHP Manual DOMCharacterData::replaceData (No version information available, might be only in CVS)...
- Extracts a range of data from the node
DOMCharacterData DOMComment DOMCharacterData PHP Manual DOMCharacterData::substringData (No version information available, might be only in CVS) DOMCharacterData::substringData — Extracts a range of...
- Creates a new DOMComment object
DOMComment DOMDocument DOMComment PHP Manual DOMComment::__construct (PHP 5) DOMComment::__construct — Creates a new DOMComment object Description DOMComment __construct ([ string $value ] ) Creates...
- Creates a new DOMDocument object
DOMDocument DOMDocument::createAttribute DOMDocument PHP Manual DOMDocument::__construct (PHP 5) DOMDocument::__construct — Creates a new DOMDocument object Description DOMDocument::__construct ([...
- Create new attribute
DOMDocument::__construct DOMDocument::createAttributeNS DOMDocument PHP Manual DOMDocument::createAttribute (No version information available, might be only in CVS) DOMDocument::createAttribute —...
- Create new attribute node with an associated namespace
DOMDocument::createAttribute DOMDocument::createCDATASection DOMDocument PHP Manual DOMDocument::createAttributeNS (No version information available, might be only in CVS)...
- Create new cdata node
DOMDocument::createAttributeNS DOMDocument::createComment DOMDocument PHP Manual DOMDocument::createCDATASection (No version information available, might be only in CVS)...
- Create new comment node
DOMDocument::createCDATASection DOMDocument::createDocumentFragment DOMDocument PHP Manual DOMDocument::createComment (No version information available, might be only in CVS)...
- Create new document fragment
DOMDocument::createComment DOMDocument::createElement DOMDocument PHP Manual DOMDocument::createDocumentFragment (No version information available, might be only in CVS)...
- Create new element node
DOMDocument::createDocumentFragment DOMDocument::createElementNS DOMDocument PHP Manual DOMDocument::createElement (No version information available, might be only in CVS) DOMDocument::createElement...
- Create new element node with an associated namespace
DOMDocument::createElement DOMDocument::createEntityReference DOMDocument PHP Manual DOMDocument::createElementNS (No version information available, might be only in CVS) DOMDocument::createElementNS...
- Create new entity reference node
DOMDocument::createElementNS DOMDocument::createProcessingInstruction DOMDocument PHP Manual DOMDocument::createEntityReference (No version information available, might be only in CVS)...
- Creates new PI node
DOMDocument::createEntityReference DOMDocument::createTextNode DOMDocument PHP Manual DOMDocument::createProcessingInstruction (No version information available, might be only in CVS)...
- Create new text node
DOMDocument::createProcessingInstruction DOMDocument::getElementById DOMDocument PHP Manual DOMDocument::createTextNode (No version information available, might be only in CVS)...
- Searches for an element with a certain id
DOMDocument::createTextNode DOMDocument::getElementsByTagName DOMDocument PHP Manual DOMDocument::getElementById (No version information available, might be only in CVS) DOMDocument::getElementById —...
- Searches for all elements with given tag name
DOMDocument::getElementById DOMDocument::getElementsByTagNameNS DOMDocument PHP Manual DOMDocument::getElementsByTagName (No version information available, might be only in CVS)...
- Searches for all elements with given tag name in specified namespace
DOMDocument::getElementsByTagName DOMDocument::importNode DOMDocument PHP Manual DOMDocument::getElementsByTagNameNS (No version information available, might be only in CVS)...
- Import node into current document
DOMDocument::getElementsByTagNameNS DOMDocument::load DOMDocument PHP Manual DOMDocument::importNode (No version information available, might be only in CVS) DOMDocument::importNode — Import node...
- Load XML from a file
DOMDocument::importNode DOMDocument::loadHTML DOMDocument PHP Manual DOMDocument::load (No version information available, might be only in CVS) DOMDocument::load — Load XML from a file Description...
- Load HTML from a string
DOMDocument::load DOMDocument::loadHTMLFile DOMDocument PHP Manual DOMDocument::loadHTML (No version information available, might be only in CVS) DOMDocument::loadHTML — Load HTML from a string...
- Load HTML from a file
DOMDocument::loadHTML DOMDocument::loadXML DOMDocument PHP Manual DOMDocument::loadHTMLFile (No version information available, might be only in CVS) DOMDocument::loadHTMLFile — Load HTML from a file...
- Load XML from a string
DOMDocument::loadHTMLFile DOMDocument::normalizeDocument DOMDocument PHP Manual DOMDocument::loadXML (No version information available, might be only in CVS) DOMDocument::loadXML — Load XML from a...
- Normalizes the document
DOMDocument::loadXML DOMDocument::registerNodeClass DOMDocument PHP Manual DOMDocument::normalizeDocument (No version information available, might be only in CVS) DOMDocument::normalizeDocument —...
- Register extended class used to create base node type
DOMDocument::normalizeDocument DOMDocument::relaxNGValidate DOMDocument PHP Manual DOMDocument::registerNodeClass (PHP 5 >= 5.2.0) DOMDocument::registerNodeClass — Register extended class used to...
- Performs relaxNG validation on the document
DOMDocument::registerNodeClass DOMDocument::relaxNGValidateSource DOMDocument PHP Manual DOMDocument::relaxNGValidate (No version information available, might be only in CVS)...
- Performs relaxNG validation on the document
DOMDocument::relaxNGValidate DOMDocument::save DOMDocument PHP Manual DOMDocument::relaxNGValidateSource (No version information available, might be only in CVS) DOMDocument::relaxNGValidateSource —...
- Dumps the internal XML tree back into a file
DOMDocument::relaxNGValidateSource DOMDocument::saveHTML DOMDocument PHP Manual DOMDocument::save (No version information available, might be only in CVS) DOMDocument::save — Dumps the internal XML...
- Dumps the internal document into a string using HTML formatting
DOMDocument::save DOMDocument::saveHTMLFile DOMDocument PHP Manual DOMDocument::saveHTML (No version information available, might be only in CVS) DOMDocument::saveHTML — Dumps the internal document...
- Dumps the internal document into a file using HTML formatting
DOMDocument::saveHTML DOMDocument::saveXML DOMDocument PHP Manual DOMDocument::saveHTMLFile (No version information available, might be only in CVS) DOMDocument::saveHTMLFile — Dumps the internal...
- Dumps the internal XML tree back into a string
DOMDocument::saveHTMLFile DOMDocument::schemaValidate DOMDocument PHP Manual DOMDocument::saveXML (No version information available, might be only in CVS) DOMDocument::saveXML — Dumps the internal...
- Validates a document based on a schema
DOMDocument::saveXML DOMDocument::schemaValidateSource DOMDocument PHP Manual DOMDocument::schemaValidate (No version information available, might be only in CVS) DOMDocument::schemaValidate —...
- Validates a document based on a schema
DOMDocument::schemaValidate DOMDocument::validate DOMDocument PHP Manual DOMDocument::schemaValidateSource (No version information available, might be only in CVS) DOMDocument::schemaValidateSource —...
- Validates the document based on its DTD
DOMDocument::schemaValidateSource DOMDocument::xinclude DOMDocument PHP Manual DOMDocument::validate (No version information available, might be only in CVS) DOMDocument::validate — Validates the...
- Substitutes XIncludes in a DOMDocument Object
DOMDocument DOMDocumentFragment DOMDocument PHP Manual DOMDocument::xinclude (No version information available, might be only in CVS) DOMDocument::xinclude — Substitutes XIncludes in a DOMDocument...
- Append raw XML data
DOMDocumentFragment DOMDocumentType DOMDocumentFragment PHP Manual DOMDocumentFragment::appendXML (PHP 5 >= 5.1.0) DOMDocumentFragment::appendXML — Append raw XML data Description bool...
- Properties
DOMDocumentType PHP Manual (PHP 5 >= 5.1.0) DOMDocumentFragment::appendXML — DOMDocumentType PHP Manual
- Creates a new DOMElement object
DOMElement DOMElement::getAttribute DOMElement PHP Manual DOMElement::__construct (PHP 5) DOMElement::__construct — Creates a new DOMElement object Description DOMElement __construct ( string $name...
- Returns value of attribute
DOMElement::__construct DOMElement::getAttributeNode DOMElement PHP Manual DOMElement::getAttribute (No version information available, might be only in CVS) DOMElement::getAttribute — Returns value...
- Returns attribute node
DOMElement::getAttribute DOMElement::getAttributeNodeNS DOMElement PHP Manual DOMElement::getAttributeNode (No version information available, might be only in CVS) DOMElement::getAttributeNode —...
- Returns attribute node
DOMElement::getAttributeNode DOMElement::getAttributeNS DOMElement PHP Manual DOMElement::getAttributeNodeNS (No version information available, might be only in CVS) DOMElement::getAttributeNodeNS —...
- Returns value of attribute
DOMElement::getAttributeNodeNS DOMElement::getElementsByTagName DOMElement PHP Manual DOMElement::getAttributeNS (No version information available, might be only in CVS) DOMElement::getAttributeNS —...
- Gets elements by tagname
DOMElement::getAttributeNS DOMElement::getElementsByTagNameNS DOMElement PHP Manual DOMElement::getElementsByTagName (No version information available, might be only in CVS)...
- Get elements by namespaceURI and localName
DOMElement::getElementsByTagName DOMElement::hasAttribute DOMElement PHP Manual DOMElement::getElementsByTagNameNS (No version information available, might be only in CVS)...
- Checks to see if attribute exists
DOMElement::getElementsByTagNameNS DOMElement::hasAttributeNS DOMElement PHP Manual DOMElement::hasAttribute (No version information available, might be only in CVS) DOMElement::hasAttribute — Checks...
- Checks to see if attribute exists
DOMElement::hasAttribute DOMElement::removeAttribute DOMElement PHP Manual DOMElement::hasAttributeNS (No version information available, might be only in CVS) DOMElement::hasAttributeNS — Checks to...
- Removes attribute
DOMElement::hasAttributeNS DOMElement::removeAttributeNode DOMElement PHP Manual DOMElement::removeAttribute (No version information available, might be only in CVS) DOMElement::removeAttribute —...
- Removes attribute
DOMElement::removeAttribute DOMElement::removeAttributeNS DOMElement PHP Manual DOMElement::removeAttributeNode (No version information available, might be only in CVS)...
- Removes attribute
DOMElement::removeAttributeNode DOMElement::setAttribute DOMElement PHP Manual DOMElement::removeAttributeNS (No version information available, might be only in CVS) DOMElement::removeAttributeNS —...
- Adds new attribute
DOMElement::removeAttributeNS DOMElement::setAttributeNode DOMElement PHP Manual DOMElement::setAttribute (No version information available, might be only in CVS) DOMElement::setAttribute — Adds new...
- Adds new attribute node to element
DOMElement::setAttribute DOMElement::setAttributeNodeNS DOMElement PHP Manual DOMElement::setAttributeNode (No version information available, might be only in CVS) DOMElement::setAttributeNode — Adds...
- Adds new attribute node to element
DOMElement::setAttributeNode DOMElement::setAttributeNS DOMElement PHP Manual DOMElement::setAttributeNodeNS (No version information available, might be only in CVS) DOMElement::setAttributeNodeNS —...
- Adds new attribute
DOMElement::setAttributeNodeNS DOMElement::setIdAttribute DOMElement PHP Manual DOMElement::setAttributeNS (No version information available, might be only in CVS) DOMElement::setAttributeNS — Adds...
- Declares the attribute specified by name to be of type ID
DOMElement::setAttributeNS DOMElement::setIdAttributeNode DOMElement PHP Manual DOMElement::setIdAttribute (No version information available, might be only in CVS) DOMElement::setIdAttribute —...
- Declares the attribute specified by node to be of type ID
DOMElement::setIdAttribute DOMElement::setIdAttributeNS DOMElement PHP Manual DOMElement::setIdAttributeNode (No version information available, might be only in CVS) DOMElement::setIdAttributeNode —...
- Declares the attribute specified by local name and namespace URI to be of type ID
DOMElement DOMEntity DOMElement PHP Manual DOMElement::setIdAttributeNS (No version information available, might be only in CVS) DOMElement::setIdAttributeNS — Declares the attribute specified by...
- Properties
DOMEntity PHP Manual (No version information available, might be only in CVS) DOMElement::setIdAttributeNS — DOMEntity PHP Manual
- Creates a new DOMEntityReference object
DOMEntityReference DOMException DOMEntityReference PHP Manual DOMEntityReference::__construct (PHP 5) DOMEntityReference::__construct — Creates a new DOMEntityReference object Description...
- Properties
DOMException PHP Manual (PHP 5) DOMEntityReference::__construct — DOMException PHP Manual
- Creates a new DOMImplementation object
DOMImplementation DOMImplementation::createDocument DOMImplementation PHP Manual DOMImplementation::__construct (No version information available, might be only in CVS) DOMImplementation::__construct...
- Creates a DOMDocument object of the specified type with its document element
DOMImplementation::__construct DOMImplementation::createDocumentType DOMImplementation PHP Manual DOMImplementation::createDocument (No version information available, might be only in CVS)...
- Creates an empty DOMDocumentType object
DOMImplementation::createDocument DOMImplementation::hasFeature DOMImplementation PHP Manual DOMImplementation::createDocumentType (No version information available, might be only in CVS)...
- Test if the DOM implementation implements a specific feature
DOMImplementation DOMNamedNodeMap DOMImplementation PHP Manual DOMImplementation::hasFeature (No version information available, might be only in CVS) DOMImplementation::hasFeature — Test if the DOM...
- Retrieves a node specified by name
DOMNamedNodeMap DOMNamedNodeMap::getNamedItemNS DOMNamedNodeMap PHP Manual DOMNamedNodeMap::getNamedItem (No version information available, might be only in CVS) DOMNamedNodeMap::getNamedItem —...
- Retrieves a node specified by local name and namespace URI
DOMNamedNodeMap::getNamedItem DOMNamedNodeMap::item DOMNamedNodeMap PHP Manual DOMNamedNodeMap::getNamedItemNS (No version information available, might be only in CVS) DOMNamedNodeMap::getNamedItemNS...
- Retrieves a node specified by index
DOMNamedNodeMap DOMNode DOMNamedNodeMap PHP Manual DOMNamedNodeMap::item (No version information available, might be only in CVS) DOMNamedNodeMap::item — Retrieves a node specified by index...
- Adds new child at the end of the children
DOMNode DOMNode::cloneNode DOMNode PHP Manual DOMNode::appendChild (No version information available, might be only in CVS) DOMNode::appendChild — Adds new child at the end of the children...
- Clones a node
DOMNode::appendChild DOMNode::hasAttributes DOMNode PHP Manual DOMNode::cloneNode (No version information available, might be only in CVS) DOMNode::cloneNode — Clones a node Description DOMNode...
- Checks if node has attributes
DOMNode::cloneNode DOMNode::hasChildNodes DOMNode PHP Manual DOMNode::hasAttributes (No version information available, might be only in CVS) DOMNode::hasAttributes — Checks if node has attributes...
- Checks if node has children
DOMNode::hasAttributes DOMNode::insertBefore DOMNode PHP Manual DOMNode::hasChildNodes (No version information available, might be only in CVS) DOMNode::hasChildNodes — Checks if node has children...
- Adds a new child before a reference node
DOMNode::hasChildNodes DOMNode::isDefaultNamespace DOMNode PHP Manual DOMNode::insertBefore (No version information available, might be only in CVS) DOMNode::insertBefore — Adds a new child before a...
- Checks if the specified namespaceURI is the default namespace or not
DOMNode::insertBefore DOMNode::isSameNode DOMNode PHP Manual DOMNode::isDefaultNamespace (No version information available, might be only in CVS) DOMNode::isDefaultNamespace — Checks if the specified...
- Indicates if two nodes are the same node
DOMNode::isDefaultNamespace DOMNode::isSupported DOMNode PHP Manual DOMNode::isSameNode (No version information available, might be only in CVS) DOMNode::isSameNode — Indicates if two nodes are the...
- Checks if feature is supported for specified version
DOMNode::isSameNode DOMNode::lookupNamespaceURI DOMNode PHP Manual DOMNode::isSupported (No version information available, might be only in CVS) DOMNode::isSupported — Checks if feature is supported...
- Gets the namespace URI of the node based on the prefix
DOMNode::isSupported DOMNode::lookupPrefix DOMNode PHP Manual DOMNode::lookupNamespaceURI (No version information available, might be only in CVS) DOMNode::lookupNamespaceURI — Gets the namespace URI...
- Gets the namespace prefix of the node based on the namespace URI
DOMNode::lookupNamespaceURI DOMNode::normalize DOMNode PHP Manual DOMNode::lookupPrefix (No version information available, might be only in CVS) DOMNode::lookupPrefix — Gets the namespace prefix of...
- Normalizes the node
DOMNode::lookupPrefix DOMNode::removeChild DOMNode PHP Manual DOMNode::normalize (No version information available, might be only in CVS) DOMNode::normalize — Normalizes the node Description void...
- Removes child from list of children
DOMNode::normalize DOMNode::replaceChild DOMNode PHP Manual DOMNode::removeChild (No version information available, might be only in CVS) DOMNode::removeChild — Removes child from list of children...
- Replaces a child
DOMNode DOMNodeList DOMNode PHP Manual DOMNode::replaceChild (No version information available, might be only in CVS) DOMNode::replaceChild — Replaces a child Description DOMNode...
- Retrieves a node specified by index
DOMNodeList DOMNotation DOMNodeList PHP Manual DOMNodelist::item (No version information available, might be only in CVS) DOMNodelist::item — Retrieves a node specified by index Description DOMNode...
- Properties
DOMNotation PHP Manual (No version information available, might be only in CVS) DOMNodelist::item — DOMNotation PHP Manual
- Creates a new DOMProcessingInstruction object
DOMProcessingInstruction DOMText DOMProcessingInstruction PHP Manual DOMProcessingInstruction::__construct (PHP 5) DOMProcessingInstruction::__construct — Creates a new DOMProcessingInstruction...
- Creates a new DOMText object
DOMText DOMText::isWhitespaceInElementContent DOMText PHP Manual DOMText::__construct (PHP 5) DOMText::__construct — Creates a new DOMText object Description DOMText __construct ([ string $value ] )...
- Indicates whether this text node contains whitespace
DOMText::__construct DOMText::splitText DOMText PHP Manual DOMText::isWhitespaceInElementContent (No version information available, might be only in CVS) DOMText::isWhitespaceInElementContent —...
- Breaks this node into two nodes at the specified offset
DOMText DOMXPath DOMText PHP Manual DOMText::splitText (No version information available, might be only in CVS) DOMText::splitText — Breaks this node into two nodes at the specified offset...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types DOM XML Functions DOM XML PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation This » PECL extension is not bundled with PHP. Information for installing this PECL extension may be found...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation DOM XML PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements This extension makes use of the » GNOME XML...
- Creates a new DOMXPath object
DOMXPath DOMXPath::evaluate DOMXPath PHP Manual DOMXPath::__construct (PHP 5) DOMXPath::__construct — Creates a new DOMXPath object Description DOMXPath __construct ( DOMDocument $doc ) Creates a new...
- Evaluates the given XPath expression and returns a typed result if possible.
DOMXPath::__construct DOMXPath::query DOMXPath PHP Manual DOMXPath::evaluate (No version information available, might be only in CVS) DOMXPath::evaluate — Evaluates the given XPath expression and...
- Evaluates the given XPath expression
DOMXPath::evaluate DOMXPath::registerNamespace DOMXPath PHP Manual DOMXPath::query (No version information available, might be only in CVS) DOMXPath::query — Evaluates the given XPath expression...
- Registers the namespace with the DOMXPath object
DOMXPath DOM Functions DOMXPath PHP Manual DOMXPath::registerNamespace (No version information available, might be only in CVS) DOMXPath::registerNamespace — Registers the namespace with the DOMXPath...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types .NET Functions .NET PHP Manual Predefined Constants This extension has no constants defined. Resource Types .NET Functions .NET PHP Manual
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation There is no installation needed to use these functions; they are part of the PHP core....
- Introduction
.NET Installing/Configuring .NET PHP Manual Introduction Warning This extension is EXPERIMENTAL . The behaviour of this extension—including the names of its functions and any other documentation...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation .NET PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Examples Enchant PHP Manual Predefined Constants This extension has no constants defined. Resource Types Examples Enchant PHP Manual
- Examples
Predefined Constants Enchant Functions Enchant PHP Manual Examples Example #1 Enchant Usage Example <?php $tag = 'en_US' ; $r = enchant_broker_init (); $bprovides ...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation Information for installing this PECL extension may be found in the manual chapter titled Installation of...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types There are two types of resources in this extension. The first one is the broker (backends manager) and the...
- Installing/Configuring
Introduction Installation Enchant PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements This version uses the functions of the » Enchant...
- Construct the exception
ErrorException ErrorException::getSeverity ErrorException PHP Manual ErrorException::__construct (No version information available, might be only in CVS) ErrorException::__construct — Construct the...
- Gets the exception severity
ErrorException Context options and parameters ErrorException PHP Manual ErrorException::getSeverity (PHP 5 >= 5.1.0) ErrorException::getSeverity — Gets the exception severity Description final...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . Errors and Logging Configuration Options Name...
- Predefined Constants
Resource Types Examples Error Handling PHP Manual Predefined Constants The constants below are always available as part of the PHP core. Note : You may use these constant names in php.ini but not...
- Examples
Predefined Constants Error Handling Functions Error Handling PHP Manual Examples Below we can see an example of using the error handling capabilities in PHP. We define an error handling function...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation There is no installation needed to use these functions; they are part of the PHP core....
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation Error Handling PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build...
- XML External Entity Example
Examples XML Parser Functions Examples PHP Manual XML External Entity Example This example highlights XML code. It illustrates how to use an external entity reference handler to include and parse...
- XML Tag Mapping Example
Examples XML External Entity Example Examples PHP Manual XML Tag Mapping Example Example #1 Map XML to HTML This example maps tags in an XML document directly to HTML tags. Elements not found in the...
- Clone the exception
Exception ErrorException Exception PHP Manual Exception::__clone (PHP 5 >= 5.1.0) Exception::__clone — Clone the exception Description final private string Exception::__clone ( void ) Tries to...
- Construct the exception
Exception Exception::getMessage Exception PHP Manual Exception::__construct (No version information available, might be only in CVS) Exception::__construct — Construct the exception Description...
- Gets the Exception code
Exception::getMessage Exception::getFile Exception PHP Manual Exception::getCode (PHP 5 >= 5.1.0) Exception::getCode — Gets the Exception code Description final public int Exception::getCode (...
- Gets the file in which the exception occurred
Exception::getCode Exception::getLine Exception PHP Manual Exception::getFile (PHP 5 >= 5.1.0) Exception::getFile — Gets the file in which the exception occurred Description final public string...
- Gets the line in which the exception occurred
Exception::getFile Exception::getTrace Exception PHP Manual Exception::getLine (PHP 5 >= 5.1.0) Exception::getLine — Gets the line in which the exception occurred Description final public string...
- Gets the Exception message
Exception::__construct Exception::getCode Exception PHP Manual Exception::getMessage (PHP 5 >= 5.1.0) Exception::getMessage — Gets the Exception message Description final public string...
- Gets the stack trace
Exception::getLine Exception::getTraceAsString Exception PHP Manual Exception::getTrace (PHP 5 >= 5.1.0) Exception::getTrace — Gets the stack trace Description final public array...
- Gets the stack trace as a string
Exception::getTrace Exception::__toString Exception PHP Manual Exception::getTraceAsString (PHP 5 >= 5.1.0) Exception::getTraceAsString — Gets the stack trace as a string Description final public...
- String representation of the exception
Exception::getTraceAsString Exception::__clone Exception PHP Manual Exception::__toString (PHP 5 >= 5.1.0) Exception::__toString — String representation of the exception Description public string...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Program execution Functions Program execution PHP Manual Predefined Constants This extension has no constants defined. Resource Types Program execution Functions Program execution PHP...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation There is no installation needed to use these functions; they are part of the PHP core....
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension defines a process resource, returned by proc_open() . Installing/Configuring Predefined...
- Installing/Configuring
Introduction Installation Program execution PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . Exif supports automatically conversion for...
- Predefined Constants
Resource Types Exif Functions Exif PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation To enable exif-support configure PHP with --enable-exif Windows users must enable both the php_mbstring.dll...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation Exif PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements Your PHP must be compiled in with --enable-exif . PHP...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . In order to configure expect extension, there...
- Predefined Constants
Resource Types Examples Expect PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or...
- Examples
Predefined Constants Expect Functions Expect PHP Manual Examples Expect Usage Examples Example #1 Expect Usage Example This example connects to the remote host via SSH, and prints the remote uptime....
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation This » PECL extension is not bundled with PHP. Information for installing this PECL extension may be found...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types expect_popen() returns an open PTY stream used by expect_expectl() . Installing/Configuring Predefined...
- Installing/Configuring
Introduction Installation Expect PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements This module uses the functions of the » expect...
- Extension Categorization
Description of core php.ini directives State Appendices PHP Manual Extension Categorization Table of Contents State This appendix categorizes more than 150 extensions documented in the PHP Manual by...
- State
Extension Categorization List of Function Aliases Extension Categorization PHP Manual State This part lists extensions not intended for the production use - they are either too "old" (deprecated) or...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types FAM Functions FAM PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation To use PHP's FAM support you must compile PHP --with-fam[=DIR] where DIR is the location of the directory...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types There are two resource types used in the FAM module. The first one is the connection to the FAM service...
- Installing/Configuring
Introduction Installation FAM PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements This extension uses the functions of the » FAM...
- Build Problems
Installation Using PHP FAQ PHP Manual Build Problems This section gathers most common errors that occur at build time. I got the latest version of PHP using the anonymous CVS service, but there's no...
- PHP and COM
PHP and HTML PHP and other languages FAQ PHP Manual PHP and COM PHP can be used to access COM and DCOM objects on Win32 platforms. I have built a DLL to calculate something. Is there any way to run...
- Database issues
Obtaining PHP Installation FAQ PHP Manual Database issues This section holds common questions about relation between PHP and databases. Yes, PHP can access virtually any database available today. I...
- General Information
FAQ Mailing lists FAQ PHP Manual General Information This section holds the most general questions about PHP: what it is and what it does. What is PHP? What does PHP stand for? What is the relation...
- FAQ: Frequently Asked Questions
The future: PHP 6 and Zend Engine 3 General Information PHP Manual PHP Manual FAQ: Frequently Asked Questions General Information Mailing lists Obtaining PHP Database issues Installation Build...
- PHP and HTML
Using PHP PHP and COM FAQ PHP Manual PHP and HTML PHP and HTML interact a lot: PHP can generate HTML, and HTML can pass information to PHP. Before reading these faqs, it's important you learn how to...
- Installation
Database issues Build Problems FAQ PHP Manual Installation This section holds common questions about the way to install PHP. PHP is available for almost any OS (except maybe for MacOS before OSX),...
- PHP and other languages
PHP and COM Migrating from PHP 4 to PHP 5 FAQ PHP Manual PHP and other languages PHP is the best language for web programing, but what about other languages? PHP vs. ASP? Is there an ASP to PHP...
- Mailing lists
General Information Obtaining PHP FAQ PHP Manual Mailing lists This section holds questions about how to get in touch with the PHP community. The best way is the mailing lists. Are there any PHP...
- Migrating from PHP 4 to PHP 5
PHP and other languages Miscellaneous Questions FAQ PHP Manual Migrating from PHP 4 to PHP 5 This faq section will help you migrate from PHP 4 to PHP 5. Migrating from PHP 4 to PHP 5 Does MySQL work...
- Miscellaneous Questions
FAQ Appendices FAQ PHP Manual Miscellaneous Questions There can be some questions we can't put into other categories. Here you can find them. How can I handle the bz2 compressed manuals on Windows?...
- Obtaining PHP
Mailing lists Database issues FAQ PHP Manual Obtaining PHP This section has details about PHP download locations, and OS issues. Where can I obtain PHP? Are pre-compiled binary versions available?...
- Using PHP
Build Problems PHP and HTML FAQ PHP Manual Using PHP This section gathers many common errors that you may face while writing PHP scripts. I would like to write a generic PHP script that can handle...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . FrontBase configuration options Name Default...
- Predefined Constants
Resource Types FrontBase Functions FrontBase PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation In order to have these functions available, you must compile PHP with fbsql support by using the...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation FrontBase PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements You must install the FrontBase database server...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Examples FDF PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or...
- Examples
Predefined Constants FDF Functions FDF PHP Manual Examples The following examples shows just the evaluation of form data. Example #1 Evaluating a FDF document <?php...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation You must compile PHP with --with-fdftk[=DIR] . Note : If you run into problems configuring PHP with fdftk...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types Most fdf functions require a fdf resource as their first parameter. A fdf resource is a handle to an...
- Installing/Configuring
Introduction Installation FDF PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements You need the FDF toolkit SDK available from »...
- Using PHP from the command line
Features Function Reference Features PHP Manual Using PHP from the command line As of version 4.3.0, PHP supports a new SAPI type (Server Application Programming Interface) named CLI which means...
- Connection handling
Using remote files Persistent Database Connections Features PHP Manual Connection handling Internally in PHP a connection status is maintained. There are 3 possible states: 0 - NORMAL 1 - ABORTED 2 -...
- Cookies
HTTP authentication with PHP Sessions Features PHP Manual Cookies PHP transparently supports HTTP cookies. Cookies are a mechanism for storing data in the remote browser and thus tracking or...
- Common Pitfalls
Error Messages Explained Uploading multiple files Handling file uploads PHP Manual Common Pitfalls The MAX_FILE_SIZE item cannot specify a file size greater than the file size that has been set in...
- Error Messages Explained
Handling file uploads Common Pitfalls Handling file uploads PHP Manual Error Messages Explained Since PHP 4.2.0, PHP returns an appropriate error code along with the file array. The error code can be...
- Handling file uploads
Dealing with XForms Error Messages Explained Features PHP Manual Handling file uploads Table of Contents Error Messages Explained Common Pitfalls Uploading multiple files PUT method support POST...
- Uploading multiple files
Common Pitfalls PUT method support Handling file uploads PHP Manual Uploading multiple files Multiple files can be uploaded using different name for input . It is also possible to upload multiple...
- PUT method support
Handling file uploads Using remote files Handling file uploads PHP Manual PUT method support PHP provides support for the HTTP PUT method used by some clients to store files on a server. PUT requests...
- Features
Keeping Current HTTP authentication with PHP PHP Manual PHP Manual Features HTTP authentication with PHP Cookies Sessions Dealing with XForms Handling file uploads Error Messages Explained Common...
- HTTP authentication with PHP
Features Cookies Features PHP Manual HTTP authentication with PHP The HTTP Authentication hooks in PHP are only available when it is running as an Apache module and is hence not available in the CGI...
- Persistent Database Connections
Connection handling Safe Mode Features PHP Manual Persistent Database Connections Persistent connections are links that do not close when the execution of your script ends. When a persistent...
- Using remote files
PUT method support Connection handling Features PHP Manual Using remote files As long as allow_url_fopen is enabled in php.ini , you can use HTTP and FTP URLs with most of the functions that take a...
- Functions restricted/disabled by safe mode
Safe Mode Using PHP from the command line Safe Mode PHP Manual Functions restricted/disabled by safe mode This is a still probably incomplete and possibly incorrect listing of the functions limited...
- Safe Mode
Persistent Database Connections Functions restricted/disabled by safe mode Features PHP Manual Safe Mode Table of Contents Functions restricted/disabled by safe mode The PHP safe mode is an attempt...
- Sessions
Cookies Dealing with XForms Features PHP Manual Sessions Session support in PHP consists of a way to preserve certain data across subsequent accesses. This enables you to build more customized...
- Dealing with XForms
Sessions Handling file uploads Features PHP Manual Dealing with XForms » XForms defines a variation on traditional webforms which allows them to be used on a wider variety of platforms and browsers...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Fileinfo Functions Fileinfo PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation Information for installing this PECL extension may be found in the manual chapter titled Installation of...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types There is one resource used in Fileinfo extension: a magic database descriptor returned by finfo_open() ....
- Installing/Configuring
Introduction Installation Fileinfo PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements magic_open library is needed to build this...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types filePro Functions filePro PHP Manual Predefined Constants This extension has no constants defined. Resource Types filePro Functions filePro PHP Manual
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation filePro support in PHP is not enabled by default. To enable the bundled read-only filePro support you need...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation filePro PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . Filesystem and Streams Configuration Options...
- Predefined Constants
Resource Types Filesystem Functions Filesystem PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation There is no installation needed to use these functions; they are part of the PHP core....
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation Filesystem PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration The behaviour of these functions is affected by settings in php.ini . Filter Configuration Options Name Default...
- Predefined Constants
Resource Types Filter Functions Filter PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation A short installation note: just type $ pecl install filter in your console. Installing/Configuring Runtime...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation Filter PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Get the current element value
FilterIterator FilterIterator::getInnerIterator FilterIterator PHP Manual FilterIterator::current (PHP 5) FilterIterator::current — Get the current element value Description mixed...
- Get the inner iterator
FilterIterator::current FilterIterator::key FilterIterator PHP Manual FilterIterator::getInnerIterator (PHP 5) FilterIterator::getInnerIterator — Get the inner iterator Description Iterator...
- Get the current key
FilterIterator::getInnerIterator FilterIterator::next FilterIterator PHP Manual FilterIterator::key (PHP 5) FilterIterator::key — Get the current key Description mixed FilterIterator::key ( void )...
- Move the iterator forward
FilterIterator::key FilterIterator::rewind FilterIterator PHP Manual FilterIterator::next (PHP 5) FilterIterator::next — Move the iterator forward Description void FilterIterator::next ( void )...
- Rewind the iterator
FilterIterator::next FilterIterator::valid FilterIterator PHP Manual FilterIterator::rewind (PHP 5) FilterIterator::rewind — Rewind the iterator Description void FilterIterator::rewind ( void )...
- Check whether the current element is valid
FilterIterator LimitIterator FilterIterator PHP Manual FilterIterator::valid (PHP 5) FilterIterator::valid — Check whether the current element is valid Description bool FilterIterator::valid ( void )...
- Compression Filters
Conversion Filters Encryption Filters List of Available Filters PHP Manual Compression Filters While the Compression Wrappers provide a way of creating gzip and bz2 compatible files on the local...
- Conversion Filters
List of Available Filters Compression Filters List of Available Filters PHP Manual Conversion Filters Like the string.* filters, the convert.* filters perform actions similar to their names. The...
- Encryption Filters
List of Available Filters List of Supported Socket Transports List of Available Filters PHP Manual Encryption Filters mcrypt.* and mdecrypt.* provide symmetric encryption and decryption using...
- List of Available Filters
Process Interaction Streams Conversion Filters Appendices PHP Manual List of Available Filters Table of Contents Conversion Filters Compression Filters Encryption Filters The following is a list of a...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types FriBiDi Functions FriBiDi PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation This » PECL extension is not bundled with PHP. Information for installing this PECL extension may be found...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation FriBiDi PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements You must download and install the » FriBiDi...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Examples FTP PHP Manual Predefined Constants The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or...
- Examples
Predefined Constants FTP Functions FTP PHP Manual Examples Example #1 FTP example <?php // set up basic connection $conn_id = ftp_connect ( $ftp_server ); ...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation In order to use FTP functions with your PHP configuration, you should add the --enable-ftp option when...
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension uses one resource type, which is the link identifier of the FTP connection, returned by...
- Installing/Configuring
Introduction Installation FTP PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to build this...
- Runtime Configuration
Installation Resource Types Installing/Configuring PHP Manual Runtime Configuration This extension has no configuration directives defined in php.ini . Installation Resource Types...
- Predefined Constants
Resource Types Function handling Functions Function Handling PHP Manual Predefined Constants This extension has no constants defined. Resource Types Function handling Functions Function Handling PHP...
- Installation
Installing/Configuring Runtime Configuration Installing/Configuring PHP Manual Installation There is no installation needed to use these functions; they are part of the PHP core....
- Resource Types
Installing/Configuring Predefined Constants Installing/Configuring PHP Manual Resource Types This extension has no resource types defined. Installing/Configuring Predefined Constants...
- Installing/Configuring
Introduction Installation Function Handling PHP Manual Installing/Configuring Table of Contents Installation Runtime Configuration Resource Types Requirements No external libraries are needed to...
- Function Reference
Using PHP from the command line Affecting PHP's Behaviour PHP Manual PHP Manual Function Reference Affecting PHP's Behaviour APC — Alternative PHP Cache APD — Advanced PHP debugger bcompiler — PHP...
- Absolute value
Math Functions acos Math Functions PHP Manual abs (PHP 4, PHP 5) abs — Absolute value Description number abs ( mixed $number ) Returns the absolute value of number . Parameters number The numeric...
- Arc cosine
abs acosh Math Functions PHP Manual acos (PHP 4, PHP 5) acos — Arc cosine Description float acos ( float $arg ) Returns the arc cosine of arg in radians. acos() is the complementary function of cos()...
- Inverse hyperbolic cosine
acos asin Math Functions PHP Manual acosh (PHP 4 >= 4.0.7, PHP 5) acosh — Inverse hyperbolic cosine Description float acosh ( float $arg ) Returns the inverse hyperbolic cosine of arg , i.e. the...
- Quote string with slashes in a C style
String Functions addslashes String Functions PHP Manual addcslashes (PHP 4, PHP 5) addcslashes — Quote string with slashes in a C style Description string addcslashes ( string $str , string $charlist...
- Quote string with slashes
addcslashes bin2hex String Functions PHP Manual addslashes (PHP 4, PHP 5) addslashes — Quote string with slashes Description string addslashes ( string $str ) Returns a string with backslashes before...
- Dynamic class and object aggregation of methods and properties
aggregate_properties aggregation_info Object Aggregation Functions PHP Manual aggregate (PHP 4 >= 4.2.0) aggregate — Dynamic class and object aggregation of methods and properties Description void...
- Gets aggregation information for a given object
Object Aggregation Functions aggregate_methods_by_list Object Aggregation Functions PHP Manual aggregate_info (No version information available, might be only in CVS) aggregate_info — Gets...
- Dynamic class and object aggregation of methods
aggregate_methods_by_regexp aggregate_properties_by_list Object Aggregation Functions PHP Manual aggregate_methods (PHP 4 >= 4.2.0) aggregate_methods — Dynamic class and object aggregation of...
- Selective dynamic class methods aggregation to an object
aggregate_info aggregate_methods_by_regexp Object Aggregation Functions PHP Manual aggregate_methods_by_list (PHP 4 >= 4.2.0) aggregate_methods_by_list — Selective dynamic class methods...
- Selective class methods aggregation to an object using a regular expression
aggregate_methods_by_list aggregate_methods Object Aggregation Functions PHP Manual aggregate_methods_by_regexp (PHP 4 >= 4.2.0) aggregate_methods_by_regexp — Selective class methods aggregation...
- Dynamic aggregation of class properties to an object
aggregate_properties_by_regexp aggregate Object Aggregation Functions PHP Manual aggregate_properties (PHP 4 >= 4.2.0) aggregate_properties — Dynamic aggregation of class properties to an object...
- Selective dynamic class properties aggregation to an object
aggregate_methods aggregate_properties_by_regexp Object Aggregation Functions PHP Manual aggregate_properties_by_list (PHP 4 >= 4.2.0) aggregate_properties_by_list — Selective dynamic class...
- Selective class properties aggregation to an object using a regular expression
aggregate_properties_by_list aggregate_properties Object Aggregation Functions PHP Manual aggregate_properties_by_regexp (PHP 4 >= 4.2.0) aggregate_properties_by_regexp — Selective class...
- Alias of aggregate_info
aggregate deaggregate Object Aggregation Functions PHP Manual aggregation_info (PHP 4 >= 4.2.0) aggregation_info — Alias of aggregate_info() Description This function is an alias of:...
- Terminate apache process after this request
Apache Functions apache_get_modules Apache Functions PHP Manual apache_child_terminate (PHP 4 >= 4.0.5, PHP 5) apache_child_terminate — Terminate apache process after this request Description bool...
- Get an Apache subprocess_env variable
apache_get_version apache_lookup_uri Apache Functions PHP Manual apache_getenv (PHP 4 >= 4.3.0, PHP 5) apache_getenv — Get an Apache subprocess_env variable Description string apache_getenv (...
- Get a list of loaded Apache modules
apache_child_terminate apache_get_version Apache Functions PHP Manual apache_get_modules (PHP 4 >= 4.3.2, PHP 5) apache_get_modules — Get a list of loaded Apache modules Description array...
- Fetch Apache version
apache_get_modules apache_getenv Apache Functions PHP Manual apache_get_version (PHP 4 >= 4.3.2, PHP 5) apache_get_version — Fetch Apache version Description string apache_get_version ( void )...
- Perform a partial request for the specified URI and return all info about it
apache_getenv apache_note Apache Functions PHP Manual apache_lookup_uri (PHP 4, PHP 5) apache_lookup_uri — Perform a partial request for the specified URI and return all info about it Description...
- Get and set apache request notes
apache_lookup_uri apache_request_headers Apache Functions PHP Manual apache_note (PHP 4, PHP 5) apache_note — Get and set apache request notes Description string apache_note ( string $note_name [,...
- Fetch all HTTP request headers
apache_note apache_reset_timeout Apache Functions PHP Manual apache_request_headers (PHP 4 >= 4.3.0, PHP 5) apache_request_headers — Fetch all HTTP request headers Description array...
- Reset the Apache write timer
apache_request_headers apache_response_headers Apache Functions PHP Manual apache_reset_timeout (PHP 5 >= 5.1.0) apache_reset_timeout — Reset the Apache write timer Description bool...
- Fetch all HTTP response headers
apache_reset_timeout apache_setenv Apache Functions PHP Manual apache_response_headers (PHP 4 >= 4.3.0, PHP 5) apache_response_headers — Fetch all HTTP response headers Description array...
- Set an Apache subprocess_env variable
apache_response_headers ascii2ebcdic Apache Functions PHP Manual apache_setenv (PHP 4 >= 4.2.0, PHP 5) apache_setenv — Set an Apache subprocess_env variable Description bool apache_setenv ( string...
- Cache a variable in the data store
APC Functions apc_cache_info APC Functions PHP Manual apc_add (PECL apc:3.0.13-3.0.14) apc_add — Cache a variable in the data store Description bool apc_add ( string $key , mixed $var [, int $ttl ] )...
- Retrieves cached information from APC's data store
apc_add apc_clear_cache APC Functions PHP Manual apc_cache_info (PECL apc:2.0-3.0.9) apc_cache_info — Retrieves cached information from APC's data store Description array apc_cache_info ([ string...
- Clears the APC cache
apc_cache_info apc_compile_file APC Functions PHP Manual apc_clear_cache (PECL apc:2.0-3.0.9) apc_clear_cache — Clears the APC cache Description bool apc_clear_cache ([ string $cache_type ] ) Clears...
- Stores a file in the bytecode cache, bypassing all filters.
apc_clear_cache apc_define_constants APC Functions PHP Manual apc_compile_file (PECL apc:3.0.13-3.0.14) apc_compile_file — Stores a file in the bytecode cache, bypassing all filters. Description bool...
- Defines a set of constants for retrieval and mass-definition
apc_compile_file apc_delete APC Functions PHP Manual apc_define_constants (PECL apc:3.0.0-3.0.9) apc_define_constants — Defines a set of constants for retrieval and mass-definition Description bool...
- Removes a stored variable from the cache
apc_define_constants apc_fetch APC Functions PHP Manual apc_delete (PECL apc:3.0.0-3.0.9) apc_delete — Removes a stored variable from the cache Description bool apc_delete ( string $key ) Removes a...
- Fetch a stored variable from the cache
apc_delete apc_load_constants APC Functions PHP Manual apc_fetch (PECL apc:3.0.0-3.0.9) apc_fetch — Fetch a stored variable from the cache Description mixed apc_fetch ( string $key ) Fetchs a stored...
- Loads a set of constants from the cache
apc_fetch apc_sma_info APC Functions PHP Manual apc_load_constants (PECL apc:3.0.0-3.0.9) apc_load_constants — Loads a set of constants from the cache Description bool apc_load_constants ( string...
- Retrieves APC's Shared Memory Allocation information
apc_load_constants apc_store APC Functions PHP Manual apc_sma_info (PECL apc:2.0-3.0.9) apc_sma_info — Retrieves APC's Shared Memory Allocation information Description array apc_sma_info ([ bool...
- Cache a variable in the data store
APC Functions APD APC Functions PHP Manual apc_store (PECL apc:3.0.0-3.0.9) apc_store — Cache a variable in the data store Description bool apc_store ( string $key , mixed $var [, int $ttl ] ) Cache...
- Stops the interpreter and waits on a CR from the socket
APD Functions apd_callstack APD Functions PHP Manual apd_breakpoint (PECL apd:0.2-1.0.1) apd_breakpoint — Stops the interpreter and waits on a CR from the socket Description bool apd_breakpoint ( int...
- Returns the current call stack as an array
apd_breakpoint apd_clunk APD Functions PHP Manual apd_callstack (PECL apd:0.2-0.4) apd_callstack — Returns the current call stack as an array Description array apd_callstack ( void ) Returns the...
- Throw a warning and a callstack
apd_callstack apd_continue APD Functions PHP Manual apd_clunk (No version information available, might be only in CVS) apd_clunk — Throw a warning and a callstack Description void apd_clunk ( string...
- Restarts the interpreter
apd_clunk apd_croak APD Functions PHP Manual apd_continue (PECL apd:0.2-1.0.1) apd_continue — Restarts the interpreter Description bool apd_continue ( int $debug_level ) Usually sent via the socket...
- Throw an error, a callstack and then exit
apd_continue apd_dump_function_table APD Functions PHP Manual apd_croak (PECL apd:0.2-0.4) apd_croak — Throw an error, a callstack and then exit Description void apd_croak ( string $warning [, string...
- Outputs the current function table
apd_croak apd_dump_persistent_resources APD Functions PHP Manual apd_dump_function_table (No version information available, might be only in CVS) apd_dump_function_table — Outputs the current...
- Return all persistent resources as an array
apd_dump_function_table apd_dump_regular_resources APD Functions PHP Manual apd_dump_persistent_resources (PECL apd:0.2-0.4) apd_dump_persistent_resources — Return all persistent resources as an...
- Return all current regular resources as an array
apd_dump_persistent_resources apd_echo APD Functions PHP Manual apd_dump_regular_resources (PECL apd:0.2-0.4) apd_dump_regular_resources — Return all current regular resources as an array Description...
- Echo to the debugging socket
apd_dump_regular_resources apd_get_active_symbols APD Functions PHP Manual apd_echo (PECL apd:0.2-1.0.1) apd_echo — Echo to the debugging socket Description bool apd_echo ( string $output ) Usually...
- Get an array of the current variables names in the local scope
apd_echo apd_set_pprof_trace APD Functions PHP Manual apd_get_active_symbols (PECL apd:0.2) apd_get_active_symbols — Get an array of the current variables names in the local scope Description array...
- Starts the session debugging
apd_get_active_symbols apd_set_session_trace APD Functions PHP Manual apd_set_pprof_trace (PECL apd:0.2-1.0.1) apd_set_pprof_trace — Starts the session debugging Description string...
- Changes or sets the current debugging level
apd_set_session_trace apd_set_socket_session_trace APD Functions PHP Manual apd_set_session (PECL apd:0.2-0.4) apd_set_session — Changes or sets the current debugging level Description void...
- Starts the session debugging
apd_set_pprof_trace apd_set_session APD Functions PHP Manual apd_set_session_trace (PECL apd:0.2-0.4) apd_set_session_trace — Starts the session debugging Description void apd_set_session_trace ( int...
- Starts the remote session debugging
apd_set_session override_function APD Functions PHP Manual apd_set_socket_session_trace (No version information available, might be only in CVS) apd_set_socket_session_trace — Starts the remote...
- Create an array
array_walk arsort Array Functions PHP Manual array (PHP 4, PHP 5) array — Create an array Description array array ([ mixed $... ] ) Creates an array. Read the section on the array type for more...
- Changes all keys in an array
Array Functions array_chunk Array Functions PHP Manual array_change_key_case (PHP 4 >= 4.2.0, PHP 5) array_change_key_case — Changes all keys in an array Description array array_change_key_case (...
- Split an array into chunks
array_change_key_case array_combine Array Functions PHP Manual array_chunk (PHP 4 >= 4.2.0, PHP 5) array_chunk — Split an array into chunks Description array array_chunk ( array $input , int $size...
- Creates an array by using one array for keys and another for its values
array_chunk array_count_values Array Functions PHP Manual array_combine (PHP 5) array_combine — Creates an array by using one array for keys and another for its values Description array array_combine...
- Counts all the values of an array
array_combine array_diff_assoc Array Functions PHP Manual array_count_values (PHP 4, PHP 5) array_count_values — Counts all the values of an array Description array array_count_values ( array $input...
- Computes the difference of arrays
array_diff_ukey array_fill_keys Array Functions PHP Manual array_diff (PHP 4 >= 4.0.1, PHP 5) array_diff — Computes the difference of arrays Description array array_diff ( array $array1 , array...
- Computes the difference of arrays with additional index check
array_count_values array_diff_key Array Functions PHP Manual array_diff_assoc (PHP 4 >= 4.3.0, PHP 5) array_diff_assoc — Computes the difference of arrays with additional index check Description...
- Computes the difference of arrays using keys for comparison
array_diff_assoc array_diff_uassoc Array Functions PHP Manual array_diff_key (PHP 5 >= 5.1.0) array_diff_key — Computes the difference of arrays using keys for comparison Description array...
- Computes the difference of arrays with additional index check which is performed by a user supplied callback function
array_diff_key array_diff_ukey Array Functions PHP Manual array_diff_uassoc (PHP 5) array_diff_uassoc — Computes the difference of arrays with additional index check which is performed by a user...
- Computes the difference of arrays using a callback function on the keys for comparison
array_diff_uassoc array_diff Array Functions PHP Manual array_diff_ukey (PHP 5 >= 5.1.0) array_diff_ukey — Computes the difference of arrays using a callback function on the keys for comparison...
- Fill an array with values
array_fill_keys array_filter Array Functions PHP Manual array_fill (PHP 4 >= 4.2.0, PHP 5) array_fill — Fill an array with values Description array array_fill ( int $start_index , int $num , mixed...
- Fill an array with values, specifying keys
array_diff array_fill Array Functions PHP Manual array_fill_keys (PHP 5 >= 5.2.0) array_fill_keys — Fill an array with values, specifying keys Description array array_fill_keys ( array $keys ,...
- Filters elements of an array using a callback function
array_fill array_flip Array Functions PHP Manual array_filter (PHP 4 >= 4.0.6, PHP 5) array_filter — Filters elements of an array using a callback function Description array array_filter ( array...
- Exchanges all keys with their associated values in an array
array_filter array_intersect_assoc Array Functions PHP Manual array_flip (PHP 4, PHP 5) array_flip — Exchanges all keys with their associated values in an array Description array array_flip ( array...
- Computes the intersection of arrays
array_intersect_ukey array_key_exists Array Functions PHP Manual array_intersect (PHP 4 >= 4.0.1, PHP 5) array_intersect — Computes the intersection of arrays Description array array_intersect (...
- Computes the intersection of arrays with additional index check
array_flip array_intersect_key Array Functions PHP Manual array_intersect_assoc (PHP 4 >= 4.3.0, PHP 5) array_intersect_assoc — Computes the intersection of arrays with additional index check...
- Computes the intersection of arrays using keys for comparison
array_intersect_assoc array_intersect_uassoc Array Functions PHP Manual array_intersect_key (PHP 5 >= 5.1.0) array_intersect_key — Computes the intersection of arrays using keys for comparison...
- Computes the intersection of arrays with additional index check, compares indexes by a callback function
array_intersect_key array_intersect_ukey Array Functions PHP Manual array_intersect_uassoc (PHP 5) array_intersect_uassoc — Computes the intersection of arrays with additional index check, compares...
- Computes the intersection of arrays using a callback function on the keys for comparison
array_intersect_uassoc array_intersect Array Functions PHP Manual array_intersect_ukey (PHP 5 >= 5.1.0) array_intersect_ukey — Computes the intersection of arrays using a callback function on the...
- Checks if the given key or index exists in the array
array_intersect array_keys Array Functions PHP Manual array_key_exists (PHP 4 >= 4.0.7, PHP 5) array_key_exists — Checks if the given key or index exists in the array Description bool...
- Return all the keys of an array
array_key_exists array_map Array Functions PHP Manual array_keys (PHP 4, PHP 5) array_keys — Return all the keys of an array Description array array_keys ( array $input [, mixed $search_value [, bool...
- Applies the callback to the elements of the given arrays
array_keys array_merge_recursive Array Functions PHP Manual array_map (PHP 4 >= 4.0.6, PHP 5) array_map — Applies the callback to the elements of the given arrays Description array array_map (...
- Merge one or more arrays
array_merge_recursive array_multisort Array Functions PHP Manual array_merge (PHP 4, PHP 5) array_merge — Merge one or more arrays Description array array_merge ( array $array1 [, array $array2 [,...
- Merge two or more arrays recursively
array_map array_merge Array Functions PHP Manual array_merge_recursive (PHP 4 >= 4.0.1, PHP 5) array_merge_recursive — Merge two or more arrays recursively Description array array_merge_recursive...
- Sort multiple or multi-dimensional arrays
array_merge array_pad Array Functions PHP Manual array_multisort (PHP 4, PHP 5) array_multisort — Sort multiple or multi-dimensional arrays Description bool array_multisort ( array $arr [, mixed $arg...
- Pad array to the specified length with a value
array_multisort array_pop Array Functions PHP Manual array_pad (PHP 4, PHP 5) array_pad — Pad array to the specified length with a value Description array array_pad ( array $input , int $pad_size ,...
- Pop the element off the end of array
array_pad array_product Array Functions PHP Manual array_pop (PHP 4, PHP 5) array_pop — Pop the element off the end of array Description mixed array_pop ( array &$array ) array_pop() pops and...
- Calculate the product of values in an array
array_pop array_push Array Functions PHP Manual array_product (PHP 5 >= 5.1.0) array_product — Calculate the product of values in an array Description number array_product ( array $array )...
- Push one or more elements onto the end of array
array_product array_rand Array Functions PHP Manual array_push (PHP 4, PHP 5) array_push — Push one or more elements onto the end of array Description int array_push ( array &$array , mixed $var...
- Pick one or more random entries out of an array
array_push array_reduce Array Functions PHP Manual array_rand (PHP 4, PHP 5) array_rand — Pick one or more random entries out of an array Description mixed array_rand ( array $input [, int $num_req ]...
- Iteratively reduce the array to a single value using a callback function
array_rand array_reverse Array Functions PHP Manual array_reduce (PHP 4 >= 4.0.5, PHP 5) array_reduce — Iteratively reduce the array to a single value using a callback function Description mixed...
- Return an array with elements in reverse order
array_reduce array_search Array Functions PHP Manual array_reverse (PHP 4, PHP 5) array_reverse — Return an array with elements in reverse order Description array array_reverse ( array $array [, bool...
- Searches the array for a given value and returns the corresponding key if successful
array_reverse array_shift Array Functions PHP Manual array_search (PHP 4 >= 4.0.5, PHP 5) array_search — Searches the array for a given value and returns the corresponding key if successful...
- Shift an element off the beginning of array
array_search array_slice Array Functions PHP Manual array_shift (PHP 4, PHP 5) array_shift — Shift an element off the beginning of array Description mixed array_shift ( array &$array )...
- Extract a slice of the array
array_shift array_splice Array Functions PHP Manual array_slice (PHP 4, PHP 5) array_slice — Extract a slice of the array Description array array_slice ( array $array , int $offset [, int $length [,...
- Remove a portion of the array and replace it with something else
array_slice array_sum Array Functions PHP Manual array_splice (PHP 4, PHP 5) array_splice — Remove a portion of the array and replace it with something else Description array array_splice ( array...
- Calculate the sum of values in an array
array_splice array_udiff_assoc Array Functions PHP Manual array_sum (PHP 4 >= 4.0.4, PHP 5) array_sum — Calculate the sum of values in an array Description number array_sum ( array $array )...
- Computes the difference of arrays by using a callback function for data comparison
array_udiff_uassoc array_uintersect_assoc Array Functions PHP Manual array_udiff (PHP 5) array_udiff — Computes the difference of arrays by using a callback function for data comparison Description...
- Computes the difference of arrays with additional index check, compares data by a callback function
array_sum array_udiff_uassoc Array Functions PHP Manual array_udiff_assoc (PHP 5) array_udiff_assoc — Computes the difference of arrays with additional index check, compares data by a callback...
- Computes the difference of arrays with additional index check, compares data and indexes by a callback function
array_udiff_assoc array_udiff Array Functions PHP Manual array_udiff_uassoc (PHP 5) array_udiff_uassoc — Computes the difference of arrays with additional index check, compares data and indexes by a...
- Computes the intersection of arrays, compares data by a callback function
array_uintersect_uassoc array_unique Array Functions PHP Manual array_uintersect (PHP 5) array_uintersect — Computes the intersection of arrays, compares data by a callback function Description array...
- Computes the intersection of arrays with additional index check, compares data by a callback function
array_udiff array_uintersect_uassoc Array Functions PHP Manual array_uintersect_assoc (PHP 5) array_uintersect_assoc — Computes the intersection of arrays with additional index check, compares data...
- Computes the intersection of arrays with additional index check, compares data and indexes by a callback functions
array_uintersect_assoc array_uintersect Array Functions PHP Manual array_uintersect_uassoc (PHP 5) array_uintersect_uassoc — Computes the intersection of arrays with additional index check, compares...
- Removes duplicate values from an array
array_uintersect array_unshift Array Functions PHP Manual array_unique (PHP 4 >= 4.0.1, PHP 5) array_unique — Removes duplicate values from an array Description array array_unique ( array $array )...
- Prepend one or more elements to the beginning of an array
array_unique array_values Array Functions PHP Manual array_unshift (PHP 4, PHP 5) array_unshift — Prepend one or more elements to the beginning of an array Description int array_unshift ( array...
- Return all the values of an array
array_unshift array_walk_recursive Array Functions PHP Manual array_values (PHP 4, PHP 5) array_values — Return all the values of an array Description array array_values ( array $input )...
- Apply a user function to every member of an array
array_walk_recursive array Array Functions PHP Manual array_walk (PHP 4, PHP 5) array_walk — Apply a user function to every member of an array Description bool array_walk ( array &$array ,...
- Apply a user function recursively to every member of an array
array_values array_walk Array Functions PHP Manual array_walk_recursive (PHP 5) array_walk_recursive — Apply a user function recursively to every member of an array Description bool...
- Sort an array in reverse order and maintain index association
array asort Array Functions PHP Manual arsort (PHP 4, PHP 5) arsort — Sort an array in reverse order and maintain index association Description bool arsort ( array &$array [, int $sort_flags ] )...
- Translate string from ASCII to EBCDIC
apache_setenv ebcdic2ascii Apache Functions PHP Manual ascii2ebcdic (No version information available, might be only in CVS) ascii2ebcdic — Translate string from ASCII to EBCDIC Description int...
- Arc sine
acosh asinh Math Functions PHP Manual asin (PHP 4, PHP 5) asin — Arc sine Description float asin ( float $arg ) Returns the arc sine of arg in radians. asin() is the complementary function of sin() ,...
- Inverse hyperbolic sine
asin atan2 Math Functions PHP Manual asinh (PHP 4 >= 4.0.7, PHP 5) asinh — Inverse hyperbolic sine Description float asinh ( float $arg ) Returns the inverse hyperbolic sine of arg , i.e. the...
- Sort an array and maintain index association
arsort compact Array Functions PHP Manual asort (PHP 4, PHP 5) asort — Sort an array and maintain index association Description bool asort ( array &$array [, int $sort_flags ] ) This function...
- Checks if assertion is FALSE
assert_options dl PHP Options/Info Functions PHP Manual assert (PHP 4, PHP 5) assert — Checks if assertion is FALSE Description bool assert ( mixed $assertion ) assert() will check the given...
- Set/get the various assert flags
PHP Options/Info Functions assert PHP Options/Info Functions PHP Manual assert_options (PHP 4, PHP 5) assert_options — Set/get the various assert flags Description mixed assert_options ( int $what [,...
- Arc tangent
atan2 atanh Math Functions PHP Manual atan (PHP 4, PHP 5) atan — Arc tangent Description float atan ( float $arg ) Returns the arc tangent of arg in radians. atan() is the complementary function of...
- Arc tangent of two variables
asinh atan Math Functions PHP Manual atan2 (PHP 4, PHP 5) atan2 — Arc tangent of two variables Description float atan2 ( float $y , float $x ) This function calculates the arc tangent of the two...
- Inverse hyperbolic tangent
atan base_convert Math Functions PHP Manual atanh (PHP 4 >= 4.0.7, PHP 5) atanh — Inverse hyperbolic tangent Description float atanh ( float $arg ) Returns the inverse hyperbolic tangent of arg ,...
- Decodes data encoded with MIME base64
URL Functions base64_encode URL Functions PHP Manual base64_decode (PHP 4, PHP 5) base64_decode — Decodes data encoded with MIME base64 Description string base64_decode ( string $data [, bool $strict...
- Encodes data with MIME base64
base64_decode get_headers URL Functions PHP Manual base64_encode (PHP 4, PHP 5) base64_encode — Encodes data with MIME base64 Description string base64_encode ( string $data ) Encodes the given data...
- Convert a number between arbitrary bases
atanh bindec Math Functions PHP Manual base_convert (PHP 4, PHP 5) base_convert — Convert a number between arbitrary bases Description string base_convert ( string $number , int $frombase , int...
- Returns filename component of path
Filesystem Functions chgrp Filesystem Functions PHP Manual basename (PHP 4, PHP 5) basename — Returns filename component of path Description string basename ( string $path [, string $suffix ] ) Given...
- Adds a bbcode element
BBCode Functions bbcode_add_smiley BBCode Functions PHP Manual bbcode_add_element (PECL bbcode:0.9.0-0.9.1) bbcode_add_element — Adds a bbcode element Description bool bbcode_add_element ( resource...
- Adds a smiley to the parser
bbcode_add_element bbcode_create BBCode Functions PHP Manual bbcode_add_smiley (No version information available, might be only in CVS) bbcode_add_smiley — Adds a smiley to the parser Description...
- Create a BBCode Resource
bbcode_add_smiley bbcode_destroy BBCode Functions PHP Manual bbcode_create (PECL bbcode:0.9.0-0.9.1) bbcode_create — Create a BBCode Resource Description resource bbcode_create ([ array...
- Close BBCode_container resource
bbcode_create bbcode_parse BBCode Functions PHP Manual bbcode_destroy (PECL bbcode:0.9.0-0.9.1) bbcode_destroy — Close BBCode_container resource Description bool bbcode_destroy ( resource...
- Parse a string following a given rule set
bbcode_destroy bbcode_set_arg_parser BBCode Functions PHP Manual bbcode_parse (PECL bbcode:0.9.0-0.9.1) bbcode_parse — Parse a string following a given rule set Description string bbcode_parse (...
- Attach another parser in order to use another rule set for argument parsing
bbcode_parse bbcode_set_flags BBCode Functions PHP Manual bbcode_set_arg_parser (No version information available, might be only in CVS) bbcode_set_arg_parser — Attach another parser in order to use...
- Set or alter parser options
BBCode Functions PCRE BBCode Functions PHP Manual bbcode_set_flags (No version information available, might be only in CVS) bbcode_set_flags — Set or alter parser options Description bool...
- Add two arbitrary precision numbers
BC Math Functions bccomp BC Math Functions PHP Manual bcadd (PHP 4, PHP 5) bcadd — Add two arbitrary precision numbers Description string bcadd ( string $left_operand , string $right_operand [, int...
- Compare two arbitrary precision numbers
bcadd bcdiv BC Math Functions PHP Manual bccomp (PHP 4, PHP 5) bccomp — Compare two arbitrary precision numbers Description int bccomp ( string $left_operand , string $right_operand [, int $scale ] )...
- Divide two arbitrary precision numbers
bccomp bcmod BC Math Functions PHP Manual bcdiv (PHP 4, PHP 5) bcdiv — Divide two arbitrary precision numbers Description string bcdiv ( string $left_operand , string $right_operand [, int $scale ] )...
- Get modulus of an arbitrary precision number
bcdiv bcmul BC Math Functions PHP Manual bcmod (PHP 4, PHP 5) bcmod — Get modulus of an arbitrary precision number Description string bcmod ( string $left_operand , string $modulus ) Get the modulus...
- Multiply two arbitrary precision number
bcmod bcpow BC Math Functions PHP Manual bcmul (PHP 4, PHP 5) bcmul — Multiply two arbitrary precision number Description string bcmul ( string $left_operand , string $right_operand [, int $scale ] )...
- Reads and creates classes from a bz compressed file
bcompiler_load_exe bcompiler_parse_class bcompiler Functions PHP Manual bcompiler_load (PECL bcompiler:0.4-0.8) bcompiler_load — Reads and creates classes from a bz compressed file Description bool...
- Reads and creates classes from a bcompiler exe file
bcompiler Functions bcompiler_load bcompiler Functions PHP Manual bcompiler_load_exe (PECL bcompiler:0.4-0.8) bcompiler_load_exe — Reads and creates classes from a bcompiler exe file Description bool...
- Reads the bytecodes of a class and calls back to a user function
bcompiler_load bcompiler_read bcompiler Functions PHP Manual bcompiler_parse_class (PECL bcompiler:0.4-0.8) bcompiler_parse_class — Reads the bytecodes of a class and calls back to a user function...
- Reads and creates classes from a filehandle
bcompiler_parse_class bcompiler_write_class bcompiler Functions PHP Manual bcompiler_read (PECL bcompiler:0.4-0.8) bcompiler_read — Reads and creates classes from a filehandle Description bool...
- Writes an defined class as bytecodes
bcompiler_read bcompiler_write_constant bcompiler Functions PHP Manual bcompiler_write_class (PECL bcompiler:0.4-0.8) bcompiler_write_class — Writes an defined class as bytecodes Description bool...
- Writes a defined constant as bytecodes
bcompiler_write_class bcompiler_write_exe_footer bcompiler Functions PHP Manual bcompiler_write_constant (PECL bcompiler:0.5-0.8) bcompiler_write_constant — Writes a defined constant as bytecodes...
- Writes the start pos, and sig to the end of a exe type file
bcompiler_write_constant bcompiler_write_file bcompiler Functions PHP Manual bcompiler_write_exe_footer (PECL bcompiler:0.4-0.8) bcompiler_write_exe_footer — Writes the start pos, and sig to the end...
- Writes a php source file as bytecodes
bcompiler_write_exe_footer bcompiler_write_footer bcompiler Functions PHP Manual bcompiler_write_file (PECL bcompiler:0.6-0.8) bcompiler_write_file — Writes a php source file as bytecodes Description...
- Writes the single character \x00 to indicate End of compiled data
bcompiler_write_file bcompiler_write_function bcompiler Functions PHP Manual bcompiler_write_footer (PECL bcompiler:0.4-0.8) bcompiler_write_footer — Writes the single character \x00 to indicate End...
- Writes an defined function as bytecodes
bcompiler_write_footer bcompiler_write_functions_from_file bcompiler Functions PHP Manual bcompiler_write_function (PECL bcompiler:0.5-0.8) bcompiler_write_function — Writes an defined function as...
- Writes all functions defined in a file as bytecodes
bcompiler_write_function bcompiler_write_header bcompiler Functions PHP Manual bcompiler_write_functions_from_file (PECL bcompiler:0.5-0.8) bcompiler_write_functions_from_file — Writes all functions...
- Writes the bcompiler header
bcompiler_write_functions_from_file bcompiler_write_included_filename bcompiler Functions PHP Manual bcompiler_write_header (PECL bcompiler:0.3-0.8) bcompiler_write_header — Writes the bcompiler...
- Writes an included file as bytecodes
bcompiler Functions Error Handling bcompiler Functions PHP Manual bcompiler_write_included_filename (PECL bcompiler:0.5-0.8) bcompiler_write_included_filename — Writes an included file as bytecodes...
- Raise an arbitrary precision number to another
bcmul bcpowmod BC Math Functions PHP Manual bcpow (PHP 4, PHP 5) bcpow — Raise an arbitrary precision number to another Description string bcpow ( string $left_operand , string $right_operand [, int...
- Raise an arbitrary precision number to another, reduced by a specified modulus
bcpow bcscale BC Math Functions PHP Manual bcpowmod (PHP 5) bcpowmod — Raise an arbitrary precision number to another, reduced by a specified modulus Description string bcpowmod ( string...
- Set default scale parameter for all bc math functions
bcpowmod bcsqrt BC Math Functions PHP Manual bcscale (PHP 4, PHP 5) bcscale — Set default scale parameter for all bc math functions Description bool bcscale ( int $scale ) Sets the default scale...
- Get the square root of an arbitrary precision number
bcscale bcsub BC Math Functions PHP Manual bcsqrt (PHP 4, PHP 5) bcsqrt — Get the square root of an arbitrary precision number Description string bcsqrt ( string $operand [, int $scale ] ) Return the...
- Subtract one arbitrary precision number from another
BC Math Functions GMP BC Math Functions PHP Manual bcsub (PHP 4, PHP 5) bcsub — Subtract one arbitrary precision number from another Description string bcsub ( string $left_operand , string...
- Convert binary data into hexadecimal representation
addslashes chop String Functions PHP Manual bin2hex (PHP 4, PHP 5) bin2hex — Convert binary data into hexadecimal representation Description string bin2hex ( string $str ) Returns an ASCII string...
- Binary to decimal
base_convert ceil Math Functions PHP Manual bindec (PHP 4, PHP 5) bindec — Binary to decimal Description number bindec ( string $binary_string ) Returns the decimal equivalent of the binary number...
- Sets the path for a domain
bind_textdomain_codeset dcgettext Gettext Functions PHP Manual bindtextdomain (PHP 4, PHP 5) bindtextdomain — Sets the path for a domain Description string bindtextdomain ( string $domain , string...
- Specify the character encoding in which the messages from the DOMAIN message catalog will be returned
Gettext Functions bindtextdomain Gettext Functions PHP Manual bind_textdomain_codeset (PHP 4 >= 4.2.0, PHP 5) bind_textdomain_codeset — Specify the character encoding in which the messages from...
- Close a bzip2 file
Bzip2 Functions bzcompress Bzip2 Functions PHP Manual bzclose (PHP 4 >= 4.3.3, PHP 5, PECL bz2:1.0) bzclose — Close a bzip2 file Description int bzclose ( resource $bz ) Closes the given bzip2...
- Compress a string into bzip2 encoded data
bzclose bzdecompress Bzip2 Functions PHP Manual bzcompress (PHP 4 >= 4.3.3, PHP 5, PECL bz2:1.0) bzcompress — Compress a string into bzip2 encoded data Description mixed bzcompress ( string...
- Decompresses bzip2 encoded data
bzcompress bzerrno Bzip2 Functions PHP Manual bzdecompress (PHP 4 >= 4.3.3, PHP 5, PECL bz2:1.0) bzdecompress — Decompresses bzip2 encoded data Description mixed bzdecompress ( string $source [,...
- Returns a bzip2 error number
bzdecompress bzerror Bzip2 Functions PHP Manual bzerrno (PHP 4 >= 4.3.3, PHP 5, PECL bz2:1.0) bzerrno — Returns a bzip2 error number Description int bzerrno ( resource $bz ) Returns the error...
- Returns the bzip2 error number and error string in an array
bzerrno bzerrstr Bzip2 Functions PHP Manual bzerror (PHP 4 >= 4.3.3, PHP 5, PECL bz2:1.0) bzerror — Returns the bzip2 error number and error string in an array Description array bzerror ( resource...
- Returns a bzip2 error string
bzerror bzflush Bzip2 Functions PHP Manual bzerrstr (PHP 4 >= 4.3.3, PHP 5, PECL bz2:1.0) bzerrstr — Returns a bzip2 error string Description string bzerrstr ( resource $bz ) Gets the error string...
- Force a write of all buffered data
bzerrstr bzopen Bzip2 Functions PHP Manual bzflush (PHP 4 >= 4.3.3, PHP 5, PECL bz2:1.0) bzflush — Force a write of all buffered data Description int bzflush ( resource $bz ) Forces a write of all...
- Opens a bzip2 compressed file
bzflush bzread Bzip2 Functions PHP Manual bzopen (PHP 4 >= 4.3.3, PHP 5, PECL bz2:1.0) bzopen — Opens a bzip2 compressed file Description resource bzopen ( string $filename , string $mode )...
- Binary safe bzip2 file read
bzopen bzwrite Bzip2 Functions PHP Manual bzread (PHP 4 >= 4.3.3, PHP 5, PECL bz2:1.0) bzread — Binary safe bzip2 file read Description string bzread ( resource $bz [, int $length ] ) bzread()...
- Binary safe bzip2 file write
Bzip2 Functions LZF Bzip2 Functions PHP Manual bzwrite (PHP 4 >= 4.3.3, PHP 5, PECL bz2:1.0) bzwrite — Binary safe bzip2 file write Description int bzwrite ( resource $bz , string $data [, int...
- Obtain a hmac key (needs 2 arguments)
calcul_hmac nthmac SPPLUS Functions PHP Manual calculhmac (PECL spplus:1.0) calculhmac — Obtain a hmac key (needs 2 arguments) Description string calculhmac ( string $clent , string $data ) Warning...
- Obtain a hmac key (needs 8 arguments)
SPPLUS Functions calculhmac SPPLUS Functions PHP Manual calcul_hmac (PECL spplus:1.0) calcul_hmac — Obtain a hmac key (needs 8 arguments) Description string calcul_hmac ( string $clent , string...
- Return the number of days in a month for a given year and calendar
Calendar Functions cal_from_jd Calendar Functions PHP Manual cal_days_in_month (PHP 4 >= 4.0.7, PHP 5) cal_days_in_month — Return the number of days in a month for a given year and calendar...
- Converts from Julian Day Count to a supported calendar
cal_days_in_month cal_info Calendar Functions PHP Manual cal_from_jd (PHP 4 >= 4.0.7, PHP 5) cal_from_jd — Converts from Julian Day Count to a supported calendar Description array cal_from_jd (...
- Returns information about a particular calendar
cal_from_jd cal_to_jd Calendar Functions PHP Manual cal_info (PHP 4 >= 4.0.7, PHP 5) cal_info — Returns information about a particular calendar Description array cal_info ([ int $calendar ] )...
- Call a user function given by the first parameter
call_user_func_array create_function Function handling Functions PHP Manual call_user_func (PHP 4, PHP 5) call_user_func — Call a user function given by the first parameter Description mixed...
- Call a user function given with an array of parameters
Function handling Functions call_user_func Function handling Functions PHP Manual call_user_func_array (PHP 4 >= 4.0.4, PHP 5) call_user_func_array — Call a user function given with an array of...
- Call a user method on an specific object [deprecated]
call_user_method_array class_exists Classes/Object Functions PHP Manual call_user_method (PHP 4, PHP 5) call_user_method — Call a user method on an specific object [deprecated] Description mixed...
- Call a user method given with an array of parameters [deprecated]
Classes/Object Functions call_user_method Classes/Object Functions PHP Manual call_user_method_array (PHP 4 >= 4.0.5, PHP 5) call_user_method_array — Call a user method given with an array of...
- Converts from a supported calendar to Julian Day Count
cal_info easter_date Calendar Functions PHP Manual cal_to_jd (PHP 4 >= 4.0.7, PHP 5) cal_to_jd — Converts from a supported calendar to Julian Day Count Description int cal_to_jd ( int $calendar ,...
- Round fractions up
bindec cos Math Functions PHP Manual ceil (PHP 4, PHP 5) ceil — Round fractions up Description float ceil ( float $value ) Returns the next highest integer value by rounding up value if necessary....
- Change directory
Directory Functions chroot Directory Functions PHP Manual chdir (PHP 4, PHP 5) chdir — Change directory Description bool chdir ( string $directory ) Changes PHP's current directory to directory ....
- Validate a Gregorian date
Date/Time Functions date_create Date/Time Functions PHP Manual checkdate (PHP 4, PHP 5) checkdate — Validate a Gregorian date Description bool checkdate ( int $month , int $day , int $year ) Checks...
- Check DNS records corresponding to a given Internet host name or IP address
Network Functions closelog Network Functions PHP Manual checkdnsrr (PHP 4, PHP 5) checkdnsrr — Check DNS records corresponding to a given Internet host name or IP address Description bool checkdnsrr...
- Changes file group
basename chmod Filesystem Functions PHP Manual chgrp (PHP 4, PHP 5) chgrp — Changes file group Description bool chgrp ( string $filename , mixed $group ) Attempts to change the group of the file...
- Changes file mode
chgrp chown Filesystem Functions PHP Manual chmod (PHP 4, PHP 5) chmod — Changes file mode Description bool chmod ( string $filename , int $mode ) Attempts to change the mode of the specified file to...
- Alias of rtrim
bin2hex chr String Functions PHP Manual chop (PHP 4, PHP 5) chop — Alias of rtrim() Description This function is an alias of: rtrim() . Notes Note : chop() is different than the Perl chop() function,...
- Changes file owner
chmod clearstatcache Filesystem Functions PHP Manual chown (PHP 4, PHP 5) chown — Changes file owner Description bool chown ( string $filename , mixed $user ) Attempts to change the owner of the file...
- Return a specific character
chop chunk_split String Functions PHP Manual chr (PHP 4, PHP 5) chr — Return a specific character Description string chr ( int $ascii ) Returns a one-character string containing the character...
- Change the root directory
chdir dir Directory Functions PHP Manual chroot (PHP 4 >= 4.0.5, PHP 5) chroot — Change the root directory Description bool chroot ( string $directory ) Changes the root directory of the current...
- Split a string into smaller chunks
chr convert_cyr_string String Functions PHP Manual chunk_split (PHP 4, PHP 5) chunk_split — Split a string into smaller chunks Description string chunk_split ( string $body [, int $chunklen [, string...
- Checks if the class has been defined
call_user_method get_class_methods Classes/Object Functions PHP Manual class_exists (PHP 4, PHP 5) class_exists — Checks if the class has been defined Description bool class_exists ( string...
- Return the interfaces which are implemented by the given class
SPL Functions class_parents SPL Functions PHP Manual class_implements (PHP 5) class_implements — Return the interfaces which are implemented by the given class Description array class_implements (...
- Import new class method definitions from a file
Classkit Functions classkit_method_add Classkit Functions PHP Manual classkit_import (PECL classkit:0.3-0.4 runkit:0.7-0.9) classkit_import — Import new class method definitions from a file...
- Dynamically adds a new method to a given class
classkit_import classkit_method_copy Classkit Functions PHP Manual classkit_method_add (PECL classkit:0.1-0.4 runkit:0.7-0.9) classkit_method_add — Dynamically adds a new method to a given class...
- Copies a method from class to another
classkit_method_add classkit_method_redefine Classkit Functions PHP Manual classkit_method_copy (PECL classkit:0.2-0.4 runkit:0.7-0.9) classkit_method_copy — Copies a method from class to another...
- Dynamically changes the code of the given method
classkit_method_copy classkit_method_remove Classkit Functions PHP Manual classkit_method_redefine (PECL classkit:0.1-0.4 runkit:0.7-0.9) classkit_method_redefine — Dynamically changes the code of...
- Dynamically removes the given method
classkit_method_redefine classkit_method_rename Classkit Functions PHP Manual classkit_method_remove (PECL classkit:0.1-0.4 runkit:0.7-0.9) classkit_method_remove — Dynamically removes the given...
- Dynamically changes the name of the given method
Classkit Functions Ctype Classkit Functions PHP Manual classkit_method_rename (PECL classkit:0.1-0.4 runkit:0.7-0.9) classkit_method_rename — Dynamically changes the name of the given method...
- Return the parent classes of the given class
class_implements iterator_count SPL Functions PHP Manual class_parents (PHP 5) class_parents — Return the parent classes of the given class Description array class_parents ( mixed $class [, bool...
- Clears file status cache
chown copy Filesystem Functions PHP Manual clearstatcache (PHP 4, PHP 5) clearstatcache — Clears file status cache Description void clearstatcache ( void ) When you use stat() , lstat() , or any of...
- Close directory handle
dir getcwd Directory Functions PHP Manual closedir (PHP 4, PHP 5) closedir — Close directory handle Description void closedir ( resource $dir_handle ) Closes the directory stream indicated by...
- Close connection to system logger
checkdnsrr define_syslog_variables Network Functions PHP Manual closelog (PHP 4, PHP 5) closelog — Close connection to system logger Description bool closelog ( void ) closelog() closes the...
- Increases the components reference counter [deprecated]
VARIANT com_create_guid COM Functions PHP Manual com_addref (PHP 4 >= 4.0.7) com_addref — Increases the components reference counter [deprecated] Description void com_addref ( void ) Increases the...
- Generate a globally unique identifier (GUID)
com_addref com_event_sink COM Functions PHP Manual com_create_guid (PHP 5) com_create_guid — Generate a globally unique identifier (GUID) Description string com_create_guid ( void ) Generates a...
- Connect events from a COM object to a PHP object
com_create_guid com_get_active_object COM Functions PHP Manual com_event_sink (PHP 4 >= 4.2.0, PHP 5) com_event_sink — Connect events from a COM object to a PHP object Description bool...
- Gets the value of a COM Component's property [deprecated]
com_get_active_object com_invoke COM Functions PHP Manual com_get (PHP 4) com_get — Gets the value of a COM Component's property [deprecated] Description Deprecated, use the OO syntax instead....
- Returns a handle to an already running instance of a COM object
com_event_sink com_get COM Functions PHP Manual com_get_active_object (PHP 5) com_get_active_object — Returns a handle to an already running instance of a COM object Description variant...
- Calls a COM component's method [deprecated]
com_get com_isenum COM Functions PHP Manual com_invoke (PHP 4) com_invoke — Calls a COM component's method [deprecated] Description mixed com_invoke ( resource $com_object , string $function_name [,...
- Indicates if a COM object has an IEnumVariant interface for iteration [deprecated]
com_invoke com_load_typelib COM Functions PHP Manual com_isenum (PHP 4 >= 4.0.7) com_isenum — Indicates if a COM object has an IEnumVariant interface for iteration [deprecated] Description bool...
- Creates a new reference to a COM component [deprecated]
com_load_typelib com_message_pump COM Functions PHP Manual com_load (PHP 4) com_load — Creates a new reference to a COM component [deprecated] Description Deprecated, use the OO syntax instead....
- Loads a Typelib
com_isenum com_load COM Functions PHP Manual com_load_typelib (PHP 4 >= 4.0.7, PHP 5) com_load_typelib — Loads a Typelib Description bool com_load_typelib ( string $typelib_name [, bool...
- Process COM messages, sleeping for up to timeoutms milliseconds
com_load com_print_typeinfo COM Functions PHP Manual com_message_pump (PHP 4 >= 4.2.0, PHP 5) com_message_pump — Process COM messages, sleeping for up to timeoutms milliseconds Description bool...
- Create array containing variables and their values
asort count Array Functions PHP Manual compact (PHP 4, PHP 5) compact — Create array containing variables and their values Description array compact ( mixed $varname [, mixed $... ] ) Creates an...
- Print out a PHP class definition for a dispatchable interface
com_message_pump com_propget COM Functions PHP Manual com_print_typeinfo (PHP 4 >= 4.2.0, PHP 5) com_print_typeinfo — Print out a PHP class definition for a dispatchable interface Description bool...
- Alias of com_get
com_print_typeinfo com_propput COM Functions PHP Manual com_propget (PHP 4) com_propget — Alias of com_get() Description This function is an alias of: com_get() . Note : This function does not exist...
- Alias of com_set
com_propget com_propset COM Functions PHP Manual com_propput (PHP 4) com_propput — Alias of com_set() Description This function is an alias of: com_set() . Note : This function does not exist in PHP...
- Alias of com_set
com_propput com_release COM Functions PHP Manual com_propset (PHP 4) com_propset — Alias of com_set() Description This function is an alias of: com_set() . Note : This function does not exist in PHP...
- Decreases the components reference counter [deprecated]
com_propset com_set COM Functions PHP Manual com_release (PHP 4 >= 4.0.7) com_release — Decreases the components reference counter [deprecated] Description void com_release ( void ) Decreases the...
- Assigns a value to a COM component's property
com_release variant_abs COM Functions PHP Manual com_set (PHP 4) com_set — Assigns a value to a COM component's property Description Deprecated, use the OO syntax instead. Example #1 OO syntax...
- Check whether client disconnected
Misc. Functions connection_status Misc. Functions PHP Manual connection_aborted (PHP 4, PHP 5) connection_aborted — Check whether client disconnected Description int connection_aborted ( void )...
- Returns connection status bitfield
connection_aborted connection_timeout Misc. Functions PHP Manual connection_status (PHP 4, PHP 5) connection_status — Returns connection status bitfield Description int connection_status ( void )...
- Check if the script timed out
connection_status constant Misc. Functions PHP Manual connection_timeout (PHP 4 <= 4.0.4) connection_timeout — Check if the script timed out Description int connection_timeout ( void ) Determines...
- Returns the value of a constant
connection_timeout define Misc. Functions PHP Manual constant (PHP 4 >= 4.0.4, PHP 5) constant — Returns the value of a constant Description mixed constant ( string $name ) Return the value of the...
- Convert from one Cyrillic character set to another
chunk_split convert_uudecode String Functions PHP Manual convert_cyr_string (PHP 4, PHP 5) convert_cyr_string — Convert from one Cyrillic character set to another Description string...
- Decode a uuencoded string
convert_cyr_string convert_uuencode String Functions PHP Manual convert_uudecode (PHP 5) convert_uudecode — Decode a uuencoded string Description string convert_uudecode ( string $data )...
- Uuencode a string
convert_uudecode count_chars String Functions PHP Manual convert_uuencode (PHP 5) convert_uuencode — Uuencode a string Description string convert_uuencode ( string $data ) convert_uuencode() encodes...
- Copies file
clearstatcache delete Filesystem Functions PHP Manual copy (PHP 4, PHP 5) copy — Copies file Description bool copy ( string $source , string $dest [, resource $context ] ) Makes a copy of the file...
- Cosine
ceil cosh Math Functions PHP Manual cos (PHP 4, PHP 5) cos — Cosine Description float cos ( float $arg ) cos() returns the cosine of the arg parameter. The arg parameter is in radians. Parameters arg...
- Hyperbolic cosine
cos decbin Math Functions PHP Manual cosh (PHP 4 >= 4.0.7, PHP 5) cosh — Hyperbolic cosine Description float cosh ( float $arg ) Returns the hyperbolic cosine of arg , defined as (exp(arg) +...
- Count elements in an array, or properties in an object
compact current Array Functions PHP Manual count (PHP 4, PHP 5) count — Count elements in an array, or properties in an object Description int count ( mixed $var [, int $mode ] ) Counts elements in...
- Return information about characters used in a string
convert_uuencode crc32 String Functions PHP Manual count_chars (PHP 4, PHP 5) count_chars — Return information about characters used in a string Description mixed count_chars ( string $string [, int...
- Performs an obscure check with the given password
Crack Functions crack_closedict Crack Functions PHP Manual crack_check (PHP 4 >= 4.0.5, PECL crack:0.1-0.4) crack_check — Performs an obscure check with the given password Description bool...
- Closes an open CrackLib dictionary
crack_check crack_getlastmessage Crack Functions PHP Manual crack_closedict (PHP 4 >= 4.0.5, PECL crack:0.1-0.4) crack_closedict — Closes an open CrackLib dictionary Description bool...
- Returns the message from the last obscure check
crack_closedict crack_opendict Crack Functions PHP Manual crack_getlastmessage (PHP 4 >= 4.0.5, PECL crack:0.1-0.4) crack_getlastmessage — Returns the message from the last obscure check...
- Opens a new CrackLib dictionary
Crack Functions Hash Crack Functions PHP Manual crack_opendict (PHP 4 >= 4.0.5, PECL crack:0.1-0.4) crack_opendict — Opens a new CrackLib dictionary Description resource crack_opendict ( string...
- Calculates the crc32 polynomial of a string
count_chars crypt String Functions PHP Manual crc32 (PHP 4 >= 4.0.1, PHP 5) crc32 — Calculates the crc32 polynomial of a string Description int crc32 ( string $str ) Generates the cyclic...
- Create an anonymous (lambda-style) function
call_user_func func_get_arg Function handling Functions PHP Manual create_function (PHP 4 >= 4.0.1, PHP 5) create_function — Create an anonymous (lambda-style) function Description string...
- One-way string encryption (hashing)
crc32 echo String Functions PHP Manual crypt (PHP 4, PHP 5) crypt — One-way string encryption (hashing) Description string crypt ( string $str [, string $salt ] ) crypt() will return an encrypted...
- Check for alphanumeric character(s)
Ctype Functions ctype_alpha Ctype Functions PHP Manual ctype_alnum (PHP 4 >= 4.0.4, PHP 5) ctype_alnum — Check for alphanumeric character(s) Description bool ctype_alnum ( string $text ) Checks if...
- Check for alphabetic character(s)
ctype_alnum ctype_cntrl Ctype Functions PHP Manual ctype_alpha (PHP 4 >= 4.0.4, PHP 5) ctype_alpha — Check for alphabetic character(s) Description bool ctype_alpha ( string $text ) Checks if all...
- Check for control character(s)
ctype_alpha ctype_digit Ctype Functions PHP Manual ctype_cntrl (PHP 4 >= 4.0.4, PHP 5) ctype_cntrl — Check for control character(s) Description bool ctype_cntrl ( string $text ) Checks if all of...
- Check for numeric character(s)
ctype_cntrl ctype_graph Ctype Functions PHP Manual ctype_digit (PHP 4 >= 4.0.4, PHP 5) ctype_digit — Check for numeric character(s) Description bool ctype_digit ( string $text ) Checks if all of...
- Check for any printable character(s) except space
ctype_digit ctype_lower Ctype Functions PHP Manual ctype_graph (PHP 4 >= 4.0.4, PHP 5) ctype_graph — Check for any printable character(s) except space Description bool ctype_graph ( string $text )...
- Check for lowercase character(s)
ctype_graph ctype_print Ctype Functions PHP Manual ctype_lower (PHP 4 >= 4.0.4, PHP 5) ctype_lower — Check for lowercase character(s) Description bool ctype_lower ( string $text ) Checks if all of...
- Check for printable character(s)
ctype_lower ctype_punct Ctype Functions PHP Manual ctype_print (PHP 4 >= 4.0.4, PHP 5) ctype_print — Check for printable character(s) Description bool ctype_print ( string $text ) Checks if all of...
- Check for any printable character which is not whitespace or an alphanumeric character
ctype_print ctype_space Ctype Functions PHP Manual ctype_punct (PHP 4 >= 4.0.4, PHP 5) ctype_punct — Check for any printable character which is not whitespace or an alphanumeric character...
- Check for whitespace character(s)
ctype_punct ctype_upper Ctype Functions PHP Manual ctype_space (PHP 4 >= 4.0.4, PHP 5) ctype_space — Check for whitespace character(s) Description bool ctype_space ( string $text ) Checks if all...
- Check for uppercase character(s)
ctype_space ctype_xdigit Ctype Functions PHP Manual ctype_upper (PHP 4 >= 4.0.4, PHP 5) ctype_upper — Check for uppercase character(s) Description bool ctype_upper ( string $text ) Checks if all...
- Check for character(s) representing a hexadecimal digit
Ctype Functions Filter Ctype Functions PHP Manual ctype_xdigit (PHP 4 >= 4.0.4, PHP 5) ctype_xdigit — Check for character(s) representing a hexadecimal digit Description bool ctype_xdigit ( string...
- Close a cURL session
cURL Functions curl_copy_handle cURL Functions PHP Manual curl_close (PHP 4 >= 4.0.2, PHP 5) curl_close — Close a cURL session Description void curl_close ( resource $ch ) Closes a cURL session...
- Copy a cURL handle along with all of its preferences
curl_close curl_errno cURL Functions PHP Manual curl_copy_handle (PHP 5) curl_copy_handle — Copy a cURL handle along with all of its preferences Description resource curl_copy_handle ( resource $ch )...
- Return the last error number
curl_copy_handle curl_error cURL Functions PHP Manual curl_errno (PHP 4 >= 4.0.3, PHP 5) curl_errno — Return the last error number Description int curl_errno ( resource $ch ) Returns the error...
- Return a string containing the last error for the current session
curl_errno curl_exec cURL Functions PHP Manual curl_error (PHP 4 >= 4.0.3, PHP 5) curl_error — Return a string containing the last error for the current session Description string curl_error (...
- Perform a cURL session
curl_error curl_getinfo cURL Functions PHP Manual curl_exec (PHP 4 >= 4.0.2, PHP 5) curl_exec — Perform a cURL session Description mixed curl_exec ( resource $ch ) Execute the given cURL session....
- Get information regarding a specific transfer
curl_exec curl_init cURL Functions PHP Manual curl_getinfo (PHP 4 >= 4.0.4, PHP 5) curl_getinfo — Get information regarding a specific transfer Description mixed curl_getinfo ( resource $ch [, int...
- Initialize a cURL session
curl_getinfo curl_multi_add_handle cURL Functions PHP Manual curl_init (PHP 4 >= 4.0.2, PHP 5) curl_init — Initialize a cURL session Description resource curl_init ([ string $url ] ) Initializes a...
- Add a normal cURL handle to a cURL multi handle
curl_init curl_multi_close cURL Functions PHP Manual curl_multi_add_handle (PHP 5) curl_multi_add_handle — Add a normal cURL handle to a cURL multi handle Description int curl_multi_add_handle (...
- Close a set of cURL handles
curl_multi_add_handle curl_multi_exec cURL Functions PHP Manual curl_multi_close (PHP 5) curl_multi_close — Close a set of cURL handles Description void curl_multi_close ( resource $mh ) Closes a set...
- Run the sub-connections of the current cURL handle
curl_multi_close curl_multi_getcontent cURL Functions PHP Manual curl_multi_exec (PHP 5) curl_multi_exec — Run the sub-connections of the current cURL handle Description int curl_multi_exec (...
- Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set
curl_multi_exec curl_multi_info_read cURL Functions PHP Manual curl_multi_getcontent (PHP 5) curl_multi_getcontent — Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set Description...
- Get information about the current transfers
curl_multi_getcontent curl_multi_init cURL Functions PHP Manual curl_multi_info_read (PHP 5) curl_multi_info_read — Get information about the current transfers Description array curl_multi_info_read...
- Returns a new cURL multi handle
curl_multi_info_read curl_multi_remove_handle cURL Functions PHP Manual curl_multi_init (PHP 5) curl_multi_init — Returns a new cURL multi handle Description resource curl_multi_init ( void ) Allows...
- Remove a multi handle from a set of cURL handles
curl_multi_init curl_multi_select cURL Functions PHP Manual curl_multi_remove_handle (PHP 5) curl_multi_remove_handle — Remove a multi handle from a set of cURL handles Description int...
- Get all the sockets associated with the cURL extension, which can then be "selected"
curl_multi_remove_handle curl_setopt_array cURL Functions PHP Manual curl_multi_select (PHP 5) curl_multi_select — Get all the sockets associated with the cURL extension, which can then be "selected"...
- Set an option for a cURL transfer
curl_setopt_array curl_version cURL Functions PHP Manual curl_setopt (PHP 4 >= 4.0.2, PHP 5) curl_setopt — Set an option for a cURL transfer Description bool curl_setopt ( resource $ch , int...
- Set multiple options for a cURL transfer
curl_multi_select curl_setopt cURL Functions PHP Manual curl_setopt_array (PHP 5 >= 5.1.3) curl_setopt_array — Set multiple options for a cURL transfer Description bool curl_setopt_array (...
- Gets cURL version information
cURL Functions FAM cURL Functions PHP Manual curl_version (PHP 4 >= 4.0.2, PHP 5) curl_version — Gets cURL version information Description array curl_version ([ int $age ] ) Returns information...
- Return the current element in an array
count each Array Functions PHP Manual current (PHP 4, PHP 5) current — Return the current element in an array Description mixed current ( array &$array ) Every array has an internal pointer to...
- Authenticate against a Cyrus IMAP server
Cyrus Functions cyrus_bind Cyrus Functions PHP Manual cyrus_authenticate (PHP 4 >= 4.0.7, PECL cyrus:1.0) cyrus_authenticate — Authenticate against a Cyrus IMAP server Description void...
- Bind callbacks to a Cyrus IMAP connection
cyrus_authenticate cyrus_close Cyrus Functions PHP Manual cyrus_bind (PHP 4 >= 4.0.7, PECL cyrus:1.0) cyrus_bind — Bind callbacks to a Cyrus IMAP connection Description bool cyrus_bind ( resource...
- Close connection to a Cyrus IMAP server
cyrus_bind cyrus_connect Cyrus Functions PHP Manual cyrus_close (PHP 4 >= 4.0.7, PECL cyrus:1.0) cyrus_close — Close connection to a Cyrus IMAP server Description bool cyrus_close ( resource...
- Connect to a Cyrus IMAP server
cyrus_close cyrus_query Cyrus Functions PHP Manual cyrus_connect (PHP 4 >= 4.0.7, PECL cyrus:1.0) cyrus_connect — Connect to a Cyrus IMAP server Description resource cyrus_connect ([ string $host...
- Send a query to a Cyrus IMAP server
cyrus_connect cyrus_unbind Cyrus Functions PHP Manual cyrus_query (PHP 4 >= 4.0.7, PECL cyrus:1.0) cyrus_query — Send a query to a Cyrus IMAP server Description array cyrus_query ( resource...
- Unbind ...
Cyrus Functions IMAP Cyrus Functions PHP Manual cyrus_unbind (PHP 4 >= 4.0.7, PECL cyrus:1.0) cyrus_unbind — Unbind ... Description bool cyrus_unbind ( resource $connection , string $trigger_name...
- Format a local time/date
date_timezone_set getdate Date/Time Functions PHP Manual date (PHP 4, PHP 5) date — Format a local time/date Description string date ( string $format [, int $timestamp ] ) Returns a string formatted...
- Returns new DateTime object
checkdate date_date_set Date/Time Functions PHP Manual date_create (PHP 5 >= 5.1.0) date_create — Returns new DateTime object Description DateTime date_create ([ string $time [, DateTimeZone...
- Sets the date
date_create date_default_timezone_get Date/Time Functions PHP Manual date_date_set (PHP 5 >= 5.1.0) date_date_set — Sets the date Description void date_date_set ( DateTime $object , int $year ,...
- Gets the default timezone used by all date/time functions in a script
date_date_set date_default_timezone_set Date/Time Functions PHP Manual date_default_timezone_get (PHP 5 >= 5.1.0) date_default_timezone_get — Gets the default timezone used by all date/time...
- Sets the default timezone used by all date/time functions in a script
date_default_timezone_get date_format Date/Time Functions PHP Manual date_default_timezone_set (PHP 5 >= 5.1.0) date_default_timezone_set — Sets the default timezone used by all date/time...
- Returns date formatted according to given format
date_default_timezone_set date_isodate_set Date/Time Functions PHP Manual date_format (PHP 5 >= 5.1.0) date_format — Returns date formatted according to given format Description string date_format...
- Sets the ISO date
date_format date_modify Date/Time Functions PHP Manual date_isodate_set (PHP 5 >= 5.1.0) date_isodate_set — Sets the ISO date Description void date_isodate_set ( DateTime $object , int $year , int...
- Alters the timestamp
date_isodate_set date_offset_get Date/Time Functions PHP Manual date_modify (PHP 5 >= 5.1.0) date_modify — Alters the timestamp Description void date_modify ( DateTime $object , string $modify )...
- Returns the daylight saving time offset
date_modify date_parse Date/Time Functions PHP Manual date_offset_get (PHP 5 >= 5.1.0) date_offset_get — Returns the daylight saving time offset Description int date_offset_get ( DateTime $object...
- Returns associative array with detailed info about given date
date_offset_get date_sun_info Date/Time Functions PHP Manual date_parse (PHP 5 >= 5.1.3) date_parse — Returns associative array with detailed info about given date Description array date_parse (...
- Returns an array with information about sunset/sunrise and twilight begin/end
date_parse date_sunrise Date/Time Functions PHP Manual date_sun_info (PHP 5 >= 5.1.2) date_sun_info — Returns an array with information about sunset/sunrise and twilight begin/end Description...
- Returns time of sunrise for a given day and location
date_sun_info date_sunset Date/Time Functions PHP Manual date_sunrise (PHP 5) date_sunrise — Returns time of sunrise for a given day and location Description mixed date_sunrise ( int $timestamp [,...
- Returns time of sunset for a given day and location
date_sunrise date_time_set Date/Time Functions PHP Manual date_sunset (PHP 5) date_sunset — Returns time of sunset for a given day and location Description mixed date_sunset ( int $timestamp [, int...
- Sets the time
date_sunset date_timezone_get Date/Time Functions PHP Manual date_time_set (PHP 5 >= 5.1.0) date_time_set — Sets the time Description void date_time_set ( DateTime $object , int $hour , int...
- Return time zone relative to given DateTime
date_time_set date_timezone_set Date/Time Functions PHP Manual date_timezone_get (PHP 5 >= 5.1.0) date_timezone_get — Return time zone relative to given DateTime Description DateTimeZone...
- Sets the time zone for the DateTime object
date_timezone_get date Date/Time Functions PHP Manual date_timezone_set (PHP 5 >= 5.1.0) date_timezone_set — Sets the time zone for the DateTime object Description void date_timezone_set (...
- Returns or sets the AUTOCOMMIT state for a database connection
IBM DB2 Functions db2_bind_param IBM DB2 Functions PHP Manual db2_autocommit (PECL ibm_db2:1.0-1.6.2) db2_autocommit — Returns or sets the AUTOCOMMIT state for a database connection Description mixed...
- Binds a PHP variable to an SQL statement parameter
db2_autocommit db2_client_info IBM DB2 Functions PHP Manual db2_bind_param (PECL ibm_db2:1.0-1.6.2) db2_bind_param — Binds a PHP variable to an SQL statement parameter Description bool db2_bind_param...
- Returns an object with properties that describe the DB2 database client
db2_bind_param db2_close IBM DB2 Functions PHP Manual db2_client_info (PECL ibm_db2:1.1.1-1.6.2) db2_client_info — Returns an object with properties that describe the DB2 database client Description...
- Closes a database connection
db2_client_info db2_column_privileges IBM DB2 Functions PHP Manual db2_close (PECL ibm_db2:1.0-1.6.2) db2_close — Closes a database connection Description bool db2_close ( resource $connection ) This...
- Returns a result set listing the columns and associated privileges for a table
db2_close db2_columns IBM DB2 Functions PHP Manual db2_column_privileges (PECL ibm_db2:1.0-1.6.2) db2_column_privileges — Returns a result set listing the columns and associated privileges for a...
- Returns a result set listing the columns and associated metadata for a table
db2_column_privileges db2_commit IBM DB2 Functions PHP Manual db2_columns (PECL ibm_db2:1.0-1.6.2) db2_columns — Returns a result set listing the columns and associated metadata for a table...
- Commits a transaction
db2_columns db2_conn_error IBM DB2 Functions PHP Manual db2_commit (PECL ibm_db2:1.0-1.6.2) db2_commit — Commits a transaction Description bool db2_commit ( resource $connection ) Commits an...
- Returns a connection to a database
db2_conn_errormsg db2_cursor_type IBM DB2 Functions PHP Manual db2_connect (PECL ibm_db2:1.0-1.6.2) db2_connect — Returns a connection to a database Description resource db2_connect ( string...
- Returns a string containing the SQLSTATE returned by the last connection attempt
db2_commit db2_conn_errormsg IBM DB2 Functions PHP Manual db2_conn_error (PECL ibm_db2:1.0-1.6.2) db2_conn_error — Returns a string containing the SQLSTATE returned by the last connection attempt...
- Returns the last connection error message and SQLCODE value
db2_conn_error db2_connect IBM DB2 Functions PHP Manual db2_conn_errormsg (PECL ibm_db2:1.0-1.6.2) db2_conn_errormsg — Returns the last connection error message and SQLCODE value Description string...
- Returns the cursor type used by a statement resource
db2_connect db2_escape_string IBM DB2 Functions PHP Manual db2_cursor_type (PECL ibm_db2:1.0-1.6.2) db2_cursor_type — Returns the cursor type used by a statement resource Description int...
- Used to escape certain characters
db2_cursor_type db2_exec IBM DB2 Functions PHP Manual db2_escape_string (PECL ibm_db2:1.6.0-1.6.2) db2_escape_string — Used to escape certain characters Description string db2_escape_string ( string...
- Executes an SQL statement directly
db2_escape_string db2_execute IBM DB2 Functions PHP Manual db2_exec (PECL ibm_db2:1.0-1.6.2) db2_exec — Executes an SQL statement directly Description resource db2_exec ( resource $connection ,...
- Executes a prepared SQL statement
db2_exec db2_fetch_array IBM DB2 Functions PHP Manual db2_execute (PECL ibm_db2:1.0-1.6.2) db2_execute — Executes a prepared SQL statement Description bool db2_execute ( resource $stmt [, array...
- Returns an array, indexed by column position, representing a row in a result set
db2_execute db2_fetch_assoc IBM DB2 Functions PHP Manual db2_fetch_array (PECL ibm_db2:1.0.1-1.6.2) db2_fetch_array — Returns an array, indexed by column position, representing a row in a result set...
- Returns an array, indexed by column name, representing a row in a result set
db2_fetch_array db2_fetch_both IBM DB2 Functions PHP Manual db2_fetch_assoc (PECL ibm_db2:1.0-1.6.2) db2_fetch_assoc — Returns an array, indexed by column name, representing a row in a result set...
- Returns an array, indexed by both column name and position, representing a row in a result set
db2_fetch_assoc db2_fetch_object IBM DB2 Functions PHP Manual db2_fetch_both (PECL ibm_db2:1.0-1.6.2) db2_fetch_both — Returns an array, indexed by both column name and position, representing a row...
- Returns an object with properties representing columns in the fetched row
db2_fetch_both db2_fetch_row IBM DB2 Functions PHP Manual db2_fetch_object (PECL ibm_db2:1.0-1.6.2) db2_fetch_object — Returns an object with properties representing columns in the fetched row...
- Sets the result set pointer to the next row or requested row
db2_fetch_object db2_field_display_size IBM DB2 Functions PHP Manual db2_fetch_row (PECL ibm_db2:1.0-1.6.2) db2_fetch_row — Sets the result set pointer to the next row or requested row Description...
- Returns the maximum number of bytes required to display a column
db2_fetch_row db2_field_name IBM DB2 Functions PHP Manual db2_field_display_size (PECL ibm_db2:1.0-1.6.2) db2_field_display_size — Returns the maximum number of bytes required to display a column...
- Returns the name of the column in the result set
db2_field_display_size db2_field_num IBM DB2 Functions PHP Manual db2_field_name (PECL ibm_db2:1.0-1.6.2) db2_field_name — Returns the name of the column in the result set Description string...
- Returns the position of the named column in a result set
db2_field_name db2_field_precision IBM DB2 Functions PHP Manual db2_field_num (PECL ibm_db2:1.0-1.6.2) db2_field_num — Returns the position of the named column in a result set Description int...
- Returns the precision of the indicated column in a result set
db2_field_num db2_field_scale IBM DB2 Functions PHP Manual db2_field_precision (PECL ibm_db2:1.0-1.6.2) db2_field_precision — Returns the precision of the indicated column in a result set Description...
- Returns the scale of the indicated column in a result set
db2_field_precision db2_field_type IBM DB2 Functions PHP Manual db2_field_scale (PECL ibm_db2:1.0-1.6.2) db2_field_scale — Returns the scale of the indicated column in a result set Description int...
- Returns the data type of the indicated column in a result set
db2_field_scale db2_field_width IBM DB2 Functions PHP Manual db2_field_type (PECL ibm_db2:1.0-1.6.2) db2_field_type — Returns the data type of the indicated column in a result set Description string...
- Returns the width of the current value of the indicated column in a result set
db2_field_type db2_foreign_keys IBM DB2 Functions PHP Manual db2_field_width (PECL ibm_db2:1.0-1.6.2) db2_field_width — Returns the width of the current value of the indicated column in a result set...
- Returns a result set listing the foreign keys for a table
db2_field_width db2_free_result IBM DB2 Functions PHP Manual db2_foreign_keys (PECL ibm_db2:1.0-1.6.2) db2_foreign_keys — Returns a result set listing the foreign keys for a table Description...
- Frees resources associated with a result set
db2_foreign_keys db2_free_stmt IBM DB2 Functions PHP Manual db2_free_result (PECL ibm_db2:1.0-1.6.2) db2_free_result — Frees resources associated with a result set Description bool db2_free_result (...
- Frees resources associated with the indicated statement resource
db2_free_result db2_get_option IBM DB2 Functions PHP Manual db2_free_stmt (PECL ibm_db2:1.0-1.6.2) db2_free_stmt — Frees resources associated with the indicated statement resource Description bool...
- Retrieves an option value for a statement resource or a connection resource
db2_free_stmt db2_lob_read IBM DB2 Functions PHP Manual db2_get_option (PECL ibm_db2:1.6.0-1.6.2) db2_get_option — Retrieves an option value for a statement resource or a connection resource...
- Gets a user defined size of LOB files with each invocation
db2_get_option db2_next_result IBM DB2 Functions PHP Manual db2_lob_read (PECL ibm_db2:1.6.0-1.6.2) db2_lob_read — Gets a user defined size of LOB files with each invocation Description string...
- Requests the next result set from a stored procedure
db2_lob_read db2_num_fields IBM DB2 Functions PHP Manual db2_next_result (PECL ibm_db2:1.0-1.6.2) db2_next_result — Requests the next result set from a stored procedure Description resource...
- Returns the number of fields contained in a result set
db2_next_result db2_num_rows IBM DB2 Functions PHP Manual db2_num_fields (PECL ibm_db2:1.0-1.6.2) db2_num_fields — Returns the number of fields contained in a result set Description int...
- Returns the number of rows affected by an SQL statement
db2_num_fields db2_pconnect IBM DB2 Functions PHP Manual db2_num_rows (PECL ibm_db2:1.0-1.6.2) db2_num_rows — Returns the number of rows affected by an SQL statement Description int db2_num_rows (...
- Returns a persistent connection to a database
db2_num_rows db2_prepare IBM DB2 Functions PHP Manual db2_pconnect (PECL ibm_db2:1.0-1.6.2) db2_pconnect — Returns a persistent connection to a database Description resource db2_pconnect ( string...
- Prepares an SQL statement to be executed
db2_pconnect db2_primary_keys IBM DB2 Functions PHP Manual db2_prepare (PECL ibm_db2:1.0-1.6.2) db2_prepare — Prepares an SQL statement to be executed Description resource db2_prepare ( resource...
- Returns a result set listing primary keys for a table
db2_prepare db2_procedure_columns IBM DB2 Functions PHP Manual db2_primary_keys (PECL ibm_db2:1.0-1.6.2) db2_primary_keys — Returns a result set listing primary keys for a table Description resource...
- Returns a result set listing stored procedure parameters
db2_primary_keys db2_procedures IBM DB2 Functions PHP Manual db2_procedure_columns (PECL ibm_db2:1.0-1.6.2) db2_procedure_columns — Returns a result set listing stored procedure parameters...
- Returns a result set listing the stored procedures registered in a database
db2_procedure_columns db2_result IBM DB2 Functions PHP Manual db2_procedures (PECL ibm_db2:1.0-1.6.2) db2_procedures — Returns a result set listing the stored procedures registered in a database...
- Returns a single column from a row in the result set
db2_procedures db2_rollback IBM DB2 Functions PHP Manual db2_result (PECL ibm_db2:1.0-1.6.2) db2_result — Returns a single column from a row in the result set Description mixed db2_result ( resource...
- Rolls back a transaction
db2_result db2_server_info IBM DB2 Functions PHP Manual db2_rollback (PECL ibm_db2:1.0-1.6.2) db2_rollback — Rolls back a transaction Description bool db2_rollback ( resource $connection ) Rolls back...
- Returns an object with properties that describe the DB2 database server
db2_rollback db2_set_option IBM DB2 Functions PHP Manual db2_server_info (PECL ibm_db2:1.1.1-1.6.2) db2_server_info — Returns an object with properties that describe the DB2 database server...
- Set options for connection or statement resources
db2_server_info db2_special_columns IBM DB2 Functions PHP Manual db2_set_option (PECL ibm_db2:1.0-1.6.2) db2_set_option — Set options for connection or statement resources Description bool...
- Returns a result set listing the unique row identifier columns for a table
db2_set_option db2_statistics IBM DB2 Functions PHP Manual db2_special_columns (PECL ibm_db2:1.0-1.6.2) db2_special_columns — Returns a result set listing the unique row identifier columns for a...
- Returns a result set listing the index and statistics for a table
db2_special_columns db2_stmt_error IBM DB2 Functions PHP Manual db2_statistics (PECL ibm_db2:1.0-1.6.2) db2_statistics — Returns a result set listing the index and statistics for a table Description...
- Returns a string containing the SQLSTATE returned by an SQL statement
db2_statistics db2_stmt_errormsg IBM DB2 Functions PHP Manual db2_stmt_error (PECL ibm_db2:1.0-1.6.2) db2_stmt_error — Returns a string containing the SQLSTATE returned by an SQL statement...
- Returns a string containing the last SQL statement error message
db2_stmt_error db2_table_privileges IBM DB2 Functions PHP Manual db2_stmt_errormsg (PECL ibm_db2:1.0-1.6.2) db2_stmt_errormsg — Returns a string containing the last SQL statement error message...
- Returns a result set listing the tables and associated privileges in a database
db2_stmt_errormsg db2_tables IBM DB2 Functions PHP Manual db2_table_privileges (PECL ibm_db2:1.0-1.6.2) db2_table_privileges — Returns a result set listing the tables and associated privileges in a...
- Returns a result set listing the tables and associated metadata in a database
IBM DB2 Functions Ingres II IBM DB2 Functions PHP Manual db2_tables (PECL ibm_db2:1.0-1.6.2) db2_tables — Returns a result set listing the tables and associated metadata in a database Description...
- Close a DBA database
DBA Functions dba_delete DBA Functions PHP Manual dba_close (PHP 4, PHP 5) dba_close — Close a DBA database Description void dba_close ( resource $handle ) dba_close() closes the established database...
- Delete DBA entry specified by key
dba_close dba_exists DBA Functions PHP Manual dba_delete (PHP 4, PHP 5) dba_delete — Delete DBA entry specified by key Description bool dba_delete ( string $key , resource $handle ) dba_delete()...
- Check whether key exists
dba_delete dba_fetch DBA Functions PHP Manual dba_exists (PHP 4, PHP 5) dba_exists — Check whether key exists Description bool dba_exists ( string $key , resource $handle ) dba_exists() checks...
- Fetch data specified by key
dba_exists dba_firstkey DBA Functions PHP Manual dba_fetch (PHP 4, PHP 5) dba_fetch — Fetch data specified by key Description string dba_fetch ( string $key , resource $handle ) string dba_fetch (...
- Fetch first key
dba_fetch dba_handlers DBA Functions PHP Manual dba_firstkey (PHP 4, PHP 5) dba_firstkey — Fetch first key Description string dba_firstkey ( resource $handle ) dba_firstkey() returns the first key of...
- List all the handlers available
dba_firstkey dba_insert DBA Functions PHP Manual dba_handlers (PHP 4 >= 4.3.0, PHP 5) dba_handlers — List all the handlers available Description array dba_handlers ([ bool $full_info ] )...
- Insert entry
dba_handlers dba_key_split DBA Functions PHP Manual dba_insert (PHP 4, PHP 5) dba_insert — Insert entry Description bool dba_insert ( string $key , string $value , resource $handle ) dba_insert()...
- Splits a key in string representation into array representation
dba_insert dba_list DBA Functions PHP Manual dba_key_split (PHP 5) dba_key_split — Splits a key in string representation into array representation Description mixed dba_key_split ( mixed $key )...
- List all open database files
dba_key_split dba_nextkey DBA Functions PHP Manual dba_list (PHP 4 >= 4.3.0, PHP 5) dba_list — List all open database files Description array dba_list ( void ) dba_list() list all open database...
- Fetch next key
dba_list dba_open DBA Functions PHP Manual dba_nextkey (PHP 4, PHP 5) dba_nextkey — Fetch next key Description string dba_nextkey ( resource $handle ) dba_nextkey() returns the next key of the...
- Open database
dba_nextkey dba_optimize DBA Functions PHP Manual dba_open (PHP 4, PHP 5) dba_open — Open database Description resource dba_open ( string $path , string $mode [, string $handler [, mixed $... ]] )...
- Optimize database
dba_open dba_popen DBA Functions PHP Manual dba_optimize (PHP 4, PHP 5) dba_optimize — Optimize database Description bool dba_optimize ( resource $handle ) dba_optimize() optimizes the underlying...
- Open database persistently
dba_optimize dba_replace DBA Functions PHP Manual dba_popen (PHP 4, PHP 5) dba_popen — Open database persistently Description resource dba_popen ( string $path , string $mode [, string $handler [,...
- Replace or insert entry
dba_popen dba_sync DBA Functions PHP Manual dba_replace (PHP 4, PHP 5) dba_replace — Replace or insert entry Description bool dba_replace ( string $key , string $value , resource $handle )...
- Adds a record to a database
dBase Functions dbase_close dBase Functions PHP Manual dbase_add_record (PHP 4, PHP 5) dbase_add_record — Adds a record to a database Description bool dbase_add_record ( int $dbase_identifier , array...
- Closes a database
dbase_add_record dbase_create dBase Functions PHP Manual dbase_close (PHP 4, PHP 5) dbase_close — Closes a database Description bool dbase_close ( int $dbase_identifier ) Closes the given database...
- Creates a database
dbase_close dbase_delete_record dBase Functions PHP Manual dbase_create (PHP 4, PHP 5) dbase_create — Creates a database Description int dbase_create ( string $filename , array $fields )...
- Deletes a record from a database
dbase_create dbase_get_header_info dBase Functions PHP Manual dbase_delete_record (PHP 4, PHP 5) dbase_delete_record — Deletes a record from a database Description bool dbase_delete_record ( int...
- Gets the header info of a database
dbase_delete_record dbase_get_record_with_names dBase Functions PHP Manual dbase_get_header_info (PHP 5) dbase_get_header_info — Gets the header info of a database Description array...
- Gets a record from a database as an indexed array
dbase_get_record_with_names dbase_numfields dBase Functions PHP Manual dbase_get_record (PHP 4, PHP 5) dbase_get_record — Gets a record from a database as an indexed array Description array...
- Gets a record from a database as an associative array
dbase_get_header_info dbase_get_record dBase Functions PHP Manual dbase_get_record_with_names (PHP 4, PHP 5) dbase_get_record_with_names — Gets a record from a database as an associative array...
- Gets the number of fields of a database
dbase_get_record dbase_numrecords dBase Functions PHP Manual dbase_numfields (PHP 4, PHP 5) dbase_numfields — Gets the number of fields of a database Description int dbase_numfields ( int...
- Gets the number of records in a database
dbase_numfields dbase_open dBase Functions PHP Manual dbase_numrecords (PHP 4, PHP 5) dbase_numrecords — Gets the number of records in a database Description int dbase_numrecords ( int...
- Opens a database
dbase_numrecords dbase_pack dBase Functions PHP Manual dbase_open (PHP 4, PHP 5) dbase_open — Opens a database Description int dbase_open ( string $filename , int $mode ) dbase_open() opens a dBase...
- Packs a database
dbase_open dbase_replace_record dBase Functions PHP Manual dbase_pack (PHP 4, PHP 5) dbase_pack — Packs a database Description bool dbase_pack ( int $dbase_identifier ) Packs the specified database...
- Replaces a record in a database
dBase Functions DB++ dBase Functions PHP Manual dbase_replace_record (PHP 4, PHP 5) dbase_replace_record — Replaces a record in a database Description bool dbase_replace_record ( int...
- Synchronize database
DBA Functions dbx DBA Functions PHP Manual dba_sync (PHP 4, PHP 5) dba_sync — Synchronize database Description bool dba_sync ( resource $handle ) dba_sync() synchronizes the database. This will...
- Add a tuple to a relation
DB++ Functions dbplus_aql DB++ Functions PHP Manual dbplus_add (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_add — Add a tuple to a relation Description int dbplus_add ( resource $relation , array...
- Perform AQL query
dbplus_add dbplus_chdir DB++ Functions PHP Manual dbplus_aql (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_aql — Perform AQL query Description resource dbplus_aql ( string $query [, string $server [,...
- Get/Set database virtual current directory
dbplus_aql dbplus_close DB++ Functions PHP Manual dbplus_chdir (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_chdir — Get/Set database virtual current directory Description string dbplus_chdir ([ string...
- Close a relation
dbplus_chdir dbplus_curr DB++ Functions PHP Manual dbplus_close (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_close — Close a relation Description mixed dbplus_close ( resource $relation ) Closes a...
- Get current tuple from relation
dbplus_close dbplus_errcode DB++ Functions PHP Manual dbplus_curr (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_curr — Get current tuple from relation Description int dbplus_curr ( resource $relation ,...
- Get error string for given errorcode or last error
dbplus_curr dbplus_errno DB++ Functions PHP Manual dbplus_errcode (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_errcode — Get error string for given errorcode or last error Description string...
- Get error code for last operation
dbplus_errcode dbplus_find DB++ Functions PHP Manual dbplus_errno (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_errno — Get error code for last operation Description int dbplus_errno ( void ) Returns...
- Set a constraint on a relation
dbplus_errno dbplus_first DB++ Functions PHP Manual dbplus_find (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_find — Set a constraint on a relation Description int dbplus_find ( resource $relation ,...
- Get first tuple from relation
dbplus_find dbplus_flush DB++ Functions PHP Manual dbplus_first (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_first — Get first tuple from relation Description int dbplus_first ( resource $relation ,...
- Flush all changes made on a relation
dbplus_first dbplus_freealllocks DB++ Functions PHP Manual dbplus_flush (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_flush — Flush all changes made on a relation Description int dbplus_flush (...
- Free all locks held by this client
dbplus_flush dbplus_freelock DB++ Functions PHP Manual dbplus_freealllocks (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_freealllocks — Free all locks held by this client Description int...
- Release write lock on tuple
dbplus_freealllocks dbplus_freerlocks DB++ Functions PHP Manual dbplus_freelock (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_freelock — Release write lock on tuple Description int dbplus_freelock (...
- Free all tuple locks on given relation
dbplus_freelock dbplus_getlock DB++ Functions PHP Manual dbplus_freerlocks (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_freerlocks — Free all tuple locks on given relation Description int...
- Get a write lock on a tuple
dbplus_freerlocks dbplus_getunique DB++ Functions PHP Manual dbplus_getlock (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_getlock — Get a write lock on a tuple Description int dbplus_getlock ( resource...
- Get an id number unique to a relation
dbplus_getlock dbplus_info DB++ Functions PHP Manual dbplus_getunique (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_getunique — Get an id number unique to a relation Description int dbplus_getunique (...
- Get information about a relation
dbplus_getunique dbplus_last DB++ Functions PHP Manual dbplus_info (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_info — Get information about a relation Description int dbplus_info ( resource $relation...
- Get last tuple from relation
dbplus_info dbplus_lockrel DB++ Functions PHP Manual dbplus_last (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_last — Get last tuple from relation Description int dbplus_last ( resource $relation ,...
- Request write lock on relation
dbplus_last dbplus_next DB++ Functions PHP Manual dbplus_lockrel (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_lockrel — Request write lock on relation Description int dbplus_lockrel ( resource...
- Get next tuple from relation
dbplus_lockrel dbplus_open DB++ Functions PHP Manual dbplus_next (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_next — Get next tuple from relation Description int dbplus_next ( resource $relation ,...
- Open relation file
dbplus_next dbplus_prev DB++ Functions PHP Manual dbplus_open (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_open — Open relation file Description resource dbplus_open ( string $name ) Opens the given...
- Get previous tuple from relation
dbplus_open dbplus_rchperm DB++ Functions PHP Manual dbplus_prev (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_prev — Get previous tuple from relation Description int dbplus_prev ( resource $relation ,...
- Change relation permissions
dbplus_prev dbplus_rcreate DB++ Functions PHP Manual dbplus_rchperm (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_rchperm — Change relation permissions Description int dbplus_rchperm ( resource...
- Creates a new DB++ relation
dbplus_rchperm dbplus_rcrtexact DB++ Functions PHP Manual dbplus_rcreate (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_rcreate — Creates a new DB++ relation Description resource dbplus_rcreate ( string...
- Creates an exact but empty copy of a relation including indices
dbplus_rcreate dbplus_rcrtlike DB++ Functions PHP Manual dbplus_rcrtexact (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_rcrtexact — Creates an exact but empty copy of a relation including indices...
- Creates an empty copy of a relation with default indices
dbplus_rcrtexact dbplus_resolve DB++ Functions PHP Manual dbplus_rcrtlike (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_rcrtlike — Creates an empty copy of a relation with default indices Description...
- Resolve host information for relation
dbplus_rcrtlike dbplus_restorepos DB++ Functions PHP Manual dbplus_resolve (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_resolve — Resolve host information for relation Description array dbplus_resolve...
- Restore position
dbplus_resolve dbplus_rkeys DB++ Functions PHP Manual dbplus_restorepos (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_restorepos — Restore position Description int dbplus_restorepos ( resource...
- Specify new primary key for a relation
dbplus_restorepos dbplus_ropen DB++ Functions PHP Manual dbplus_rkeys (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_rkeys — Specify new primary key for a relation Description mixed dbplus_rkeys (...
- Open relation file local
dbplus_rkeys dbplus_rquery DB++ Functions PHP Manual dbplus_ropen (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_ropen — Open relation file local Description resource dbplus_ropen ( string $name )...
- Perform local (raw) AQL query
dbplus_ropen dbplus_rrename DB++ Functions PHP Manual dbplus_rquery (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_rquery — Perform local (raw) AQL query Description resource dbplus_rquery ( string...
- Rename a relation
dbplus_rquery dbplus_rsecindex DB++ Functions PHP Manual dbplus_rrename (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_rrename — Rename a relation Description int dbplus_rrename ( resource $relation ,...
- Create a new secondary index for a relation
dbplus_rrename dbplus_runlink DB++ Functions PHP Manual dbplus_rsecindex (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_rsecindex — Create a new secondary index for a relation Description mixed...
- Remove relation from filesystem
dbplus_rsecindex dbplus_rzap DB++ Functions PHP Manual dbplus_runlink (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_runlink — Remove relation from filesystem Description int dbplus_runlink ( resource...
- Remove all tuples from relation
dbplus_runlink dbplus_savepos DB++ Functions PHP Manual dbplus_rzap (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_rzap — Remove all tuples from relation Description int dbplus_rzap ( resource $relation...
- Save position
dbplus_rzap dbplus_setindex DB++ Functions PHP Manual dbplus_savepos (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_savepos — Save position Description int dbplus_savepos ( resource $relation ) Warning...
- Set index
dbplus_savepos dbplus_setindexbynumber DB++ Functions PHP Manual dbplus_setindex (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_setindex — Set index Description int dbplus_setindex ( resource $relation...
- Set index by number
dbplus_setindex dbplus_sql DB++ Functions PHP Manual dbplus_setindexbynumber (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_setindexbynumber — Set index by number Description int dbplus_setindexbynumber...
- Perform SQL query
dbplus_setindexbynumber dbplus_tcl DB++ Functions PHP Manual dbplus_sql (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_sql — Perform SQL query Description resource dbplus_sql ( string $query [, string...
- Execute TCL code on server side
dbplus_sql dbplus_tremove DB++ Functions PHP Manual dbplus_tcl (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_tcl — Execute TCL code on server side Description string dbplus_tcl ( int $sid , string...
- Remove tuple and return new current tuple
dbplus_tcl dbplus_undo DB++ Functions PHP Manual dbplus_tremove (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_tremove — Remove tuple and return new current tuple Description int dbplus_tremove (...
- Undo
dbplus_tremove dbplus_undoprepare DB++ Functions PHP Manual dbplus_undo (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_undo — Undo Description int dbplus_undo ( resource $relation ) Warning This...
- Prepare undo
dbplus_undo dbplus_unlockrel DB++ Functions PHP Manual dbplus_undoprepare (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_undoprepare — Prepare undo Description int dbplus_undoprepare ( resource...
- Give up write lock on relation
dbplus_undoprepare dbplus_unselect DB++ Functions PHP Manual dbplus_unlockrel (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_unlockrel — Give up write lock on relation Description int dbplus_unlockrel (...
- Remove a constraint from relation
dbplus_unlockrel dbplus_update DB++ Functions PHP Manual dbplus_unselect (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_unselect — Remove a constraint from relation Description int dbplus_unselect (...
- Update specified tuple in relation
dbplus_unselect dbplus_xlockrel DB++ Functions PHP Manual dbplus_update (PHP 4 >= 4.0.7, PECL dbplus:0.9) dbplus_update — Update specified tuple in relation Description int dbplus_update (...
- Requ
|