How would I add isset() and keep the empty() on my code below?
$pagesize = (!empty($_GET['pagesize'])) ? $_GET['pagesize'] : 20;
UPDATE:
I am just wanting to make sure php doesn't produce any notices or warnings
|
Is this what you mean?
http://us.php.net/manual/en/language.operators.logical.php EDIT: |
|||||||||||||||
|
|
I'm not sure exactly what you're after here. I can't see why you'd need to combine the two. To rewrite your example without
|
|||
|
|
isset.emptywill evaluate to true if the variable has not been set. – jason Aug 14 '09 at 2:35