PHP 8.5.0 Alpha 1 available for testing

Voting

: five minus three?
(Example: nine)

The Note You're Voting On

kirilatpillaxdotcom
12 years ago
To highlight words in multi-byte text:

<?php
$s
= 'Алабала';
$f = 'а';
echo
preg_replace('/('.$f.')/iu', '<b>$1</b>', $s);
?>

<< Back to user notes page

To Top