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
- PHP: add a download as pdf file button in report page
- How to blend adsense inside your post?
- Notepad++ - Add C++ compiler
- PHPWind-- A PHP forum script applcaition in China
- PHP connect IBM db2 database in XAMPP
- Datatable export excel wraptext and newline
- phpexcel toggle expand and hide column in EXCEL and summary
- Renew SSL certificate from StartSSL
- Sweet Alert JS library - beautiful replacement of JavaScript Alert
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