Results 1 to 10 of 14
-
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!
-
10th Nov 2010, 04:43 AM #2MemberWebsite's:
WRZhost.com WExplain.comecho "too wasted to use this";
Any questions? Want to make money?My Online Marketing Forum
WRZhost offshore hosting! Still the best offshore hosting after 7 years! Hongkong,Russia,NL,Germany
-
10th Nov 2010, 02:58 PM #3Just Another Coder
Output??
-
10th Nov 2010, 02:59 PM #4OP(╯?□?)╯︵ ┻━┻Website's:
Xenu.ws WarezLinkers.com SerialSurf.com CracksDirect.comOutput:
string(117) "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"
string(118) "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."
string(18) "so its like 4:3..."
string(49) "so its like 4:30am here and i figured id throw..."Projects:
WCDDL - The Professional DDL Script
Top Secret Project: In Development - ZOMG
ImgTrack - Never Have Dead Images Again!
-
10th Nov 2010, 03:00 PM #5Just Another Coder
yea exactly thats what i said in the chatbox!! Atlast i got something to learn now here in php... awesome JmZ
-
10th Nov 2010, 03:52 PM #6Respected DeveloperWebsite's:
wrzc.orgIt's a nice and simple class. Useful and slightly more efficient to what I currently have.
This sorta work deserves the coder rankTutorial How to SEO your Warez Site a guide to help you increase your organic traffic
Huge list of Warez Sites and free Multiposter Templates
-
10th Nov 2010, 03:53 PM #7BannedWebsite's:
KWWHunction.comI agree JmZ should be a coder
for this type of work
-
10th Nov 2010, 04:00 PM #8MemberWebsite's:
servedome.com
-
10th Nov 2010, 04:03 PM #9Member
he was respected coder before
-
10th Nov 2010, 04:10 PM #10BannedWebsite's:
WarezRelease.org ThatHosting.coHe was a coder, if i recall correct btw he wasted it by being dis-respectful to staff an members in cb...
So jus cos he posted some smart ass php code, doesnt mean he deserves it bk.
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...