Php Cheat Sheet



[abc] A single character: a, b or c
[^abc] Any single character but a, b, or c
[a-z] Any single character in the range a-z
[a-zA-Z] Any single character in the range a-z or A-Z
^ Start of line
$ End of line
A Start of string
z End of string
. Any single character
s Any whitespace character
S Any non-whitespace character
d Any digit
D Any non-digit
w Any word character (letter, number, underscore)
W Any non-word character
b Any word boundary character
(...) Capture everything enclosed
(a|b) a or b
a? Zero or one of a
a* Zero or more of a
a+ One or more of a
a{3} Exactly 3 of a
a{3,} 3 or more of a
a{3,6} Between 3 and 6 of a

options: i case insensitive m make dot match newlines x ignore whitespace in regex o perform #{...} substitutions only once

PHP Variable Comparison

Php Cheat Sheet

Important notes on the comparisons and tests:

  1. There appear to be two null values at the start of the test. The first one is actually an unset variable, i.e. no longer in existence. The second is a variable which was set to null.
  2. Tests with Ctype and strcmp-type functions use the system default C locale. Results may vary for other locales.
  3. Some tests might seem a bit ‘silly’, for instance testing with 'null'. The reason for adding these tests can be divided into two categories:
    1. Data received from databases and $_POST/$_GET/etc variables are always received as strings (unless a potentially used database abstraction layer changes this). So sometimes testing for a string value where a non-string variable type would be more logical, can actually make sense.
    2. Some are unfortunately regularly encountered in code and added here to illustrate why not to use them.
  4. BEWARE: some variable changing functions will not return a changed value, but will return whether the changing succeeded. You will find this indicated in the function header by the use of $copy (as the test will use a copy of the variable to not influence the other tests in the same table).
Cheat

Notes on some variables:

Some of the test variables used, do not print the way they are set, either because they contain invisible characters or because they result in something else, so for your convenience, these are outlined here:

How the variable is defined:
i8$x = 0xCC00F9; // Hexadecimal integer.
i9$x = 052; // Octal integer.
ia$x = 0b0111001; // Binary integer (PHP5.4+).
ib$x = ‏௫‏; // Tamil digit five - entered as string as PHP itself cannot deal with it as an integer.
ic$x = ⁸₈; // Unicode superscript and subscript digit 8 - entered as a string as PHP itself cannot deal with these as integers.
f5$x = acos(8); // = NAN
f6$x = NAN; // = Not a number.
f7$x = log(0); // = Infinite.
f8$x = INF; // = Infinite.
f9$x = 1.2345E8; // Exponent notation float.
fa$x = ⅕; // Unicode character representing 1/5 - entered as string as PHP itself cannot deal with it as a float.
sk$x = '123, 'str'rn';
sn$x = 'ftrn';
sp$x = 'x7ftrn'

Legend / How to use the tables:

  • The error level for this test sheet has been set to E_ALL & ~E_STRICT. All errors are caught and referenced (with #links) in the tables with details of the error messages (if any) below each table. Similar error messages are grouped together for your convenience.
  • Some column labels have been shortened to avoid them taking undue space. These are indicated by a . If you mouse-over the column label you will see the full variable/test information.
  • In comparison tables, the left-top table header will indicate the comparison used and link to the relevant page in the PHP Manual.
  • In test tables, the left top table header indicates the type of tests. Both this header as well as most column headers link to their respective relevant PHP Manual pages.
  • A ‡ with a number next to a column header means there is a (linked) footnote for that entry at the bottom of the page.
  • When you mouse-over the table the row and column you are at are highlighted. To help you compare specific columns/rows, you can click on any cell to mark the column and row which the cell intersects for extra highlighting. Click again to remove this sticky highlight.

View PHP CHEAT SHEET 1(1).docx from CSC 226 at College of Staten Island, CUNY. PHP CHEAT SHEET 1 1. Basic Syntaxes PHP code can be embedded in HTML code and HTML code can be written by PHP.php. This Cheat Sheet provides a reference for quickly looking up the correct syntax for the code you use most frequently. Use PHP Statements to Create Programs PHP programs are a series of PHP statements, executed one at a time. Here’s a list of the PHP statements (with syntax) that you use when writing PHP. PHP has many useful functions to work with regular expressions. Here is a quick cheat sheet of the main PHP regex functions. Remember that all of them are case sensitive. For more information about the native functions for PHP regular expressions, have a look at the manual. Authentication Cheat Sheet¶ Introduction¶. Authentication is the process of verifying that an individual, entity or website is whom it claims to be. Authentication in the context of web applications is commonly performed by submitting a username or ID and one or more items of private information that only a given user should know. PHP Cheat Sheet by Dave Child (DaveChild) via cheatography.com/1/cs/2/ PHP Array Functions arraydiff (arr1, arr2.) arrayfilter (arr, function) arrayflip (arr) arrayintersect (arr1, arr2.) arraymerge (arr1, arr2.) arraypop (arr) arraypush.

Legend to the color coding

Mysql Cheat Sheet Queries

NULL:null
Boolean:true / false
Integer:123456789 / 0
Float:12345.6789
String:‘A string’
Array and Object:Indicated as such. Array keys, array values and object properties will be color coded according to the coding shown here.
Resources:Resource id #15