Strings Php

Its syntax is: string strtolower (string string)
    $sentence = "COOKING";
    $sentence = strtolower($sentence);
    print $sentence;
?>