PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

Predefined Classes> <List of Function Aliases
Last updated: Fri, 22 Aug 2008

view this page in

List of Reserved Words

Table of Contents

The following is a listing of predefined identifiers in PHP. None of the identifiers listed here should be used as identifiers in any of your scripts. These lists include keywords and predefined variable, constant, and class names. These lists are neither exhaustive or complete.

List of Keywords

These words have special meaning in PHP. Some of them represent things which look like functions, some look like constants, and so on--but they're not, really: they are language constructs. You cannot use any of the following words as constants, class names, function or method names. Using them as variable names is generally OK, but could lead to confusion.

PHP Keywords
abstract (as of PHP 5) and array() as break
case catch (as of PHP 5) cfunction (PHP 4 only) class clone (as of PHP 5)
const continue declare default do
else elseif enddeclare endfor endforeach
endif endswitch endwhile extends final (as of PHP 5)
for foreach function global goto (as of PHP 5.3)
if implements (as of PHP 5) interface (as of PHP 5) instanceof (as of PHP 5)
namespace (as of PHP 5.3) new old_function (PHP 4 only) or private (as of PHP 5)
protected (as of PHP 5) public (as of PHP 5) static switch this (as of PHP 5)
throw (as of PHP 5) try (as of PHP 5) use var while
xor
Compile-time constants
__CLASS__ __DIR__ (as of PHP 5.3) __FILE__ __FUNCTION__ __METHOD__
__NAMESPACE__ (as of PHP 5.3)
Language constructs
die() echo() empty() exit() eval()
include() include_once() isset() list() require()
require_once() return() print() unset()


Predefined Classes> <List of Function Aliases
Last updated: Fri, 22 Aug 2008
 
add a note add a note User Contributed Notes
List of Reserved Words
SR
04-Oct-2007 08:53
[Editorial note: parent and self are reserved class names. Functions and constants with their names can be declared, but not userspace classes]

true, false and null are not listed because they are globally-defined constants, not reserved words.

No idea about parent or self, though.
londonx at gmail dot com
05-Mar-2007 12:14
Naming a PHP5 class "variant" (with a constructor called the same) and then making an instance of it using __autoload triggers an error which disappears as soon as the name is changed. This should mean that "variant" is also a reserved word.
01-Nov-2006 02:42
Two things:

1. It would be nice for this list to differentiate those reserved words, which are language constructs used *with* parentheses (isset, unset, empty, eval, exit, die, ...) and those rather to be used *without* parentheses (all includes, echo, print, return, ...?)

This would really help define some common coding styles...

2. Do you write NULL, TRUE, FALSE or null, true, false? (I find CAPITAL letters better, however typing them can be annoying so I stick with using all lowercase letters, but what's the standard?)
10-Jan-2006 01:41
I don't see the boolean constants 'true' and 'false' listed among the reserved words/keywords/constants.

Predefined Classes> <List of Function Aliases
Last updated: Fri, 22 Aug 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites