cs.punk Posted August 17, 2011 Share Posted August 17, 2011 Can a mod make this a poll? Style 1: $page = 0; if (isset($pageTo)) { $page = $pageTo; } Style 2: if (isset($pageTo)) { $page = $pageTo; } else { $page = 0 } Quote Link to comment https://forums.phpfreaks.com/topic/245026-what-coding-style-do-you-prefer/ Share on other sites More sharing options...
ignace Posted August 17, 2011 Share Posted August 17, 2011 I prefer $page = isset($pageTo) ? $pageTo : 0; Quote Link to comment https://forums.phpfreaks.com/topic/245026-what-coding-style-do-you-prefer/#findComment-1258675 Share on other sites More sharing options...
Alex Posted August 17, 2011 Share Posted August 17, 2011 I prefer $page = isset($pageTo) ? $pageTo : 0; +1 Quote Link to comment https://forums.phpfreaks.com/topic/245026-what-coding-style-do-you-prefer/#findComment-1258686 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.