FormatTwitterPostsCode

From MWWiki

Jump to: navigation, search

Back to Main Project Page

<?php
 
class Format {
 
        public static function formatPost($content) {
                return Format::firstOrder($content);
        }
 
        private static function firstOrder($content) {
                return '_START_ ' .
                        trim(str_replace("\n", "", $content)) .
                        ' _STOP_' . "\n";
        }
}
 
?>
Personal tools