is there is some function that can take just text inside the quotes from the variable?
Just like:
$text = 'I am "pro"';
echo just_text_in_quotes($text);
I know that this function doesn’t exist.. but I need something like that.
I was thinking about fnmatch("*",$text)
But this cant Echo just that text, It’s just for check.
Can you please help me?
Thank you.
This function will return the first matched text between quotes (possibly an empty string).
You could modify it to return an array of all matches, but in your example you use it within the context of
echoing its returned value. Had it returned an array, all you would get isArray.You may be better off writing a more generic function that can handle multiple occurrences and a custom delimiter.
This will return
nullif no matches were found.