我需要读取String并返回字符组合。喜欢搜索引擎。
示例:"印度" 回归:我, 在, 工业, INDI, 印度,
$string = 'India';
for ($i=0; $i < strlen($string); $i++){
echo '<pre>';echo $string{$i};echo '</pre>';}
答案 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