| 
<?php
require_once('ignore.php');
 $ignore = new Ignore;
 
 $val =  '{\"message\":\"Password updated successfullyasd\",\"name\":\"Stephen\",\"email\":\"[email protected]\",\"username\":\"steph5592044d70ff9\",\"status\":\"1\",\"api_key\":\"d738f1c6cc88b8b6d2dcbb9c964b08b2\",\"error\":0,\"message\":\"You are successfully registered\"}';
 
 $exclude = "api_key, email, username";
 
 echo $ignore->ignore_keys($val, $exclude);
 
 
 ?>
 |