Skip to content

Instantly share code, notes, and snippets.

@OMGZui
Last active June 27, 2022 07:59
Show Gist options
  • Save OMGZui/dad0851bedcd8bb708ec39a18f876bfe to your computer and use it in GitHub Desktop.
Save OMGZui/dad0851bedcd8bb708ec39a18f876bfe to your computer and use it in GitHub Desktop.
if (!empty($foo)) $data['foo'] = $foo; // A
if (!empty($foo)) {
$data['foo'] = $foo; // B
}
!empty($foo) && $data['foo'] = $foo; // C
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment