Tagged Questions

3
votes
4answers
2k views

PHP: How to instantiate a class with arguments from within another class

I am in a situations where i need to instantiate a class with arguments from within an instance of another class. Here is the prototype: //test.php class test { function __construct($a, $b, $c) { ...
2
votes
2answers
459 views

PHP: Instantiate class by reference?

I'm converting some old PHP 4.x code for PHP 5.3. I've come across the following, and I'm not sure what it does. $variable =& new ClassName(); What is the difference between that, and: ...
1
vote
6answers
83 views

php find where class is instantiated from

I am having some issues on a large-ish project, and it boils down to a particular class is somehow being instantiated multiple times, which is causing un-needed replication / overheads. Is there any ...
1
vote
1answer
189 views

Strategy to instantiate classes in a PHP Project

I'm building an application with a pattern that is something like the MVC and I need to know how to deal with a specific situation. I will explain visualy. I have the project folder this kind of ...
0
votes
2answers
485 views

PHP custom class loader

i made a custom class loader function in php something like.. load_class($className,$parameters,$instantiate); its supposed to include the class and optionally instantiate the class specified the ...
0
votes
2answers
144 views

php - any way to access properties of an already instantiated class from another script without reinstantiating it?

I have page main.html which is a client application for a specific server. The main.php is an window with three frames. main.html <frameset frameborder=no border=0> <frame name='top1' ...
-1
votes
3answers
52 views

PHP--> Created a class, but assigning values to the properties fail

I'm creating a class and attempting to use it. However, the values I set are not being retained. Please advise! Here's my class definition: <?php class MemberData { var $mdId; var $mdFname; var ...