• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • ldap_8859_to_t61()

    (PHP 4 >= 4.0.2, PHP 5, PHP 7)

    Translate 8859 characters to t61 characters

    说明

    ldap_8859_to_t61(string $value): string

    TranslateISO-8859characters tot61characters.

    This function is useful if you have to talk to a legacyLDAPv2server.

    参数

    $value

    The text to be translated.

    返回值

    Return thet61translation of$value.

    参见

    Description:
    ldap_8859_to_t61() assists in the conversion of strings between ISO 8859-1 and t61 encodings. If the string cannot be converted successfully, the function returns FALSE. 
    Example:
    $converted = ldap_8859_to_t61($data);
    echo $converted;

    下篇:ldap_add_ext()