Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function SaveUser($json){
- $json2 = json_decode($json,true);
- print 'Intrant : <br />'.$json.'<br />';
- print '<pre>VAR DUMP:<br />';
- var_dump($json2);
- print '</pre>';
- // Do some things
- }
- SaveUser('{"user_id":"14","prenom":"prenom","nom":"nom","profil_heures_fixe":"0","nb_heures_fixe":"","is_userliste":"1","is_paye":"1","username":"username","password":"","telephone":"111-111-1111","cellulaire":"111-111-1111","extension":"30","courriel":"[email protected]","date_embauche":"2017-07-02","machine":"","profil_id":"4","status_id":"1","coordonnees":"","urgence":""}');
- -------------------------
- OUTPUT
- Intrant :
- {"user_id":"14","prenom":"prenom","nom":"nom","profil_heures_fixe":"0","nb_heures_fixe":"","is_userliste":"1","is_paye":"1","username":"username","password":"","telephone":"111-111-1111","cellulaire":"111-111-1111","extension":"30","courriel":"[email protected]","date_embauche":"2017-07-02","machine":"","profil_id":"4","status_id":"1","coordonnees":"","urgence":""}
- VAR DUMP:
- array(19) {
- ["user_id"]=>
- string(2) "14"
- ["prenom"]=>
- string(6) "prenom"
- ["nom"]=>
- string(3) "nom"
- ["profil_heures_fixe"]=>
- string(1) "0"
- ["nb_heures_fixe"]=>
- string(0) ""
- ["is_userliste"]=>
- string(1) "1"
- ["is_paye"]=>
- string(1) "1"
- ["username"]=>
- string(8) "username"
- ["password"]=>
- string(0) ""
- ["telephone"]=>
- string(12) "111-111-1111"
- ["cellulaire"]=>
- string(12) "111-111-1111"
- ["extension"]=>
- string(2) "30"
- ["courriel"]=>
- ["date_embauche"]=>
- string(10) "2017-07-02"
- ["machine"]=>
- string(0) ""
- ["profil_id"]=>
- string(1) "4"
- ["status_id"]=>
- string(1) "1"
- ["coordonnees"]=>
- string(0) ""
- ["urgence"]=>
- string(0) ""
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement