PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Janjan   PHP Ignore JSON Key   ???   Download  
File: ???
Role: Example script
Content type: text/plain
Description: index file to access the class
Class: PHP Ignore JSON Key
Remove certain key values from JSON strings
Author: By
Last change:
Date: 8 years ago
Size: 444 bytes
 

Contents

Class file image Download
<?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);


?>