gpt4 book ai didi

java - php 将原始输入传递给变量

转载 作者:行者123 更新时间:2023-12-02 06:03:59 27 4
gpt4 key购买 nike

考虑这段Java代码我需要在 php 中执行此操作

String SEPARATOR = "S39Er@T0R";
String input = "someS39Er@T0RDataS39Er@T0Rhere";
String[] val = input.split(SEPERATOR);
for (int i = 0; i < val.length; i++) {

}

我需要存储从 file_get_contents('php://input') 收到的数据返回原始帖子然后我需要从该字符串中分割并运行 for 循环任何人都可以建议如何在 php 中实现相同的代码吗?

最佳答案

这些的组合非常简单:

$separator = 'S39Er@T0R';
$postData = file_get_contents('php://input');
$splitPostData = explode($separator, $postData);
foreach($splitPostData as $postDataItem)
{
// do something with $postDataItem
}

关于java - php 将原始输入传递给变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22440265/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com