PHP - 添加/删除回车符到 Base 64 编码字符串
我有一个非常长的 base64 编码字符串,显示在文本区域中。问题是该字符串没有任何空格或回车符,因此它显示在一行上,并带有丑陋的水平滚动条。
我可以在 base64_encode() 之后和输出到文本区域之前以某种方式手动添加回车符,然后在从文本区域检索此字符串后(在解码之前)删除这些 CR 吗?
I have a verrrrrrrry long base64 encoded string which is displayed in a textarea. The problem is that this string doesn't have any spaces or carriage returns so it gets displayed on one line with a ugly horizontal scroll bar.
Can I add somehow carriage returns manually after base64_encode() and before output to the textarea, then remove these CR's after retrieving this string from the textarea (before decoding)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用
chunk_split
来拆分将字符串分成特定长度的块,然后用所需的字符或字符串重新连接这些块:As
base64_decode
忽略空格,检索 textarea 值后无需执行任何特殊操作。You could use
chunk_split
to split your string into chunks of a specific length, and then rejoin those chunks with the character or string you want:As
base64_decode
ignores whitespace, you don't need to do anything special once you retrieve the textarea value.当然。空白被忽略:
Certainly. White space is ignored:
或者您可以简单地使用 HTML 属性
wrap
来执行它是纯 HTML 并绕过任何 PHP 实现......Or you could simply use the HTML attribute
wrap
to do it in pure HTML and bypass any PHP implementation...这可以通过 PHP 函数 wordwrap 来完成。
This can be done with the PHP function wordwrap.