PHP:在长度700和之后将字符串拆分为2。 (期)

时间:2012-07-04 03:41:29

标签: php

我似乎无法找到解决PHP问题的最佳方法。我想完成以下

  1. 我得到一个字符串,即。 lenght中的1000个字符
  2. 我想将字符串拆分为2。
  3. 根据以下条件,第一个字符串必须为600个字符: a)字符串只应在一段时间后拆分
  4. 字符串的第二部分可以是余数。
  5. 我知道如何检查字符串strlen($string)的长度,我知道如何使用ie将字符串分解为子字符串。 explode()。但是,我不确定如何把所有东西放在一起。

3 个答案:

答案 0 :(得分:1)

  1. 使用substr()从原始字符串中删除600个字符后的所有内容。
  2. 对生成的子字符串执行strpos()以查找第一个.
  3. 使用pos + 600在原始字符串上执行substr并将该位置用作分割点。

答案 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 );