标签: php variables indexing undefined
我在这行代码中收到一个未定义的索引错误:
switch ($_REQUEST["___p"])
我想我需要声明变量。我将上述行更改为什么?
答案 0 :(得分:-1)
要么事先确定存在isset(),要么忽略它:
isset()
switch (@$_REQUEST["___p"])