calmchess Posted May 4, 2010 Share Posted May 4, 2010 I found this line in a clients file and am struggling to understand it.....will you plz explain it to me. <?=last_login($prof[online])?> Link to comment https://forums.phpfreaks.com/topic/200709-plz-explain-single-line-cod/ Share on other sites More sharing options...
Mchl Posted May 4, 2010 Share Posted May 4, 2010 display result of last_login() function called with $prof[online] as an argument This is equivalent of: <?php echo last_login($prof[online]) ?> Link to comment https://forums.phpfreaks.com/topic/200709-plz-explain-single-line-cod/#findComment-1053212 Share on other sites More sharing options...
ignace Posted May 4, 2010 Share Posted May 4, 2010 Do note the use is discourage as you can't rely on the setting short_tags be set. Link to comment https://forums.phpfreaks.com/topic/200709-plz-explain-single-line-cod/#findComment-1053220 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.