Previous topicNext topic
Help > XEngine_Core > XEngine_Cryption > Cryption_Codec >
Cryption_Codec_UrlEnCodec

函数

Cryption_Codec_UrlEnCodec

功能

URL编码

语法

void Cryption_Codec_UrlEnCodec(LPCSTR lpszSource,int nLen,CHAR *ptszDest)

参数

 参数.一:lpszSource
  In/Out:In
  类型:常量字符指针
  可空:N
  意思:要编码的URL字符串
 参数.二:nLen
  In/Out:In
  类型:整数型
  可空:N
  意思:输入原始字符串长度
 参数.三:pszDest
  In/Out:Out
  类型:字符指针
  可空:N
  意思:导出编码后的字符串

返回值

类型:无
意思:

备注

如果是传送HTTP服务器的字符串需要根据服务器类型做编码转换,比如LINUX是UTF8,然后在进行URL编码

示例