You are here

json.php in Zircon Profile 8

File

vendor/behat/mink/driver-testsuite/web-fixtures/json.php
View source
<?php

echo json_encode(array(
  'key1' => 'val1',
  'key2' => 234,
  'key3' => array(
    1,
    2,
    3,
  ),
));