Class-level constant usage in php5.5 _php basics

Source: Internet
Author: User
Tags constant

Not long ago, PHP just released the first stable version of 5.5, introduced a class-level constant, the name is ' class ' This constant is valid for all classes, and returns the full name of the class.

Copy Code code as follows:

<?php
namespace Vendorpackage;
Class Foo
{
// ...
}
Var_dump (Foo::class);
The above script outputs string (a) "Vendorpackagefoo".

Why to use it

Why do we use one of these constants, and of course not just to get the full name of the class as the example above. We can use __namespace__ to achieve the same effect, and php5.3 can be used:

Copy Code code as follows:

<?php
namespace Vendorpackage;
Class Foo
{
// ...
}
Var_dump (__namespace__. ' Foo ');

However, when you need a fully qualified name, the namespace references the class namespace alias ... And then it gets interesting.

In the following example:

Copy Code code as follows:

<?php
Use Vendorpackagefoo;
Class Footest extends Phpunit_framework_testcase
{
Public Function testbarcanbeprocessed ()
{
$bar = $this->getmock (' Vendorpackagebar ');
$foo = new Foo;
$foo->process ($bar);
// ...
}
}

Copy Code code as follows:

<?php
Use Vendorpackagefoo;
Use Vendorpackagebar;
Class Footest extends Phpunit_framework_testcase
{
Public Function testbarcanbeprocessed ()
{
$bar = $this->getmock (bar::class);
$foo = new Foo;
$foo->process ($bar);
// ...
}
}

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.