是否可以通过这样的操作设置变量值$_GET['var']
:
if( $foo = isset($_GET['foo']) ) // Or something close to this.
I.e if $_GET['foo'] is set assign it's value then and there
而不是像我现在做的那样
if( isset($_GET['foo']) )
$foo = $_GET['foo'];
当它只有一两个时这没关系,但就像我一样,当你有 10 多个 $_GET 时,它会变得丑陋。