PHP code example of tomrf / http-emitter

1. Go to this page and download the library: Download tomrf/http-emitter library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tomrf / http-emitter example snippets


$httpEmitter = new HttpEmitter();
$httpEmitter->emit($response); // PSR-7 response object

public function emit(
    Psr\Http\Message\ResponseInterface $response
): void


public function emit(
    Psr\Http\Message\ResponseInterface $response
): void


public function emit(
    Psr\Http\Message\ResponseInterface $response
): void