Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php $replace = array("1: AAA","2: AAA","3: AAA"); // Remplacez AAA dans chaque chaîne par BBB echo implode("<br>",substr_replace($replace,'BBB',3,3)); ?> </body> </html>
1: BBB
2: BBB
3: BBB