Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我正在使用 PDO 和 apache 服务器从 iPhone 将帖子 var 发送到 php mysql,但是如果我&在 var 的内容中添加一个符号,它会将其解释为分隔符。我试过 \& 但它不起作用。有什么线索吗?谢谢
&
@"myID=%@&asCreatorPresentation=%@&firstName=%@&lastName=%@&phoneNumber
你必须给urlencode你的 POST var 名称和值。
urlencode
例如,&符号变为%26。
%26
你必须urlencode你的字符串。
[NSString stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding]]