Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- buka twitter.php terus cari kode ini.
- function pluralise($word, $count, $show = FALSE) {
- if($show) $word = number_format($count) . " {$word}";
- return $word . (($count != 1) ? 's' : '');
- }
- terus ganti jadi begini.
- function pluralise($word, $count, $show = FALSE) {
- if($show) $word = "{$count} {$word}";
- return $word . (($count != 1) ? 's' : '');
- }
Advertisement
Add Comment
Please, Sign In to add comment