Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
キーワードの配列があります...
(配列) -> (家、テーブル、馬、木)
次のような文字列を作成する必要があります。
家+テーブル+馬+木
PHPでこれを行うにはどうすればよいですか?
使用するimplode()
implode()
$string = implode('+', array(house, table, horse, tree));