<?php

$find = "website scripting @";
$string =  "PHP is the website scripting @ language of choice.";

if (preg_match("/(?<!\\w)" . preg_quote($find) . "(?!\\w)/i", $string)) {
    echo "A match was found.";
} else {
    echo "A match was not found.";
}