gpt4 book ai didi

php - yii 查询构建器为文本字段插入\r\n

转载 作者:行者123 更新时间:2023-11-29 12:25:06 28 4
gpt4 key购买 nike

我正在使用 yii querybuilder 来执行 MySQL INSERT 命令。字符串存储在文本列中是有效的。但是当我更新表单中的文本字段时,\r\n 仍然存在,预计是不可见的。怎么处理呢?谢谢

use yii\db\Query;
$query=new Query;
$this->createCommand()->batchInsert('table',['id','text'],[
[1,'hello!world!\r\n there is $symbol in the sentence'],
]);

附注

我尝试使用"而不是',但是字符串中有$,它会将其识别为变量,而不会存在。

最佳答案

您正在使用 ',因此 \r\n 将是四个字符的文字。

要使其特殊(回车符和换行符),您必须使用 " 来包装字符串。

关于php - yii 查询构建器为文本字段插入\r\n,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28451712/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com