Introduction to the use of class-level constants in php5.5 _php tutorial

Source: Internet
Author: User
PHP recently released the first stable version of 5.5, introduced a class-level constant, the name is ' class ', the constant is valid for all classes, returns the full name of the class.

Copy the Code code as follows:
namespace Vendorpackage;
Class Foo
{
// ...
}
Var_dump (Foo::class);
The above script outputs a string of "Vendorpackagefoo".

Why do you want to use it

Why do we use a constant like this, not just the full name of the class, as in the example above. We can also achieve the same effect using __namespace__, and php5.3 can be used:

Copy the Code code as follows:
namespace Vendorpackage;
Class Foo
{
// ...
}
Var_dump (__namespace__. ' Foo ');

However, when you need to fully qualify the name, the namespace references the class namespace alias ... Then it becomes interesting.

In the following example:

Copy the Code code as follows:
Use Vendorpackagefoo;
Class Footest extends Phpunit_framework_testcase
{
Public Function testbarcanbeprocessed ()
{
$bar = $this->getmock (' Vendorpackagebar ');
$foo = new Foo;
$foo->process ($bar);
// ...
}
}

Copy the Code code as follows:
Use Vendorpackagefoo;
Use Vendorpackagebar;
Class Footest extends Phpunit_framework_testcase
{
Public Function testbarcanbeprocessed ()
{
$bar = $this->getmock (bar::class);
$foo = new Foo;
$foo->process ($bar);
// ...
}
}

http://www.bkjia.com/PHPjc/313492.html www.bkjia.com true http://www.bkjia.com/PHPjc/313492.html techarticle PHP recently released the first stable version of 5.5, introduced a class-level constant, the name is ' class ', the constant is valid for all classes, returns the full name of the class. Copy Code Code ...

  • 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.