PHP
11
Вклад в тег
<?php
$context = stream_context_create(array(
'http' => array(
'timeout' => 60, // Время ожидания ответа от сервера
)
));
$url = 'https://kristallnails.ru/integration?int=ym&name=businesshunter';
try {
$priceFile = file_get_contents( html_entity_decode($url), false, $context );
} catch (Exception $e) {
info($e->getMessage());
}
print_r($priceFile);