Skip to content

Instantly share code, notes, and snippets.

@erowsika
Created February 5, 2025 04:51
Show Gist options
  • Save erowsika/e3db33508270a9ec28bb0ae6c3585d63 to your computer and use it in GitHub Desktop.
Save erowsika/e3db33508270a9ec28bb0ae6c3585d63 to your computer and use it in GitHub Desktop.
PHP response json
<?php
$data = /** whatever you're data be **/;
header('Content-Type: application/json; charset=utf-8');
echo json_encode($data);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment