所以我想找到最好的方法来做到这一点。我必须导入带有作业条目的XML feed并构建/更新多维数组。应定期导入此Feed并更新我现有的数组。 Feed可能具有更新的值以及已删除的条目。我查看了array_replace
函数,其中 替换了值,但没有删除不存在的条目。
以下是数组
的示例条目array(
["post_general"]=> array(
["ID"]=> 123
["post_content"]=> "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
["post_title"]=> "QA LEAD"
["post_type"]=> "job_listing"
["filter"]=> "raw"
)
["post_meta"]=> array(
["job_location"]=> "New York, NY"
["application"]=> "xxx://xxxxxx.xxx"
["job_expires"]=> "2017-01-11"
)
)
如果有任何不清楚的地方,请告诉我。我不太擅长解释事情:)