Skip to content

Instantly share code, notes, and snippets.

@asigatchov
Created November 22, 2018 12:24
Show Gist options
  • Save asigatchov/9a112469c8e0439f39e1b9cb7e98bc46 to your computer and use it in GitHub Desktop.
Save asigatchov/9a112469c8e0439f39e1b9cb7e98bc46 to your computer and use it in GitHub Desktop.
<?php
$data = json_decode(file_get_contents('php://input'), true);
$data['first_name'] .= " " . md5($data['first_name']);
$data['last_name'] .= " " . md5($data['last_name']);
$data['say'] = 'PHP is Good';
$data['current_time'] = date("Y-m-d H:m:s z");
echo json_encode($data, JSON_UNESCAPED_UNICODE);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment