<no-ext-contact:identity type=\"Number\">
";
$clientFields = Client::find($userID)->customFieldValues;
foreach($clientFields AS $field)
{
if (isset($field->customField->fieldName)
and $field->customField->fieldName == "CustomFieldName")
{
$xml .=
$field->customField->value; // Add ID to XML
}
else
{
return ["error" => "Some Error Message"];
}
}
$xml ="
</no-ext-contact:identity>
在xml部分之间生成并发生错误分析错误:从数据库中获取值时,文档末尾的额外内容。
当我删除并拥有一个数字时,一切正常。所以我的问题是从数据库获取值时xml是否添加或生成任何东西?还是应该换个包装才能使用?不能把我的头缠在这上面。请指教。