在数组中插入值

发布于 2024-11-16 23:01:56 字数 323 浏览 0 评论 0原文

假设我有这个变量:

$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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

音盲 2024-11-23 23:01:56
$build_total = $build_1 . ', ' . $build_2;

$build_total = $build_1 . ', ' . $build_2;

?

无所谓啦 2024-11-23 23:01:56
$build_total = $build1 . ", " . $build2;
$build_total = $build1 . ", " . $build2;
清君侧 2024-11-23 23:01:56

如果 $build_1 和 $build_2 在数组中,您可以使用 implode 方法。

<?php
$build = array("bricks, stones and other stuff", "more bricks, stones and other stuff");
$build_total = implode(", ", $build);
?>

If $build_1 and $build_2 would be in an array, you could use the implode-method.

<?php
$build = array("bricks, stones and other stuff", "more bricks, stones and other stuff");
$build_total = implode(", ", $build);
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文