Skip to content

Instantly share code, notes, and snippets.

@Shinpeim
Created March 3, 2015 18:19
Show Gist options
  • Save Shinpeim/e0ea6aaec8d2095ee0d3 to your computer and use it in GitHub Desktop.
Save Shinpeim/e0ea6aaec8d2095ee0d3 to your computer and use it in GitHub Desktop.
<?php
$hash = array(
"a" => 1,
"b" => 2,
);
$jsonFormattedString = json_encode($hash);
?>
<html>
<head>
<script>
var json = <? echo $jsonFormattedString ?>;
alert(json["a"]);
</script>
</head>
<body>
セキュリティ上の問題を無視していることに注意
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment