Summary
高島平にある焼肉屋.Data
住所 | 東京都板橋区高島平8-19-6 |
営業時間 | 11:00 - 14:30 , 17:00 - 26:00 |
定休日 | 月曜日 |
電話番号 | 03-3931-1020 |
最寄り駅 | 高島平 |
志村料理飲料組合 ぐるめ・ネット - 焼肉 金楽 高島平店
http://www.shimura-ryouin.gr.jp/gurume/shop/b014.html
住所 | 東京都板橋区高島平8-19-6 |
営業時間 | 11:00 - 14:30 , 17:00 - 26:00 |
定休日 | 月曜日 |
電話番号 | 03-3931-1020 |
最寄り駅 | 高島平 |
include('spyc.php');
$array = Spyc::YAMLLoad('yamlfile.yml');
print_r($array);
include('spyc.php');
$array[] = 'Sequence item';
$array['The Key'] = 'Mapped value';
$array[] = array('A sequence','of a sequence');
$array[] = array('first' => 'A sequence','second' => 'of mapped values');
$array['Mapped'] = array('A sequence','which is mapped');
$array['A Note'] = 'What if your text is too long?';
$array['Another Note'] = 'If that is the case, the dumper will probably fold your text by using a block. Kinda like this.';
$array['The trick?'] = 'The trick is that we overrode the default indent, 2, to 4 and the default wordwrap, 40, to 60.';
$array['Old Dog'] = "And if you want\n to preserve line breaks, \ngo ahead!";
$yaml = Spyc::YAMLDump($array,4,60);
print_r($yaml);