I tried to load a html file with values to replace, but first i want to get all of them... but preg_match_all always return NULL.
The result of "var_dump($htmlcontent);
" :
string(643) "<tr>
<td>
<input type="checkbox" name="solved" value="1" onchange="...">
</td>
<td>{{description}}</td>
<td>{{solved}}</td>
<td>
[...]
And:
$bla = preg_match_all( '\{\{(\w+)\}\}', 'bla {{ble}}', $dataToFill);
var_dump($bla); // bool(false)
var_dump($dataToFill); //NULL
and I don't know by. The regular expression works in all the online testers I tried, so, what's happends?