php 这段代码什么意思
$htmlData = '';
if (!empty($_POST['content'])) {
if (get_magic_quotes_gpc()) {
$htmlData = stripslashes($_POST['content']);
} else {
$htmlData = $_POST['content'];
}
}
求教大侠们给指点下
判断枣含是否开启了 PHP 环前岩御境变量 magic_quotes_gpc 如果开启了 则去慧岩除 它所加的反斜杠 获取POST传过来的值
123