PHP References

PHP ucwords() Function

what is the syntax of the UCWORDS() function in php? Parameter Description string Required. Specifies the string to convert delimiters Optional. Specifies the word separator character PHP UCWORDS() method examples of the UCWORDS() function Example 1. In this example, we convert the first character of each word to uppercase. Example 2. In this example, we …

PHP ucwords() Function Read More »

PHP ucfirst() Function

what is the syntax of the UCFIRST() function in php? Parameter Description string Required. Specifies the string to convert PHP UCFIRST() method examples of the UCFIRST() function Example 1. In this example, we convert the first character of “hello” to uppercase.

PHP trim() Function

what is the syntax of the TRIM() function in php? Parameter Description string Required. Specifies the string to check charlist Optional. Specifies which characters to remove from the string. If omitted, all of the following characters are removed:”\0″ – NULL”\t” – tab”\n” – new line”\x0B” – vertical tab”\r” – carriage return” ” – ordinary white …

PHP trim() Function Read More »

PHP strtr() Function

what is the syntax of the STRTR() function in php? Parameter Description string Required. Specifies the string to translate from Required (unless array is used). Specifies what characters to change to Required (unless array is used). Specifies what characters to change into array Required (unless to and from is used). An array containing what to …

PHP strtr() Function Read More »

PHP strtoupper() Function

what is the syntax of the STRTOUPPER() function in php? Parameter Description string Required. Specifies the string to convert PHP STRTOUPPER() method examples of the STRTOUPPER() function Example 1. In this example, we convert all characters to uppercase.

PHP strtolower() Function

what is the syntax of the STRTOLOWER() function in php? Parameter Description string Required. Specifies the string to convert PHP STRTOLOWER() method examples of the STRTOLOWER() function Example 1. In this example, we convert all characters to lowercase.

en English
X
Scroll to Top