pastebin

Paste Search Dynamic
Recent pastes
str replace json
  1. <?php
  2. function str_replace_json($search, $replace, $subject){
  3.  
  4.      return json_decode(str_replace($search, $replace,  json_encode($subject)));
  5.  
  6. }
  7.  
  8. ?>
Parsed in 0.005 seconds