<?php
	$subject = 'Hello World, this is a Test. $i = 1, $sString = "Test"';
    preg_match_all('/[$]\w+/', $subject, $matches);
	print_r($matches);
?>