fork download
  1. <?php
  2.  
  3. $vocabulary = array(
  4. 'дом' => 'うち',
  5. 'голос' => 'こえ',
  6. );
  7.  
  8. var_dump($vocabulary);
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
array(2) {
  ["дом"]=>
  string(6) "うち"
  ["голос"]=>
  string(6) "こえ"
}