mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-11-22 21:52:31 +03:00
Add More Magic Methods in PHP
This commit is contained in:
parent
0e6d9f6fe9
commit
64aa38a1d2
@ -498,10 +498,23 @@ class MyClass
|
||||
print 'MyClass';
|
||||
}
|
||||
|
||||
//final keyword would make a function unoverridable
|
||||
// final keyword would make a function unoverridable
|
||||
final function youCannotOverrideMe()
|
||||
{
|
||||
}
|
||||
|
||||
// Magic Methods
|
||||
|
||||
// what to do if Object is treated as a String
|
||||
public function __toString() {
|
||||
return $property;
|
||||
}
|
||||
|
||||
// opposite to __construct()
|
||||
// called when object no longer referenced
|
||||
public function __destruct() {
|
||||
print "Destroying"
|
||||
}
|
||||
|
||||
/*
|
||||
* Declaring class properties or methods as static makes them accessible without
|
||||
|
Loading…
Reference in New Issue
Block a user