Search Results

  1. lcfirst (PHP 5 >= 5.3.0, PHP 7, PHP 8) lcfirst — Make a string's first character lowercase

  2. The lcfirst () function converts the first character of a string to lowercase. Related functions: ucfirst () - converts the first character of a string to uppercase ucwords () - converts the first character of each word in a string to uppercase strtoupper () - converts a string to uppercase strtolower () - converts a string to lowercase

  3. Jul 11, 2025 · The lcfirst () function is a built-in function in PHP which takes a string as an argument and returns the string with the first character in Lower Case and all other characters remain unchanged.

  4. The PHP lcfirst() function is used to convert the first character of a given string to lowercase. The term "lowercase" refers to small letter characters such as a, b, c ....z. This function will only convert the first character of the first word in

  5. PHP lcfirst () Function Topic: PHP String Reference Prev | Next Description The lcfirst() function converts the first character of a string to lowercase. The following table summarizes the technical details of this function.

    • Returns the modified string.
    • PHP 5.3.0+
  6. The lcfirst function converts the first character of a string to lowercase. Example: echo lcfirst ('Abcde') outputs 'abcde'.

  7. Well organized and easy to understand Web building tutorials with lots of examples of how to use HTML, CSS, JavaScript, SQL, PHP, Python, Bootstrap, Java and XML.