如何禁用在线测试模块的所有键盘键,包括php中的组合键(ctr + esc)

How to disable all key of keyboard for online test module including combination key(ctr+esc) in php

You need to do this in javascript, you can use:

$(document).keydown(function(e) {
    return false;
});