| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| NamePros Regular Join Date: Sep 2006
Posts: 449
![]() ![]() ![]() | PHP Help I have a PHP script that pulls a .txt file and displays the results for me. I need the scipt to limit the number of letters it shows to me to not more than 15 letters, but not 15 letters exactly. Can someone show me a code example on how to do this please? Thanks! |
| | |
| | #2 (permalink) |
| Your face is regfee! Join Date: May 2008 Location: Oregon
Posts: 1,069
![]() ![]() ![]() ![]() ![]() ![]() ![]() | What do you mean exactly? Why not always show 15 characters? In which cases do you want it to show less than 15?
__________________ Looking for fantasy hockey owners to begin the new season on ESPN. Deep league with lots of owners and a very high % of keepers (dynasty league). Looking for active owners because this league will continue year after year. My homepage | I miss my dog - Athena |
| | |
| | THREAD STARTER #5 (permalink) | ||||
| NamePros Regular Join Date: Sep 2006
Posts: 449
![]() ![]() ![]() |
????: NamePros.com http://www.namepros.com/programming/679540-php-help.html Here is the line that I think needs to be edited. $length = (strlen($length) > 0) ? $length : null; | ||||
| | |
| | #7 (permalink) |
| NamePros Regular Join Date: Apr 2006
Posts: 360
![]() ![]() ![]() ![]() | If your using this in a loop of strings below will allow anything greater then 0 characters and less then 15 characters Code: $length = (strlen($length) > 0 AND strlen($length) <= 15) ? $length : null;
__________________ Canadian Domain Registrar Ready.ca |
| | |
| | #8 (permalink) |
| New Member Join Date: Nov 2010
Posts: 5
![]() | I think you want just 1-15 letters. Then you should try the following code. $length = (strlen($length) >= 1 AND strlen($length) <= 15) ? $length : null; I hope after using this code, you will solve your problem. Thank you.
__________________ Toshiba coupon code |
| | |