PHP array character set encoding and conversion functions

Source: Internet
Author: User
PHP array character set encoding and conversion functions

  1. /**
  2. * Array to encoding
  3. * @ Param array $ array the array to be transcoded
  4. * @ Param String $ inCharset original encoding
  5. * @ Param String $ encoding after outCharset conversion
  6. * @ Return $ array the converted array
  7. * @ Site: bbs.it-home.org
  8. */
  9. Private function arrayCoding ($ array, $ inCharset, $ outCharset ){
  10. If (! Is_array ($ array ))
  11. Return false;
  12. Foreach ($ array as $ key =>&$ value ){
  13. If (is_array ($ value )){
  14. $ Value = $ this-> arrayCoding ($ value, $ inCharset, $ outCharset );
  15. } Else {
  16. $ Value = iconv ($ inCharset, $ outCharset, $ value );
  17. }
  18. }
  19. Return $ array;
  20. }

>>> For more articles on php array encoding conversion, see php encoding conversion functions (automatic conversion character set supports array conversion) examples of php object conversion arrays and array conversion objects (text) php code for automatic content encoding and conversion php array encoding conversion method for reference to learning php string encoding conversion and judgment

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.