Strings Php

    $a = "UPPERCASE";
    echo (int) ereg ('uppercase', $a);
    echo "\n";
    echo (int) eregi ('uppercase', $a);
    echo "\n";
?>