You could use explode(), though if the string truly represents two separate data items, why not send it as two variable/value pairs?
page.php?id=test&image=sun.jpg
Then there would be two $GET values:
echo $_GET['id']; // outputs "test"
echo $_GET['image']; // outputs "sun.jpg"