how to make long string shorter
Is there a php function that can make long string shorter, for example take only first 10 characters and delete the rest?
Or I will have to make my own function - maybe explode string into array and then take first 10 characters and convert them back to string.