Results 1 to 10 of 14
Threaded View
-
10th Nov 2010, 04:33 AM #1OP(╯?□?)╯︵ ┻━┻Website's:
Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.com04:33 10/11/2010
Code:<?php class JString { private $string = ""; public function __construct($str) { $this->string = $str; } public function uri($sep='-') { return trim(preg_replace('#[^\w\-]+#', $sep, $this->string), $sep); } public function uc() { return ucwords($this->string); } public function truncate($len=15) { return strlen($this->string) > $len ? substr($this->string, 0, $len) . '...' : $this->string; } public function advtrunc($words=10, $len=NULL) { if(strpos($this->string, ' ') === false) { if(empty($len)) return $this->string; else return strlen($this->string) > $len ? substr($this->string, 0, $len) . '...' : $this->string; } if(str_word_count($this->string) <= $words) return $this->string; $estring = explode(' ', $this->string); return implode(' ', array_slice($estring, 0, $words)) . '...'; } } // Testing echo '<pre>'; $jmz = new JString('so its like 4:30am here and i figured id throw up some random code for the public for once, who knows who will use it.'); var_dump($jmz->uri()); var_dump($jmz->uc()); var_dump($jmz->truncate()); var_dump($jmz->advtrunc()); echo '</pre>'; ?>
EDIT:
FYI...
uri() - Format the string so it is safe for use in an SEO URI
uc() - Upper case the first letter of each word
truncate() - ... the string if it is too long
advtrunc() - ... the string and/or remove words if there are too many words or it is too long
JmZ Reviewed by JmZ on . 04:33 10/11/2010 <?php class JString { private $string = ""; public function __construct($str) { $this->string = $str; } public function uri($sep='-') { return trim(preg_replace('#+#', $sep, $this->string), $sep); Rating: 5Projects:
WCDDL - The Professional DDL Script
Top Secret Project: In Development - ZOMG
ImgTrack - Never Have Dead Images Again!
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Best Of 2010
By Mr.Bean in forum General DiscussionReplies: 23Last Post: 23rd Dec 2010, 09:31 AM -
Warezscene 2010
By FilipBonJovi in forum General DiscussionReplies: 58Last Post: 23rd Aug 2010, 08:26 PM -
R5 DVD Release Dates (May 2010 ? November 2010)
By xfernanx in forum News & Current EventsReplies: 16Last Post: 5th Jun 2010, 05:01 AM -
2010 sucks :/
By iKnow in forum General DiscussionReplies: 39Last Post: 7th Jan 2010, 07:04 AM -
[WTS]RapidShare- 22 Jan 2010
By RKing in forum Completed TransactionsReplies: 9Last Post: 10th Nov 2009, 01:45 PM
themaCreator - create posts from...
Version 3.45 released. Open older version (or...