摘要:
Shell结构化语言 在Linux Shell中,0代表Yes、True;非0代表No、False if判断:如果condition是true,或者condition的退出状态值(exit status)是0,执行command命令 if condition then command elif condition1 then command1 else commandn fi for循环(循环内部使用$变量名、如$i来引用循环变量、其实就是使用$来引用变量的值): for (( expr1; expr2; expr3 ))或者 for { var... 阅读全文
摘要:
if(!get_magic_quotes_gpc()) { $_GET = daddslashes($_GET); $_POST = daddslashes($_POST); $_COOKIE = daddslashes($_COOKIE); $_FILES = daddslashes($_FILES); } function daddslashes($string, $force = 1) { if(is_array($string)) { foreach($string as $key => $val) { unset($string[$key]); $string[addslash 阅读全文