0 Comentários
0 Compartilhamentos
9K Visualizações
0 Anterior
Pesquisar
Conheça novas pessoas, crie conexões e faça novos amigos
-
Faça Login para curtir, compartilhar e comentar!
-
PHP - Modify StringsPHP 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 9K Visualizações 0 Anterior
-
PHP - Slicing StringsSlicing You can return a range of characters by using the substr() function. Specify the start index and the number of characters you want to return. ExampleGet your own PHP Server Start the slice at index 6 and end the slice 5 positions later: $x = "Hello World!"; echo substr($x, 6, 5); Try it Yourself » Note The first character has index 0. Slice to the...