TalkPHP
 
 
Account Login
Latest Articles
» The basic usage of PHPTAL, a XML/XHTML template library for PHP
» Vulnerable methods and the areas they are commonly trusted in.
» Simple way to protect a form from bot
» The Basics On: How Session Stealing Works
» How to keep your forms from double posting data
IRC Channel
IRC Speech Bubble Join the friendly bunch on IRC...
(#TalkPHP on Freenode)

...Also available via a web interface.

See this thread for information on the TalkPHP Free Hugs Initiative™. Subject to availability.
Associates
Associates
CSS Tutorials
Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old 04-25-2012, 09:34 AM   #1 (permalink)
The Acquainted
 
captainmerton's Avatar
 
Join Date: May 2009
Posts: 178
Thanks: 9
captainmerton is on a distinguished road
Default Catchable fatal error: Object of class Property could not be converted to string

Help! I am getting the following error:

Quote:
Catchable fatal error: Object of class Property could not be converted to string
Related to the code below:

PHP Code:
        public function __construct(Property $property_obj) {
            
$this->db ApplicationRegistry::dataLayer();
            
$this->$property_obj $property_obj;
            
        } 
This same standard code has worked fine across my application previously however is now throwing me the error above that i cant get my head round. I am taking in an object and assigning it to a variable in the accepting class. I dont want to convert to a string. Why is PHP trying to do this? Would this error happen if the obejct being passed in was null or had not been properly instantiated?

Thanks.
captainmerton is offline  
Reply With Quote
Old 04-26-2012, 12:24 AM   #2 (permalink)
The Wanderer
 
Join Date: Apr 2012
Posts: 6
Thanks: 1
yunohoo is on a distinguished road
Default

If it worked previously and it stoppped functioning then the issue is either withing your Property class or your ApplicationRegistry which I'm assuming is a singleton.

So let's check out that code and how it's stored so we can figure out if it's setting properly.
Send a message via MSN to yunohoo
yunohoo is offline  
Reply With Quote
Old 04-26-2012, 04:46 AM   #3 (permalink)
The Addict
 
tony's Avatar
 
Join Date: Aug 2008
Posts: 336
Thanks: 8
tony is on a distinguished road
Default

I've never seen that error before. But it seems that your left side of the assignment is evaluating $property_obj to a string because you have the dollar sign after the -> . So change
php Code:
$this->$property_obj = $property_obj;
to this
php Code:
$this->property_obj = $property_obj;
tony is offline  
Reply With Quote
The Following User Says Thank You to tony For This Useful Post:
captainmerton (04-26-2012)
Old 04-26-2012, 06:09 PM   #4 (permalink)
The Acquainted
 
captainmerton's Avatar
 
Join Date: May 2009
Posts: 178
Thanks: 9
captainmerton is on a distinguished road
Default

Thanks Tony. I was just getting ready to post the class that interacts with the class shown above and also the class object that is passed in ready to add "i bet its something simple a fresh pair of eyes will solve" but didnt ever think it would be such a school boy one. Much appreciated. Thanks,
Ewan
captainmerton is offline  
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
feedback on my class please frostyboy33 Advanced PHP Programming 7 10-22-2012 09:12 AM
base classes..... allworknoplay Absolute Beginners 16 05-10-2009 08:09 PM
[Tutorial] Basic tutorial about class basics Tanax Absolute Beginners 14 07-24-2008 01:37 PM
Extends? Implements? Private, Public, Protected? Aaron Advanced PHP Programming 13 05-07-2008 02:38 AM
PHP5 Classes A to Z Part 1 quantumkangaroo Advanced PHP Programming 11 04-01-2008 04:21 AM


All times are GMT. The time now is 07:23 PM.

 
     

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Inactive Reminders By Icora Web Design