<?php

$string = 'Great @jason I think @sally would love it too.';
preg_match_all("/@\w+/", $string, $matches);

var_dump($matches);

?>