Regular expression in PHP to fetch the text quoted inside with "{{ }}" in an array.
For eg:
$str = "This is sample content with a dynamic value {{value1}} and also have more dynamic values {{value2}}, {{value3}}";
Need output as like below array,
array(value1,value2,value3);