0

谁能告诉我 GPvars 在typo3中代表什么以及它包含和用于什么?谢谢!

例子

$this->GPvars['uid'] = intval( $this->GPvars['uid'] );
$this->GPvars['chash'] = substr( $this->GPvars['chash'], 0, 8 );
$this->GPvars['uid_author'] = intval( $this->GPvars['uid_author'] );
4

1 回答 1

0

G 代表GET, P 代表POST

它从 POST 或 GET 获取“uid”(例如)(POST 优先于 GET)

我不知道你在哪里找到这段代码,但我认为这是t3lib_div::_GP的某种包装,如果我是对的,链接中的 API 解释了一切。

于 2012-08-24T18:20:33.050 回答