1

html表单代码-

<td width="75">
<input name="txtQty[]" type="text" id="txtQty[]" size="5" 
 value="<?php echo $ct_qty; ?>" class="box" onKeyUp="checkNumber(this);">

当我提交表单时,我会调用以下脚本-

if (!get_magic_quotes_gpc()) {
if (isset($_POST)) {
    foreach ($_POST as $key => $value) {
        $_POST[$key] =  trim(addslashes($value));
    }
}

if (isset($_GET)) {
    foreach ($_GET as $key => $value) {
        $_GET[$key] = trim(addslashes($value));
    }
}   
}

错误-

警告:addslashes() 期望参数 1 是字符串,数组在第 53 行的 C:\xampp\htdocs\shizin\products\library\config.php 中给出

我认为这个脚本只是用来修剪输入,但我不知道这个 addlash 函数的作用以及为什么会出现这个错误。

4

4 回答 4

2

如果您将此代码应用于一个int值,那么您将像这样删除这些函数

if (!get_magic_quotes_gpc()) { 
if (isset($_POST)) { 
    foreach ($_POST as $key => $value) { 
        $_POST[$key] =  $value; 
    } 
} 

if (isset($_GET)) { 
    foreach ($_GET as $key => $value) { 
        $_GET[$key] = $value; 
    } 
}    
} 
于 2010-12-02T09:36:48.717 回答
1
  1. 整个方法是错误的。
    收到用户提供的数据后,您必须去除斜线,由魔术引号添加,而不是添加。

  2. 关于数组方法,它说已经发布了 2 个答案,我希望在这里得到很好的解释。不太好,但无论如何。

因此,您将需要 2 个代码片段。
第一个是来自http://www.php.net/manual/en/function.stripslashes.php的 stripslashes_deep()

在您告诉我们后,您将获得第二个,您为什么认为您需要您发布的代码。

于 2010-08-17T07:28:01.830 回答
0

错误说,addslashes函数尝试用斜杠引用字符串,但是$value参数不是字符串是数组,什么CONTAIN了$_GET

这是因为调用此脚本的页面传递了一个数组。txtQty[]

http://php.net/manual/en/function.addslashes.php

于 2010-08-17T07:26:58.870 回答
0

只需在将 $value 传递给 addlashes() 之前回显它,您应该会立即看到问题。

于 2010-08-17T07:27:12.443 回答