PHP 相当于 Perl 系列吗?
有人能告诉我我的说法是否正确吗?我正在尝试移植一个相当大的 perl 脚本转换为 OO-PHP,并且一直卡在一些事情上,这就是其中之一 如果我做得正确,只需要一些确认,perl 代码是:
my ($command,@args)=split(/\n/,$message);
这与在 PHP 中执行此操作相同吗?
list($command, $args[]) = preg_split('/\n/', $message);
Can someone tell me if I'm right with this? I'm trying to port a fairly massive
perl script into OO-PHP, and have been stuck on a few things, this is one of them
and just need some confirmation if I'm doing it right, the perl code is:
my ($command,@args)=split(/\n/,$message);
is this the same as doing this in PHP?
list($command, $args[]) = preg_split('/\n/', $message);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您尝试做的事情是无效的并且不会起作用。等效的 PHP 代码为:
仅在必要时才应使用
preg_
函数,因此您实际上可以将preg_split
替换为:No. What you're trying to do is invalid and will not work. The equivalent PHP code would be:
The use of
preg_
functions should be only used when necessary, so you could actually replace thepreg_split
with: