What can I add in constructors in PHP?
-
Could anyone tell me what I can include in the constructor? I know that I can do the following. function __construct(){ parent::Controller(); session_start(); } But I am wondering if I can add any variables, if statement etc. Thanks in advance.
-
Answer:
You can include variables, function calls, method calls, object declarations, etc, etc, etc inside your default constructor. class Test { protected $protected; private static $static; function __construct() { parent::__construct(); $this->protected = 'test'; $variable_local = 'hey'; self::$static = 'im static'; $obj = new OtherClass(); $this->myMethod(); externalFunction(); } public function myMethod() { echo 'all mine'; } } function externalFunction() { 'hey, im external'; }
shin at Stack Overflow Visit the source
Other answers
Knock yourself out. Add any PHP you want. You can use $this to refer to the object being created.
Ben James
Related Q & A:
- How can I add icon in tabs?Best solution by Stack Overflow
- How Can I add Latitude, Longitude dynamically in Javascript?Best solution by Stack Overflow
- What can I add to my website?Best solution by Stack Overflow
- I want to add my personal photos. how can i add it.
- How can I add local whether everytime I open the yahoo page?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.