php 分割字符串为140个字符的简单示例

前端之家收集整理的这篇文章主要介绍了php 分割字符串为140个字符的简单示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
PHP切分字符串为140个字符感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编两巴掌来看看吧!

/**
 * 切分字符串为140个字符
 *
 * @param 
 * @arrange 512-笔记网: jb51.cc
 **/
function split_to_chunks($to,$text){
	$total_length = (140 - strlen($to));
	$text_arr = explode(" ",$text);
	$i=0;
	$message[0]="";
	foreach ($text_arr as $word){
	if ( strlen($message[$i] . $word . ' ') <= $total_length ){
	if ($text_arr[count($text_arr)-1] == $word){
	$message[$i] .= $word;
	} else {
	$message[$i] .= $word . ' ';
	}
	} else {
	$i++;
	if ($text_arr[count($text_arr)-1] == $word){
	$message[$i] = $word;
	} else {
	$message[$i] = $word . ' ';
	}
	}
	}
	return $message;
}
/***   来自编程之家 jb51.cc(jb51.cc)   ***/
原文链接:https://www.f2er.com/php/528233.html

猜你在找的PHP相关文章