Tag Archives: shorthand

Shorthand If / Else Examples

출처 요기 http://davidwalsh.name/javascript-shorthand-if-else-examples ——————————————————- Basic True / False Declaration $is_admin = ($user['permissions'] == ‘admin’ ? true : false); ——————————————————- Conditional Welcome Message echo ‘Welcome ‘.($user['is_logged_in'] ? $user['first_name'] : ‘Guest’).’!'; ——————————————————- Conditional Items Message echo ‘Your cart contains ‘.$num_items.’ item’.($num_items != 1 ? ’s’ : ”).’.'; ——————————————————- Conditional Error Reporting Level error_reporting($WEBSITE_IS_LIVE ? 0 : E_STRICT); [...]
Posted in serverScript | Also tagged | Leave a comment