That is my code:
preg_match('/\<span id\="([a-zA-Z0-9\s]+?)\"\>([a-zA-Z0-9\s]+?)\<\/span\>/', '<span id="1">test</span> <span id="2">test1</span>', $match);
var_dump($match);
But why in $match array have only id=1 and test?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I believe you are looking for preg_match_all.