string_hebrev function

<html>
<title> string_hebrev.php</title>
<body bgcolor="#E7F2F5" text="#000080">
<?php
//ê"ðúä ìù óãä
$hebrew = "ê ðúä ìù óãä";
echo "-Before hebrev() ---<br/>", $hebrew, "\n\n";
echo "<br/>- After hebrev() -----<br/>";
foreach(explode("\n", hebrev($hebrew, 20)) as $line)
{
// Use printf to right-align the text
//printf('%20s', $line);
echo" $line";
}
?>

</body>
</html>