Split text up into 140 char array for twitter


/ Published in: PHP
Save to your folder(s)

split_to_chunks splits the string up into an array with elements containing 140 characters <b>or less</b>. This enables you to keep words intact when sending automated twitter messages.

$to is needed in order to subtract from 140 the amount of characters allowed. This is important because a long username could create problems with messages being too long. This could be done pragmatically, and would be relatively simple to do, but was not needed in my case and so was not implemented.

$text contains a string containing any amount of characters - including under 140.

$message is an array which gives the message <b>minus</b> the username at the front.

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.