在php中从左边读取字符串组合

时间:2018-01-14 05:01:40

标签: php

我需要读取String并返回字符组合。喜欢搜索引擎。

示例:"印度" 回归:我,         在,         工业,         INDI,         印度,

$string = 'India';
for ($i=0; $i < strlen($string); $i++){
echo '<pre>';echo $string{$i};echo '</pre>';}

1 个答案:

答案 0 :(得分:1)

您可以使用substr

$string = 'India'; 
for ($i=0; $i <= strlen($string); $i++) 
{ 
    echo '<pre>'; 
    echo substr ($string,0,$i);
    echo '</pre>'; 

} 

输出:

I
In
Ind
Indi
India