jaymc Posted October 10, 2007 Share Posted October 10, 2007 This will be really simple but I cant fine the function I thought word wrap could do it but obviously not.. or.. Anyway I want the end of a string off if it excedes a limit I pass to it here is an example $string = 123456789 I want to kill the string after 6 chars so my output would be 123456 I want 789 discarded. The numbers are an example, This needs to work with text (words including spaces as chars) Link to comment https://forums.phpfreaks.com/topic/72583-solved-cut-a-string/ Share on other sites More sharing options...
Barand Posted October 10, 2007 Share Posted October 10, 2007 substr ($str, 0, $limit); Link to comment https://forums.phpfreaks.com/topic/72583-solved-cut-a-string/#findComment-366025 Share on other sites More sharing options...
jaymc Posted October 10, 2007 Author Share Posted October 10, 2007 Perfect, thanks Link to comment https://forums.phpfreaks.com/topic/72583-solved-cut-a-string/#findComment-366032 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.