overfloweblog
are you driving me crazy?
Browse: Home / shorthand

shorthand

Shorthand If / Else Examples

By overflow on April 1, 2008

출처 요기 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); [...]

| Tagged serverScript, shorthand | Leave a response

Copyright © 2012 overfloweblog.

Powered by WordPress and Hybrid.