Better way to check variable for null or empty string?

Since PHP is a dynamic language what’s the best way of checking to see if a provided field is empty?

I want to ensure that:

  1. null is considered an empty string
  2. a white space only string is considered empty
  3. that “0” is not considered empty

This is what I’ve got so far:

$question = trim($_POST['question']);

if ("" === "$question") {
    // Handle error here
}

There must be a simpler way of doing this?

10 Answers
10

Leave a Comment