Php constant define () constant (), defined ()

Source: Internet
Author: User
Php constant define () constant (), defined () define -- defines a constant. if true is defined, booldefine (stringname, mixedvalue [, boolcase_insensitive]) is not case sensitive during read. constants can only contain scalar data (B php constants define () constant (), defined ()

Define -- defines a constant. if it is set to true, the read process is case insensitive.

Bool define (string name, mixed value [, bool case_insensitive])

Constants can only contain scalar data (Boolean,Integer,FloatAndString).

Define ("CONSTANT", "Hello world .");
Echo CONSTANT; // outputs "Hello world ."
Echo Constant; // outputs "Constant" and issues a notice.

Define ("GREETING", "Hello you.", true );
Echo GREETING; // outputs "Hello you ."
Echo Greeting; // outputs "Hello you ."

?

?

==========================================================

Constant () -- read a constant

MixedConstant(String name)

?

Define ("MAXSIZE", 100 );

Echo MAXSIZE;
Echo constant ("MAXSIZE"); // same thing as the previous line

?

====================================

?

Defined -- determine whether a constant is defined

?

BoolDefined(String name)

?

If (defined ('constant ')){
???? Echo CONSTANT;
}

?

========================================================== ====================

?

Predefined Constants

?

_ FILE __?? Obtain the physical address of a file? Note: There are two underscores (_) between the left and right.

?

Echo _ FILE __??? // C: \ wamp \ www \ T1 \ 1.php

?

?

?

?

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.