如果我有段落,我需要它將它分成3個相等部分(按字符)。將段落中的字符拆分爲3個相等部分,使用PHP
這是我的字符串
$string="this is my long text this is my long text this
is my long text this is my long text
this is my long text this is my
long text this is my long text this is my long text
this is my long text this is my long text";
我需要的是:
-
3個部分或第一部分
- 35%,在第2部分的35%,並在第三部分30%
- 平等字符( 3部分 - 按字符而不是字或字符串)
任何專家?
你試過實現一個自己的解決方案? –
**空格**將被考慮與否? –
使用** chunk_split **。 – Dave