我使用Ubuntu服务器并尝试base64_encode字符串值,但默认结果返回CRLF(Windows),返回值如何为LF(UNIX)
<?php
$str = 'this is
the string
value in
my image';
echo base64_encode($str);
?>
LF(UNIX)输出:
数据库
CRLF(Windows)输出:
数据库
这是图片:enter image description here
我使用Ubuntu服务器并尝试base64_encode字符串值,但默认结果返回CRLF(Windows),返回值如何为LF(UNIX)
<?php
$str = 'this is
the string
value in
my image';
echo base64_encode($str);
?>
LF(UNIX)输出:
数据库
CRLF(Windows)输出:
数据库
这是图片:enter image description here
1条答案
按热度按时间5ssjco0h1#
只需将所有新的换行符替换为UNIX换行符:
这对我很有效,希望我也能帮助你!