<?php $sString = 'Ceci est un test, nous allons compter combien de fois le mot test apparait dans ceci est un test'; $sOcc = 'test'; $iCpt = substr_count ($sString, $sOcc); echo $iCpt; ?>