Mengganti Data Array dengan str_replace

PHP (array.php)

<html>
<head><title>Belajar Array</title>
</head>
<body>

<?php
$sebelum="Orang suka MENEMBAKI cucunya sendiri";
$sesudah=str_replace("MENEMBAKI","MEMELUK", $sebelum);
echo "Sebelum : $sebelum <br>";
echo "Sesudah : $sesudah";
?></body>
</html>

Tidak ada komentar:

Posting Komentar

Leave a message