在Codeigniter中将两个输入值添加为字符串

时间:2018-06-13 13:17:18

标签: php codeigniter codeigniter-3 string-concatenation

我试图将两个输入值添加为字符串而不是数字,问题是它们实际上是数字。

'clabe' => $this->input->post('clabe2') + $this->input->post('dc') 

其中clabe2 = 123且dc = 4;

我想得到1234而不是127的结果

任何帮助将不胜感激

2 个答案:

答案 0 :(得分:1)

连接此并分配给变量 像这样:

$var = $this->input->post('clabe2') . $this->input->post('dc');
'clabe' => $var

答案 1 :(得分:0)

做类似的事

使用串联运算符.进行字符串连接

'clabe' => $this->input->post('clabe2') . $this->input->post('dc');

更多信息:http://php.net/manual/en/language.operators.string.php