Thursday, December 5, 2013

PHP: シングルクォーテーションとダブルクオーテーションの違い

PHPの基本として学ぶシングルクォーテーションとダブルクオーテーションの違いを、忘れないように残しておく

シングルクォーテーション
$world = PHP;
echo 'Hello $world';

アウトプット
Hello $world

ダブルクオーテーション(variable substitution)
$world = PHP;
echo "Hello $world";

アウトプット
Hello PHP