在数组中插入值
假设我有这个变量:
$build_1 = 'bricks, stones and other stuff';
$build_2 = 'more bricks, houses and other things';
如何将 $build_1
和 $build_2
的内容插入到第三个变量(如 $build_total
)中?
之后,我想将 $build_total
插入 mysql 数据库并获取“砖块、石头和其他东西,更多砖块、房屋和其他东西”。
Lets say I have this variables:
$build_1 = 'bricks, stones and other stuff';
$build_2 = 'more bricks, houses and other things';
How can I insert the content of $build_1
and $build_2
in a third variable like $build_total
?
After that, I want to insert $build_total
inside a mysql database and get 'bricks, stones and other stuff, more bricks, houses and other things'.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
?
?
如果 $build_1 和 $build_2 在数组中,您可以使用 implode 方法。
If $build_1 and $build_2 would be in an array, you could use the implode-method.