Forums: Front End:

 

PHP - limit string to a certain number of characters

first
 

WingNut PHP - limit string to a certain number of characters

if i have a string that is, say, over 20 characters, and i only want to display 15 characters, how do i do that?

i thought i was maybe str_pad, but that doesn't seem to work on shorter string lengths?

 

Technomancer



echo substr($my_long_string,0,15)


Everyone should believe in something
I believe I'll have another drink
quote
 

WingNut

beautious! thanks

 
first
 

Forums: Front End: PHP - limit string to a certain number of characters

 
New Post
 
You must be logged in to post