#php #phantomjs #php-phantomjs
#php #phantomjs #php-phantomjs
Вопрос:
Я пытаюсь отобразить эту страницу (https://www.olx.co.id/item/kost-murah-di-jatipadang-poncol-tb-simatupang-jaksel-iid-523802059 ). Однако это не работает.
К вашему сведению, я могу отлично отобразить другой сайт. Вот мой код.
$client = Client::getInstance();
$client->getEngine()->setPath($_SERVER["DOCUMENT_ROOT"].'/bin/phantomjs');
/**
* @see JonnyWPhantomJsHttpRequest
**/
$request = $client->getMessageFactory()->createRequest('https://www.olx.co.id/item/kost-murah-di-jatipadang-poncol-tb-simatupang-jaksel-iid-523802059', 'GET');
/**
* @see JonnyWPhantomJsHttpResponse
**/
$response = $client->getMessageFactory()->createResponse();
// Send the request
$client->send($request, $response);
print_r($response);
if($response->getStatus() === 200) {
// Dump the requested page content
echo $response->getContent();
}
Что-то не так с моим кодом? Спасибо.