Bir https web sayfasını okumak gerekir ama benim web sunucusu https sarıcı dont destek

0 Cevap php

i bu basit komutla php kullanarak bir web sayfasının içeriğini okumak gerekir:

$pagina='https://graph.facebook.com/me?access_token=' . $cookie['access_token'];
$user = json_decode(file_get_contents($pagina));

Gördüğünüz gibi protokol https olduğunu. Ben bu komutları çalıştırdığınızda ben hep olsun:

[function.file-get-contents]: failed to open stream:

Stackoverflow diğer cevap bazı kullanıcı bu kodu kullanmanızı öneririm:

$w = stream_get_wrappers();
echo 'openssl: ',  extension_loaded  ('openssl') ? 'yes':'no', "\n";
echo 'http wrapper: ', in_array('http', $w) ? 'yes':'no', "\n";
echo 'https wrapper: ', in_array('https', $w) ? 'yes':'no', "\n";
echo 'wrappers: ', var_dump($w);

Benim sunucu https sarıcı var ve sonuç sayılı olduğunu bilmek için,

Yani, herhangi bir fikrin nasıl ben php kullanarak bu https sayfayı alınamadı? belki ile CURL herhangi bir örnek kod? Thanks a lot!

0 Cevap