PHP - Modify Strings
PHP has a set of built-in functions that you can use to modify strings. Upper Case ExampleGet your own PHP Server The strtoupper() function returns the string in upper case: $x = "Hello World!"; echo strtoupper($x); Try it Yourself » Lower Case Example The strtolower() function returns the string in lower case: $x = "Hello World!"; echo...
0 Comentários 0 Compartilhamentos 3K Visualizações 0 Anterior
Patrocinado