そのサイトの下の方では、\ は付いていないから、気にしなくてよいのでは?

<?php

$haystack = 'how are you';
$needle = 'are';

if (strpos($haystack,$needle) !== false) {
echo "$haystack contains $needle";
}

?>