这是我在curl_exec之后得到的回复:
1043475015id.failureFAILresultcode.confirm.ageCan Not Confirm Agefalsefalseid.not.eligible.for.questions不符合条件
我想要的是我想将每个信息存储在php中的单独变量中,以便我可以进行一些检查并将值存储在数据库中。
答案 0 :(得分:0)
您可以使用正则表达式以单独的值获取文本,例如:
$d = "1043475015id.failureFAILresultcode.confirm.ageCan Not Confirm Agefalsefalseid.not.eligible.for.questionsNot Eligible For Questions";
$getText = preg_match('/(?<=confirm)\S+/i', $d, $matchText);
print_r($matchText);
你会得到:
Array ( [0] => .ageCan )
我们您可以根据需要从每个文本中创建尽可能多的变量。