PHP static keyword static variable practical method (1/3)-PHP source code

Source: Internet
Author: User
Ec (2); & nbsp; copy the following code & lt ;? PhpclassFoo {publicstatic $ my_staticfoo; publicfunctionstaticValue () {returnself: $ my_static ;}} classBarextendsFoo {publ script ec (2); script

The Code is as follows:
Class Foo
{
Public static $ my_static = 'foo ';
Public function staticValue (){
Return self: $ my_static;
}
}
Class Bar extends Foo
{
Public function fooStatic (){
Return parent: $ my_static;
}
}
Print Foo: $ my_static ."";
$ Foo = new Foo ();
Print $ foo-> staticValue ()."";
Print $ foo-> my_static. ""; // Undefined "Property" my_static
Print $ foo: $ my_static ."";
$ Classname = 'foo ';
Print $ classname: $ my_static. "; // can be called dynamically after PHP 5.3.0
Print Bar: $ my_static ."";
$ Bar = new Bar ();
Print $ bar-> fooStatic ()."";
?>

Homepage 1 2 3 last

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.