有没有办法在FedEx API中合并运输标签或将另一个运输标签附加到另一个?我尝试过以下但没有成功
//Create the shipping label in the provided file SHIP_LABEL
$label= $response->CompletedShipmentDetail->CompletedPackageDetails->Label->Parts->Image;
$fp = fopen(SHIP_LABEL, 'wb');
fwrite($fp, $label);
fclose($fp);
//Append the second shipping label
$label2= $response2->CompletedShipmentDetail->CompletedPackageDetails->Label->Parts->Image;
$fp = fopen(SHIP_LABEL, 'a');
fwrite($fp, $label2);
fclose($fp);
我们不需要存储标签,除了用于创建跟随主跟踪号码的儿童标签。如果我可以使用类似上述方法的东西,我可以立即制作它们并且仍然只使用1 pdf我可以覆盖每次我们创建新标签