im using php
if i have an uknown length of a string being outputted how can i limit it to only 16 characters to be outputted?
|
im using php if i have an uknown length of a string being outputted how can i limit it to only 16 characters to be outputted? |
|||
|
|
|
the function is called substr.
so:
should do it. |
|||
|
|
|
The above methods, mentioning |
||||
|
|
|
I personally like this one if it is a blog or something:
This way it won't truncate the string if its below 16 characters. Otherwise, it will add an ellipsis. |
||||
|
|
|
Could you provide the code that you're using now? I'm going to go off the basis that you have a function returning a string of an unknown length. All you have to do is use the substr function.
|
|||
|
|
|
|||
|
|
|
You can use substr function like this.
|
||||
|
|