-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexemplo9.php
33 lines (27 loc) · 931 Bytes
/
exemplo9.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exemplo de PHP com HTML</title>
</head>
<body>
<h1>Manipulação de Strings e Data</h1>
<?php
// String de exemplo
$texto = "Oi, Mundo!";
// Exibindo o comprimento da string
$comprimento = strlen($texto);
echo "<p>Comprimento da string: $comprimento</p>";
// Convertendo a string para minúsculas
$minusculas = strtolower($texto);
echo "<p>String em minúsculas: $minusculas</p>";
// Convertendo a string para maiúsculas
$maiusculas = strtoupper($texto);
echo "<p>String em maiúsculas: $maiusculas</p>";
// Substituindo parte da string
$nova_string = str_replace("Mundo", "Planeta", $texto);
echo "<p>String com substituição: $nova_string</p>";
?>
</body>
</html>