PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php function get(array $headers = []) { $curl_opt_headers = array_map( fn (string $key, string $value): string => $key . ': ' . $value, array_keys($headers), array_values($headers) ); return $curl_opt_headers; } print_r( get( array( 'Auth' => 'Token', 'Content-Type' => 'application/json', ) ) );
Show:  
Copy Clear