Inhaltsverzeichnis

debug()

void debug(mixed object)

The function debug() conveniently shows the project manager the content of a PHP or data variable or a placeholder in debug mode. This is particularly helpful when monitoring filters and, as the case may be, as Problem Solutions for Filters

Note: The content of the respective variable is only shown if the questionnaire is started in debug mode Start Questionnaire in Debug Mode.

Examples

// Display response before the filter for the selection AB01 is executed
debug('AB01');
if (value('AB01') == 2) {
  goToPage('end');
}
 
// Placeholders
$random = random(1,10);
if ($random == 1) {
  replace('%category%', 'employee');
} else {
  replace('%category%', 'superior');
} 
debug('category');
 
// Show PHP variable
$itemlist = getItems('AB09', 'min', 2);
debug($itemlist);

Display Debug Information