You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I do prefer the isset( $a ) && isset( $b ) version, as it contains the logical operators, which isset( $a, $b ) does not. Or said differently the first version is clear, even if your understanding of PHP is moderate, the second one requires you to understand what this particular function does in detail.
IMO,
isset( $a, $b )
is unclear, and there's no good reason to use it instead of the more explicitisset( $a ) && isset( $b )
Anyone have strong thoughts either way on this?
The text was updated successfully, but these errors were encountered: