Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using wordpress. So there is an
<?php
if ( is_user_logged_in() )
{
?

function. I want to add to it another set of if statements that check for a variable. I don't know the correct syntax but in plain english it is like If users is logged in and $string1 or $string2 is empty.

Please assist.

share|improve this question

4 Answers

up vote 6 down vote accepted
  if ( is_user_logged_in() && (empty($string1) || empty($string2)) ) {

if you need only one string to be empty but not both. use

  if ( is_user_logged_in() && (empty($string1) ^ empty($string2)) ) {
share|improve this answer
Thank you. Will try this and revert! – Sam Apr 11 '11 at 11:51
I dont even know what the heck the ^ does in PHP. Please explain. Is that xor? – John Ballinger Apr 11 '11 at 12:00
2  
yes it's xor, you can use xor or ^ both =) – Headshota Apr 11 '11 at 12:02
if (user_is_logged_in() AND (strlen($str1) == 0 OR strlen($str2) == 0))

I will note that this will work if BOTH str1 and str2 have a zero length. If the variables may not be set, as opposed to having zero length use isset instead of strlen() == 0.

share|improve this answer
empty() maniplulate that automatically – diEcho Apr 11 '11 at 11:52
if (user_logged_in() && (empty($string1) || empty($string2))

This requires the user_logged_in() call to return true. At least one of $string1 or $string2 needs to be empty.

share|improve this answer

<?php if(is_user_logged_in() && (empty($string1) || empty($string2))) ?>

Good luck :)

share|improve this answer

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.