Alqoe

follower twitter

Apr 1st, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. buka twitter.php terus cari kode ini.
  2.  
  3. function pluralise($word, $count, $show = FALSE) {
  4. if($show) $word = number_format($count) . " {$word}";
  5. return $word . (($count != 1) ? 's' : '');
  6. }
  7.  
  8. terus ganti jadi begini.
  9.  
  10. function pluralise($word, $count, $show = FALSE) {
  11. if($show) $word = "{$count} {$word}";
  12. return $word . (($count != 1) ? 's' : '');
  13. }
Advertisement
Add Comment
Please, Sign In to add comment