Это, я полагаю, то, что вы ищете:
<?php
//asuming that $sentence is the <User1> input
$sentence='!say Hello!';
if (substr($sentence,0,4)=='!say'){ //4 is the length of the string !say
echo ltrim(substr($sentence,4)); //4 is the length of the string !say
}
?>
Конечно, вы можете добавить столько раз, сколько вам нужно, просто нужно изменить длину проанализированных символов.1004 *