Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
echo preg_match_all('/de_dust\b/', $text, $match);
$text = 'de_dust2 de_dust';
echo substr_count($text, 'de_dust');
вернет 2 т.к. substr_count Возвращает число вхождений подстроки, а здесь надо считать точно
[COLOR=#000000][COLOR=#0000bb]$text [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#dd0000]'de_dust2 de_dust '[/COLOR][COLOR=#007700];
echo [/COLOR][COLOR=#0000bb]substr_count[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000bb]$text[/COLOR][COLOR=#007700], [/COLOR][COLOR=#dd0000]'de_dust '[/COLOR][COLOR=#007700]);[/COLOR][/COLOR]
$text = 'de_dust2 de_dust ';
echo substr_count($text, 'de_dust ');
de_dust<br>
de_dust<pre>