$source = "oasdfyoasdfyoasdfyoasdfy";
$startIndexes = {0, 6, 12, 18}; #(o characters)
$endIndexes = {5, 11, 17, 23}; #(y characters)
这些只是实际结构的示例。
如何使用 substr() 和 array[$x] 变量将 $source 分解为单个字符串?$startIndexes 和 $endIndexes 保证大小相同。
这似乎不起作用...
for($x = 0; $x < sizeOf($startIndexes); $x++)
{
echo substr($source, $startIndexes[$x], $endIndexes[$x] - $startIndexes[$x]) . '</br></br>';
}
我知道数组没有正确初始化,它们只是为了展示真实的样子。