从 NSString 到 PHP 到 MySql 时如何处理回车?

发布于 2024-11-08 02:36:26 字数 119 浏览 5 评论 0原文

我的 iPad 应用程序中有一个 UITextView。当用户向该视图输入数据时,我想使用我创建的 PHP 站点将其写入 mysql 数据库。当我将其提供给 php 站点时,我需要去掉回车符,但是有什么方法可以维护回车符吗?

I have a UITextView in my iPad app. When the user inputs data to this view, I want to write it to a mysql database, using a PHP site I created. I need to strip the carriage returns when I give it to the php site but is there some way to maintain the returns?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

痞味浪人 2024-11-15 02:36:26

您可以使用中间变量:

$stringWithoutCRLF = preg_replace('/[\r\n]+/', ' ', $stringWithCRLF);

这里它用空格替换 CRLF。

You could use a intermediate variable :

$stringWithoutCRLF = preg_replace('/[\r\n]+/', ' ', $stringWithCRLF);

Here it replaces CRLF by space.

君勿笑 2024-11-15 02:36:26

为什么你要在你的网址中放入这么多数据?请记住,url 长度有限制 - 您最好使用 POST。

但无论如何:您需要对数据进行 url 编码。谷歌表示这会起作用:

SString* escapedUrlString =
[unescapedString stringByAddingPercentEscapesUsingEncoding:
                    NSASCIIStringEncoding];

这将使 get 和 post 请求都安全。

Why do you put so much data in your url? Keep in mind that there's a limitation to url length - you'd better use POST.

But anyway: you need to url-encode the data. Google says this'll work:

SString* escapedUrlString =
[unescapedString stringByAddingPercentEscapesUsingEncoding:
                    NSASCIIStringEncoding];

This'll make it safe both for get and post requests.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文