we have that string:
\"I like to eat apple\"
How can I obtain the result \"apple\" ?
\"apple\"
$str = 'I like to eat apple'; echo substr($str, strrpos($str, ' ') + 1); // apple