randall Posted April 7, 2012 Share Posted April 7, 2012 Hey folks! Happy what ever you are celebrating I am trying to limit the number of characters to 200 that this array echos. I have tried a few things... I have tried using "substr($arr_tem, 0, 200)" but obviously it is not working... but I think I am close-ish. Any assistance would be great! ###print array### echo (implode(", ", array_keys($arr_tem))); Thanks! Link to comment https://forums.phpfreaks.com/topic/260520-limit-number-of-characters-to-200-array/ Share on other sites More sharing options...
smerny Posted April 7, 2012 Share Posted April 7, 2012 cant substr the array, but you can substr the outcome of the implode. ###print array### echo substr(implode(", ", array_keys($arr_tem)),0,200); Link to comment https://forums.phpfreaks.com/topic/260520-limit-number-of-characters-to-200-array/#findComment-1335258 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.