In the PHP.net docs you will see preg_match_all is used by calling the function with the specified arguments:
int preg_match_all ( string $pattern , string $subject [, array &$matches [, int $flags = PREG_PATTERN_ORDER [, int $offset = 0 ]]] )
The first argument, the pattern, is how you capture the information from the next argument, the subject.
The subject is the text you wish you match. It will be your string of information that you specified... 'This Fee Name : ... etc'
The third argument is a new array in which you are going to store your results.
However there is a fundamental flaw in the way you would like to parse your string using regular expressions. You have no common delimiters that separate your "values" from your "keys".
If I were you, in this situation, I would just use explode().
Try this:
$string = "This Fee Name : * Fee Id * Fee Amount $* is required for this activity";
$name = explode("This Fee Name :", $string, 2);
$name = $name[1];
$id = explode("Fee Id", $string, 2);
$id = $id[1];
$amount = explode("\$", $string, 2);
$amount = explode(" ", $amount[1], 2);
$amount = $amount[0];
echo "$name";
echo "$id";
echo "$amount";
I haven't tested any of this and haven't used PHP in a few months but hey, give it a try!