當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Zend_Ldap_Converter::hex32ToAsc方法代碼示例

本文整理匯總了PHP中Zend_Ldap_Converter::hex32ToAsc方法的典型用法代碼示例。如果您正苦於以下問題:PHP Zend_Ldap_Converter::hex32ToAsc方法的具體用法?PHP Zend_Ldap_Converter::hex32ToAsc怎麽用?PHP Zend_Ldap_Converter::hex32ToAsc使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Zend_Ldap_Converter的用法示例。


在下文中一共展示了Zend_Ldap_Converter::hex32ToAsc方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testHex2asc

 public function testHex2asc()
 {
     $expected = '';
     for ($i = 0; $i < 127; $i++) {
         $expected .= chr($i);
     }
     $str = '\\00\\01\\02\\03\\04\\05\\06\\07\\08\\09\\0a\\0b\\0c\\0d\\0e\\0f\\10\\11\\12\\13\\14\\15\\16\\17\\18\\19\\1a\\1b' . '\\1c\\1d\\1e\\1f !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefg' . 'hijklmnopqrstuvwxyz{|}~';
     $this->assertEquals($expected, Zend_Ldap_Converter::hex32ToAsc($str));
 }
開發者ID:jsnshrmn,項目名稱:Suma,代碼行數:9,代碼來源:ConverterTest.php

示例2: unescapeValue

 /**
  * Undoes the conversion done by {@link escapeValue()}.
  *
  * Any escape sequence starting with a baskslash - hexpair or special character -
  * will be transformed back to the corresponding character.
  * @see Net_LDAP2_Util::escape_dn_value() from Benedikt Hallinger <beni@php.net>
  * @link http://pear.php.net/package/Net_LDAP2
  * @author Benedikt Hallinger <beni@php.net>
  *
  * @param  string|array $values Array of DN Values
  * @return array Same as $values, but unescaped
  */
 public static function unescapeValue($values = array())
 {
     /**
      * @see Zend_Ldap_Converter
      */
     require_once 'Zend/Ldap/Converter.php';
     if (!is_array($values)) {
         $values = array($values);
     }
     foreach ($values as $key => $val) {
         // strip slashes from special chars
         $val = str_replace(array('\\\\', '\\,', '\\+', '\\"', '\\<', '\\>', '\\;', '\\#', '\\='), array('\\', ',', '+', '"', '<', '>', ';', '#', '='), $val);
         $values[$key] = Zend_Ldap_Converter::hex32ToAsc($val);
     }
     return count($values) == 1 ? $values[0] : $values;
 }
開發者ID:conectapb,項目名稱:sysagroweb,代碼行數:28,代碼來源:Dn.php

示例3: unescapeValue

 /**
  * Undoes the conversion done by {@link escapeValue()}.
  *
  * Converts any sequences of a backslash followed by two hex digits into the corresponding character.
  * @see Net_LDAP2_Util::escape_filter_value() from Benedikt Hallinger <beni@php.net>
  * @link http://pear.php.net/package/Net_LDAP2
  * @author Benedikt Hallinger <beni@php.net>
  *
  * @param  string|array $values Array of values to escape
  * @return array Array $values, but unescaped
  */
 public static function unescapeValue($values = array())
 {
     /**
      * @see Zend_Ldap_Converter
      */
     require_once 'Zend/Ldap/Converter.php';
     if (!is_array($values)) {
         $values = array($values);
     }
     foreach ($values as $key => $value) {
         // Translate hex code into ascii
         $values[$key] = Zend_Ldap_Converter::hex32ToAsc($value);
     }
     return count($values) == 1 ? $values[0] : $values;
 }
開發者ID:ramonornela,項目名稱:Zebra,代碼行數:26,代碼來源:Abstract.php


注:本文中的Zend_Ldap_Converter::hex32ToAsc方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。