在 Flash TLF 可编辑字段中维护换行符
我的 swf 文件中有一个 TLF 可编辑字段。在那里输入的文本将被发送到一个 php 页面,所有内容都将在其中进行处理。我为 multiline
设置了行为,但刚刚意识到如果有人按回车键并继续输入,则不会显示任何中断(甚至没有空格)。
我尝试在 php 中从 flash 获取 POST 变量时使用 nl2br()
,但这不起作用。
我不知道flash如何处理回车,所以我也不知道php端如何处理。有什么建议吗?
I have a TLF editable field in a swf file. Text entered there gets sent to a php page where everything is processed. I had the behavior set for multiline
, but just realized that if someone hits return and keeps typing, no break is displayed (not even a space).
I've tried using nl2br()
in the php when it grabs the POST variable from flash, but that doesn't work.
I don't know how flash handles the carriage return, so I don't know how to handle it on the php side either. Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案是使用 nl2br 函数。
The solution is to use the nl2br function.