PHP初心者です。各タグを変数に設定して、長い XML ファイルを解析しています。要素のタグが空の場合、値「N/A」を割り当てたい
私の現在のアプローチよりもこれを行うためのより簡潔な方法があるかどうか疑問に思っています:
$elements = array()
$propertyOwner = $report->PropertyProfile->PrimaryOwnerName[0];
array[] = $propertyOwner;
$propertyAddress = $report->PropertyProfile->SiteAddress[0];
array[] = $propertyAddress;
...
for($i=0; $i<count($elements); $i++) {
if (array[i] === '') {
array[i] = 'N/A');
}
}