Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

PHP | 文字列の結合

概要

文字列の結合

詳細

.(ドット)で結合する

サンプル

#!/usr/bin/env php
<?php
print "hoge"."hige"; // => "hogehige"

出力

hogehige