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

search for in the

기선언 변수> <함수 별칭 목록
Last updated: Sun, 25 Nov 2007

view this page in

예약어 목록

Table of Contents

다음은 PHP에서 기선언된 식별자 목록이다. 이 식별자 목록 중 어느것도 스크립트에서 식별자로 사용될수 없다. 이 목록은 키워드와 기선언 변수, 상수, 클래스 명도 포함한다. 이 목록은 철저하지도 완벽하지도 않다.

키워드 목록

이 단어들은 PHP에서 특별한 의미를 갖는다. 이중 일부는 함수처럼 보여지기도하고 상수나 기타 등등 으로 보여질것이다-그러나 그렇지 않다. 실제로: 그들은 언어 구조이다. 다음 단어를 상수, 클래스명, 함수명으로 사용할수 없다. 이들을 변수명으로 사용하는 것은 괜찮을수도 있지만, 혼란스럽게 될것이다.

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__


기선언 변수> <함수 별칭 목록
Last updated: Sun, 25 Nov 2007
 
add a note add a note User Contributed Notes
예약어 목록
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.

기선언 변수> <함수 별칭 목록
Last updated: Sun, 25 Nov 2007
 
 
show source | credits | stats | sitemap | contact | advertising | mirror sites