我似乎无法找到解决PHP问题的最佳方法。我想完成以下
我知道如何检查字符串strlen($string)
的长度,我知道如何使用ie将字符串分解为子字符串。 explode()
。但是,我不确定如何把所有东西放在一起。
答案 0 :(得分:1)
.
答案 1 :(得分:1)
我用过,它的作品......你试过这个......
<?php
$app_title="HIOX INDIA.COM, a leading business web hosting company, is
currently involved in web services, software/application development, web content
development, web hosting, domain registration, internet solutions and web design.";
echo "<br>Before :".$app_title;
$length=100;
if(strlen($app_title) > $length) {
$app_title1 = substr($app_title, 0,strpos($app_title, ' ', $length));}
$app_title2=split ( $app_title1 , $app_title);
echo "<br><br>After1 :".$app_title1;
echo "<br><br>After2 :".$app_title2[1];
?>
答案 2 :(得分:0)
使用substr(),您可以获得定义初始位置和子字符串长度的字符串的一部分。例如:
获取前600个字符:
$first = substr ( $input , 0 , 600 );
获得剩下的:
$second = substr ( $input , 600 );