Online computer courses, code, programming tutorial and sidebar information for monitoring Canadian S&P/TSX index. Build friendship and networking. Welcome to visit my blogs often!!! I also have two other sites: YouTube Channel and Google site.
Adsense
Popular Posts
- Formatting my post
- How to blend adsense inside your post?
- PHPWind-- A PHP forum script applcaition in China
- Promote your Forum/Blog/Website via major search Engines
- Install PHP ibm_db2 extension in Linux (redHat)
- Install PHPMailer 5.2.4 and use smtp gmail
- Google Adsense forum and pin number
- phpexcel toggle expand and hide column in EXCEL and summary
- Datatable export excel wraptext and newline
- PHP - Export Content to MS Word document
Wednesday, August 28, 2013
Convert PHP associative array to javascript associative array
Convert PHP associative array to javascript associative array, example:
<?php
$arr = array('price' => 2, 'high' => 3, 'low' => 1);
echo json_encode($arr);
?>
<script>
var quote=<?php echo json_encode($arr); ?>;
alert(quote["price"]);
alert(quote.price);
</script>
PHP function json_encode is used to convert to the JSON representation of a value. Here
json_encode($arr) produce:
{"price":2,"high":3,"low":1}
Then we can create an associative array in JavaScript using
var quote=<?php echo json_encode($arr); ?>;
We can assess the array value either via quote["price"] or json_encode($arr).
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment