欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php用于编码和解码的函数有哪些?

程序员文章站 2022-04-21 11:51:28
...
php用于编码和解码的函数有哪些?

php用于编码和解码的函数

URL:

  • urlencode(); //编码

  • urldecode(); //解码

URL与数组互转:

  • parse_url ()

  • http_build_query()

base64:

  • base64_encode();

  • base64_decode();

JSON:

  • json_encode();

  • json_decode();

SESSION:

  • session_encode();

  • session_decode();

字符转为HTML实体:

  • htmlentities() / html_entity_decode()

    所有字符转换为 HTML 实体

  • htmlspecialchars() / htmlspecialchars_decode()

    将特殊字符"<" (小于)和 ">" (大于)转换为 HTML 实体

uuencode编码:

  • convert_uuencode();

  • convert_uudecode();

字符集编码相互转换:

  • iconv();

  • mb_convert_encoding();

更多相关知识,请访问 PHP中文网!!

相关标签: php 编码 解码