Tagged Questions

10
votes
3answers
6k views

Shorten Zend Framework Route Definitions

How can I shorten the definition of my custom routes in Zend Framework? I currently have this as definition: $route = new Zend_Controller_Router_Route( ":module/:id", array( "controller" => ...
5
votes
3answers
61 views

How to correctly make an utf8 string shorter in PHP

I have some strings in my PHP code that need to be shortened if they are too long. For example if a text is something like this: Hi, I would like to tell you how wonderful this is. It would ...
2
votes
5answers
395 views

javascript/php - shorten string to fit into a certain # of lines

I have a string that must fit into a box, and must be at most 3 lines long. To shorten it, I plan to truncate it and end it with '...'. I could shorten it to a certain # of characters but if i make it ...
1
vote
4answers
98 views

how to shorten code involving php and jquery

This code is very simple so I feel like it could be shortened by relating the php variable to the jquery function parameter. if you have any ideas, please help. thank you <script ...
1
vote
3answers
105 views

Is it possible to shorten text in javascript to a php get request?

I have a very specific situation where a javascript page creates a new window with a meta-refresh in it which goes to a php page which has 1 variable with everything that the javascript page has put ...
0
votes
2answers
32 views

Shortening text tweet-like without cutting links inside

I've got a string like this: I love @kevinrose 's new website <a href="http://kevinrose.com">Link</a> And I have this function: function short($string, $max = 255) { if ...
0
votes
1answer
132 views

Wordpress truncating titles

I have this working... but. <?php $thetitle = $post->post_title; /* or you can use get_the_title() */ $getlength = mb_strlen($thetitle); $thelength = 25; echo mb_substr($thetitle, 0, ...
0
votes
2answers
47 views

PHP Directory-specific Content and Redirects

I have this code $pageEx = explode("/", $_SERVER['PHP_SELF']); $pageLn = count($pageEx); $currentdir = $pageEx[$pageLn - 2]; switch($currentdir) { ...
0
votes
6answers
670 views

shorten a word in a block of text

I have a block of text which occasionally has a really long word/web address which breaks out of my site's layout. What is the best way to go through this block of text and shorten the words? ...
-1
votes
6answers
99 views

Shorten list of IF THEN statements from var1 to var20… PHP

I know this can be shortened and will come easy for someone. I'd like to use an expression to cut this down to a few lines. Each of these variables does hold a different value, and may or may not be ...