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 } 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; 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 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
Archived
This topic is now archived and is closed to further replies.