MD5 (PHP 4, PHP 5, PHP 7, PHP 8) MD5 Hitung hash md5 dari string

<?php
$str = 'apple';

if (md5($str) === '1f3870be274f6c49b3e31a0c6728957f') {
    echo "Would you like a green or red apple?";
}
?>
SAMER SAEID