Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting this error in a PHP class...

Fatal error: Can't use method return value in write context in C:\webserver\htdocs\friendproject2\includes\classes\User.class.php on line 35

Here is the troubled part.

if(isset($this->session->get('user_id')) && $this->session->get('user_id') != ''){
    //run code
}

This code is in my contrustor, is a value is not already set for $this->session->get('user_id') then it will return false instead of a Number. So as you can see I was hoping to check if this value is a number or not or not even set.

Any help with fixing appreciated.

share|improve this question
I've accustomed myself to returning null from method's that are expected to return values, when no value is present, and only return booleans (true/false) from methods that should return an indication of whether an operation failed/succeeded. You might want to concider using this paradigm too. The benifit is that, especially when a method is expected to return a number, you won't mistake the value zero for false. – fireeyedboy Jan 17 '10 at 0:40

3 Answers

up vote 11 down vote accepted

You can't use isset for the result of a function. Consider the following code instead:

if( $this->session->get('user_id') ){
    //run code
}
share|improve this answer
2  
Hah! Learnt something. +1 – Pekka 웃 Jan 17 '10 at 0:26
4  
Remember that if your application allows for a user_id with the value 0, this will fail, as 0 evaluates to false. A user_id of 0 might be unlikely in many applications, but still wanted to point it out. – fireeyedboy Jan 17 '10 at 0:30
2  
Hmmm, now that I read the OP's question more thoroughly, I see he mentioned the method returns false if there is no user_id. Still, maybe: if( false !== $this->session->get('user_id') ) ... might be a little more save. – fireeyedboy Jan 17 '10 at 0:33

isset() only works with variables as passing anything else will result in a parse error. For checking if constants are set use the defined() function.

From the PHP Manual.

share|improve this answer

You can't use isset on a function. However, since false, 0, and '' all equate to a falsey statement, write your test this way:

if( $id = $this->sessions->get('user_id') ){
   // Will only run if $id does not equal '', False, or 0
}

That way you have run your test and assigned the variable in one step.

share|improve this answer
2  
A word of caution, regarding assignment in an if() -- it's easy to get a little confused if you add a second condition to your if. The && operator takes precedence over assignment, so if($id = myFunc() && $id > 0) is logically equivalent to if($id = (myFunc() && $id > 0)), while what you probably mean is if(($id = myFunc()) && $id > 0). Just wanted to throw that out there, 'cause it's a minor error I find myself making now and then, and it can be difficult to catch if you don't know to look for it. – Frank Farmer Jan 17 '10 at 2:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.