<?php
function endsWith( $haystack, $needle ) {
$length = strlen( $needle );
if( !$length ) {
return true;
}
return substr( $haystack, -$length ) === $needle;
}
echo endsWith($_SERVER['SERVER_NAME'], 'pasutto.net')."<BR>";
highlight_file(__FILE__);
?>