yun880111 发表于 2016-4-20 09:45:42

LR中转码问题,如何将&转换成&

使用web_reg_save_param获取动态参数数据,获取的数据需要转码,有什么函数或者方法?
下面代码获取的结果:value:home.php?mod=space&uid=373511&do=profile
期望结果:value:home.php?mod=space&uid=373511&do=profile
代码如下:
Action()
{
      web_set_max_html_param_len("999999");
        web_reg_save_param("author",
                "LB=<a href=\"",
                "RB=\" target=\"_blank\" class=\"xw1\">",
                "Search=Body",
                LAST);
        web_url("thread-1072567-1-1.html",
                "URL=http://bbs.51testing.com/thread-1072567-1-1.html",
                "Resource=0",
                "RecContentType=text/html",
                "Referer=",
                "Snapshot=t16.inf",
                "Mode=HTML",
                LAST);
        lr_output_message("value:%s", lr_eval_string("{author}"));
      return 0;
}

jingzizx 发表于 2016-4-20 16:42:04

好像没有什么好的办法,只能说你自己写程序实现吧
页: [1]
查看完整版本: LR中转码问题,如何将&amp;转换成&