What I\'m trying to find out is which php function allows me to remove double quotes from the beginning and end of a text string if they exist
Trim is your friend:
trim($string,'"');