$Arr = explode(',', str_replace('\'', NULL, $Data));
Though this means a literal single quote will not be allowed as part of the string.
If you are in control of how $Data is generated, don't add quotes around the stringed values so that you can simply use [man]explode[/man].