Current Location: Home> Function Categories> hebrev

hebrev

Convert logical-Hebrew to visual-Hebrew
Name:hebrev
Category:String
Programming Language:php
One-line Description:Convert Hebrew text to visible text.

Definition and usage

hebrev() function converts Hebrew text from right to left to left stream.

Tip: hebrev() and hebrevc() can convert Hebrew logical text (Windows encoding) into Hebrew visible text. Hebrew visible text does not require special right-to-left character support, which makes it useful for displaying Hebrew text on the Web.

Example

Show Hebrew characters in reverse:

 <?php
echo hebrev ( "? ?????????" ) ;
?>

Try it yourself

grammar

 hebrev ( string , maxcharline )
parameter describe
string Required. Hebrew text.
maxcharline Optional. Specifies the maximum number of characters per line. If possible, hebrev() will avoid breaking the word.
Similar Functions
  • Return information about the words used in the string str_word_count

    str_word_count

    Returninformationabo
  • Returns the formatted string sprintf

    sprintf

    Returnstheformatteds
  • Convert binary data to hexadecimal representation bin2hex

    bin2hex

    Convertbinarydatatoh
  • Binary safe string comparison strcmp

    strcmp

    Binarysafestringcomp
  • Alias ​​of rtrim chop

    chop

    Alias​​ofrtrim
  • Format numbers into currency strings money_format

    money_format

    Formatnumbersintocur
  • Output one or more strings echo

    echo

    Outputoneormorestrin
  • Output formatted string vprintf

    vprintf

    Outputformattedstrin
Popular Articles