Я пытаюсь экспортировать ответ в формате PDF с помощью export_responses (). Эта функция отлично работает, когда я экспортирую ответ в формате CSV или DOC, но всегда выдает ошибку в PDF.
require_once 'src/org/jsonrpcphp/jsonRPCClient.php';
// with composer support just add the autoloader
// include_once 'vendor/autoload.php';
define( 'LS_BASEURL', 'http://localhost/limesurvey/'); // adjust this one to your actual LimeSurvey URL
define( 'LS_USER', 'admin' );
define( 'LS_PASSWORD', 'admin' );
// the survey to process
$survey_id=464658;
// instanciate a new client
$myJSONRPCClient = new org\jsonrpcphp\JsonRPCClient( LS_BASEURL.'/admin/remotecontrol' );
// receive session key
$sessionKey= $myJSONRPCClient->get_session_key( LS_USER, LS_PASSWORD );
$responses = $myJSONRPCClient->export_responses( $sessionKey, $survey_id, 'pdf', 'en','','','',11,11);
Это всегда дает эту ошибку
Задача ещё не решена.
Других решений пока нет …