PHPのvar_exportを使用した変数の文字列化 単純な変数の文字列化:$value = 42; $string = var_export($value, true); echo $string; // 結果: '42'>>More