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

search for in the

Preddefinované premenné> <Zoznam aliasov funkcií
Last updated: Sun, 25 Nov 2007

view this page in

Zoznam rezervovaných slov

Table of Contents

Následujúce je zoznam preddefinovaných identifikátorov v PHP. Žiaden z tu uvedených identifikátorov by sa nemal použiť ako identifikátor v žiadnom z vašich skriptov. Tieto zoznamy zahŕňajú kľúčové slová a názvy preddefinovaných premenných, konštant a tried. Tieto zoznamy nie sú ani úplné ani dokončené.

Zoznam kľúčových slov

Tieto slová majú v PHP špeciálny význam. Niektoré z nich reprezentujú veci, ktoré vyzerajú ako funkcie, niektoré ako konštanty atď.--ale nie sú, sú to v skutočnosti jazykové konštrukcie. Žiadne z následujúcich slov nemôžete použiť pre konštanty, názvy tried ani názvy funkcií či metód. Všeobecne sa môžu používať ako premenné, ale môže to spôsobiť zmätok.

Kľúčové slová PHP
and or xor __FILE__ exception php_user_filter
__LINE__ array() as break case
cfunction class const continue declare
default die() do echo() else
elseif empty() enddeclare endfor endforeach
endif endswitch endwhile eval() exit()
extends for foreach function global
if include() include_once() isset() list()
new old_function print() require() require_once()
return() static switch unset() use
var while __FUNCTION__ __CLASS__ __METHOD__


Preddefinované premenné> <Zoznam aliasov funkcií
Last updated: Sun, 25 Nov 2007
 
add a note add a note User Contributed Notes
Zoznam rezervovaných slov
SR
04-Oct-2007 10: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 02: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 04: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 03:41
I don't see the boolean constants 'true' and 'false' listed among the reserved words/keywords/constants.

Preddefinované premenné> <Zoznam aliasov funkcií
Last updated: Sun, 25 Nov 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites