fork download
  1. <?php
  2. $arr = array(
  3.  
  4. 'type' => 0,
  5. 'text' => '1 блок'
  6. ),
  7.  
  8. 'type' => 0,
  9. 'text' => '2 блок'
  10. ),
  11.  
  12. 'type' => 0,
  13. 'text' => '3 блок'
  14. )
  15. );
  16. echo json_encode($arr);
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
[{"type":0,"text":"1 \u0431\u043b\u043e\u043a"},{"type":0,"text":"2 \u0431\u043b\u043e\u043a"},{"type":0,"text":"3 \u0431\u043b\u043e\u043a"}]