Answers for "minuscule chaine php"

PHP
0

minuscule chaine php

<?php
$str = "Marie A un Petit Agneau, et l'aime TRès fORt.";
$str = strtolower($str);
echo $str; // marie a un petit agneau, et l'aime très fort.
?>
Posted by: Guest on March-22-2022

Browse Popular Code Answers by Language