PHP 8.6.0 Beta 1 is available for testing

Voting

: max(nine, six)?
(Example: nine)

The Note You're Voting On

kirilatpillaxdotcom
14 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