作为下面的示例,有一个内容包含多个等号。PHP函数应该如何将所有等号解析为一个数组,其中键是等号之前的文本,值在它之后?
Lorem ipsum id="the id" dolor sit amet, consectetur name="the name" adipisicing elit, sed do type="the type" eiusmod tempor incididunt ut labore et dolore magna aliqua。
结果将是这样的:
Array (
[id] => the id
[name] => the name
[type] => the type
)