Skip to content

Instantly share code, notes, and snippets.

@maxxon15
Forked from JeffreyWay/set-value.md
Created July 28, 2012 21:16
Show Gist options
  • Save maxxon15/3194832 to your computer and use it in GitHub Desktop.
Save maxxon15/3194832 to your computer and use it in GitHub Desktop.
PHP: Set value if not exist

You know how, in JavaScript, we can set a value to a variable if one doesn't, like this:

name = name || 'joe';

This is quite common and very helpful. Another option is to do:

name || (name = 'joe');

Well, in PHP, that doesn't work. What many do is:

if ( empty($name) ) $name = 'joe';

Which works...but it's a bit verbose. My preference, at least for checking for empty strings, is:

$name = $name ?: 'joe';

What's your preference for setting values if they don't already exist?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment