我有以下字符串:
"Test, User" < test@test.com >, "Another, Test" < another@test.com >, .........
Run Code Online (Sandbox Code Playgroud)
我想要以下结果:
array(
array('name' => 'Test, User', 'email' => 'test@test.com'),
array('name' => 'Another, Test', 'email' => 'another@test.com'),
...........
)
Run Code Online (Sandbox Code Playgroud)