假设我有这些变量:
$build_1 = 'bricks, stones and other stuff';
$build_2 = 'more bricks, houses and other things';
如何在$build_1
等第三个变量中插入$build_2
和$build_total
的内容?
之后,我想在mysql数据库中插入$build_total
并获取“砖块,石块和其他东西,更多砖块,房屋和其他东西”。
答案 0 :(得分:2)
$build_total = $build_1 . ', ' . $build_2;
答案 1 :(得分:1)
$build_total = $build1 . ", " . $build2;
答案 2 :(得分:0)
如果$ build_1和$ build_2在数组中,您可以使用implode - 方法。
<?php
$build = array("bricks, stones and other stuff", "more bricks, stones and other stuff");
$build_total = implode(", ", $build);
?>