php 将字符串拆成逗号分隔,PHP字符串拆分

我需要将一个字符串拆分为2,2,3,3个字符的块,并且能够通过使用unpack在Perl中执行此操作:

unpack("A2A2A3A3", 'thisisloremipsum');

但是同样的功能在PHP中不起作用,它给出了这个输出:

Array

(

[A2A3A3] => th

)

我怎么能通过使用unpack来做到这一点?我不想为它编写一个函数,应该可以解压但是如何?

提前致谢,

解决方法:

引用unpack的手册页:

unpack() works slightly different

from Perl as the unpacked data is

stored in an associative array.

To accomplish this you have to

name the different format codes and separate them by a slash /.

这意味着,使用这样的东西:

$a = unpack("A2first/A2second/A3third/A3fourth", 'thisisloremipsum');

var_dump($a);

您将获得以下输出:

array

'first' => string 'th' (length=2)

'second' => string 'is' (length=2)

'third' => string 'isl' (length=3)

'fourth' => string 'ore' (length=3)

标签:unpack,php,split

来源: https://codeday.me/bug/20190827/1741076.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值