我试图将两个输入值添加为字符串而不是数字,问题是它们实际上是数字。
'clabe' => $this->input->post('clabe2') + $this->input->post('dc')
其中clabe2 = 123且dc = 4;
我想得到1234而不是127的结果
任何帮助将不胜感激
答案 0 :(得分:1)
连接此并分配给变量 像这样:
$var = $this->input->post('clabe2') . $this->input->post('dc');
'clabe' => $var
答案 1 :(得分:0)
做类似的事
使用串联运算符.
进行字符串连接
'clabe' => $this->input->post('clabe2') . $this->input->post('dc');