“PCRE” stands for “Perl Compatible Regular Expressions”. In PHP, this refers to functions like “preg_replace” and “preg_split”. The patterns used in these functions can have modifiers applied to them, and this section list those modifiers and what they do.
This cheat-sheet includes:
- Functions
- Base Character Classes
- Meta Characters
- Quantifiers
- Pattern Modifiers
- Point based assertions
- Subpattern Modifiers & Assertions
Download files here: PDF | PNG
Found at PHPGuru.org
Technorati tag: php, pcre, cheat sheet, cheat, sheet, tip, design, web, png, pdf, download, programming
August 11th, 2006
The PHP cheat sheet is designed to be printed on an A4 sheet of paper and live by a developers desk, to make life a bit easier. A description of what is on the cheat sheet follows, or if you are impatient, you can go straight to the full size PHP cheat sheet.
Function List
Probably the biggest problem with PHP is its inconsistency. Some function names use underscores, some don’t. Some are of the form “verb object” and some are “object verb”. Some use “2″ instead of “to”. The side sections of the cheat sheet list many of the most commonly used functions in PHP and are there to provide a quick reference to check function names.
SuperGlobals
In PHP, SuperGlobals are available at any point in a script, and allow access to data from the user and session date, as well as information about server settings and environmental data. This section contains a list of SuperGlobal variable names.
Date Formatting
There are, as I’m sure you are aware, a huge number of options when it comes to date formatting, and there are few people who remember all of them. This section of the cheat sheet lists the various options, followed by a description, and an example where appropriate.
Regular Expression Syntax
Many people have trouble with regular expressions, and the first step to coming to grips with them is to become familiar with the various symbols used in regular expressions and their meaning. This section lists these symbols and describes their meaning.
PCRE Modifiers
“PCRE” stands for “Perl Compatible Regular Expressions”. In PHP, this refers to functions like “preg_replace” and “preg_split”. The patterns used in these functions can have modifiers applied to them, and this section list those modifiers and what they do.
Function Argument Orders
One of the other major inconsistencies in PHP is function argument ordering. Functions that are very very similar often completely opposite ordering of arguments. This section simply lists a few of the common ones people are sometimes confused by, or that people find easy to forget.
fopen() Modes
fopen() is a widely used function and has several modes in which it can operate, depending on whether you want to read or write to a file, and what you want to do with data already in that file. This section lists those modes and what each does.
Download files here: PDFÂ | PNG
Found at ILoveJackDaniels
Technorati Tags: php, cheat sheet, cheat, sheet, tip, design, web, png, pdf, download
June 14th, 2006