Advertisement
Guest User

pkircher

a guest
Jul 22nd, 2011
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.78 KB | None | 0 0
  1. <?php
  2.  
  3. function SaveUser($json){
  4.  
  5.    $json2 = json_decode($json,true);
  6.  
  7.    print 'Intrant : <br />'.$json.'<br />';
  8.    print '<pre>VAR DUMP:<br />';
  9.    var_dump($json2);
  10.    print '</pre>';
  11.    
  12.    
  13.    
  14.    // Do some things
  15. }
  16.  
  17.  
  18. 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":"user@server.com","date_embauche":"2017-07-02","machine":"","profil_id":"4","status_id":"1","coordonnees":"","urgence":""}');
  19.  
  20.  
  21.  
  22. -------------------------
  23.  
  24. OUTPUT
  25.  
  26. Intrant :
  27. {"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":"user@server.com","date_embauche":"2017-07-02","machine":"","profil_id":"4","status_id":"1","coordonnees":"","urgence":""}
  28.  
  29. VAR DUMP:
  30. array(19) {
  31.   ["user_id"]=>
  32.   string(2) "14"
  33.   ["prenom"]=>
  34.   string(6) "prenom"
  35.   ["nom"]=>
  36.   string(3) "nom"
  37.   ["profil_heures_fixe"]=>
  38.   string(1) "0"
  39.   ["nb_heures_fixe"]=>
  40.   string(0) ""
  41.   ["is_userliste"]=>
  42.   string(1) "1"
  43.   ["is_paye"]=>
  44.   string(1) "1"
  45.   ["username"]=>
  46.   string(8) "username"
  47.   ["password"]=>
  48.   string(0) ""
  49.   ["telephone"]=>
  50.   string(12) "111-111-1111"
  51.   ["cellulaire"]=>
  52.   string(12) "111-111-1111"
  53.   ["extension"]=>
  54.   string(2) "30"
  55.   ["courriel"]=>
  56.   string(15) "user@server.com"
  57.   ["date_embauche"]=>
  58.   string(10) "2017-07-02"
  59.   ["machine"]=>
  60.   string(0) ""
  61.   ["profil_id"]=>
  62.   string(1) "4"
  63.   ["status_id"]=>
  64.   string(1) "1"
  65.   ["coordonnees"]=>
  66.   string(0) ""
  67.   ["urgence"]=>
  68.   string(0) ""
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement