対象辞書配列のキーと値を、指定した区切り文字列で結合します。
キーと値を結合した文字列を返します。
var dic = %[ 'foo' => 100, 'bar' => 'xyzzy', 'hoge' => null ]; var text = dictionaryDump(dic, ' => ', '\n'); // text には // (string)"bar => xyzzy\nfoo => 100\nhoge => (object 0x00000000:0x00000000)" // が格納されます。