Ciao a tutti, ho risolto con:

Codice PHP:
<?php

    $option 
= [
    
        
'http' => [
        
            
'hedaer' => "Content-type: application/x-www-form-urlencode\r\n",
            
'method' => 'POST',
            
'content' => http_build_query($dati_da_inviare),
        
        ]
    
    ];
    
    
$context stream_context_create($option);
    
    
$fp fopen('miourl_pubblico_https''r'false$context);

?>