Tag : PHP Native

JSON Decode PHP

The json_decode() function is used to decode or convert a JSON object to a PHP object. Example: $jsonobj = ‘{“Peter”:35,”Ben”:37,”Joe”:43}’; $obj = json_decode($jsonobj); echo $obj->Peter; echo $obj->Ben; echo $obj->Joe;

How To Get List Array PHP Json

Sample data JSON: <php $get_url='{ “countries”: [ { “name”: “United States of America”, “code”: “US”, “city”: “New York” }, { “name”: “India”, “code”: “IN”, “city”: “New Delhi” }, { “name”: “China”, “code”: “CN”, […]

PHP Syntax & Komentar / PHP Dasar

PHP: Hypertext Preprocessor atau hanya PHP saja, adalah bahasa skrip dengan fungsi umum yang terutama digunakan untuk pengembangan web. PHP menjadi bahasa program yang berjalan disisi web server, sangat mudah simple cocok untuk […]