I get a response from a source in the string as
page <a href="${CLICK_URL}" target="_top">site not active</a>
I need to extract this data to an array as:
Array
(
[0] => page
[1] => ${CLICK_URL}
[2] => _top
[3] => >site not active
)
I have clue to use preg_split() function. Please help...