文字

来自 PHP 之外的变量

HTML 表单(GET 和 POST)

当一个表单提交给 PHP 脚本时,表单中的信息会自动在脚本中可用。有很多方法访问此信息,例如:

Example #1 一个简单的 HTML 表单

<form action="foo.php" method="POST">
    Name:  <input type="text" name="username"><br />
    Email: <input type="text" name="email"><br />
    <input type="submit" name="submit" value="Submit me!" />
</form>

根据特定的设置和个人的喜好,有很多种方法访问 HTML 表单中的数据。例如:

Example #2 从一个简单的 POST HTML 表单访问数据

<?php
// 自 PHP 4.1.0 起可用
   echo $_POST['username'];
   echo $_REQUEST['username'];
   
   import_request_variables('p', 'p_');
   echo $p_username;// 自 PHP 5.0.0 起,这些长格式的预定义变量
// 可用 register_long_arrays 指令关闭。   echo $HTTP_POST_VARS['username'];// 如果 PHP 指令 register_globals = on 时可用。不过自
// PHP 4.2.0 起默认值为 register_globals = off。
// 不提倡使用/依赖此种方法。   echo $username;
?>

使用 GET 表单也类似,只不过要用适当的 GET 预定义变量。GET 也适用于 QUERY_STRING(URL 中在“?”之后的信息)。因此,举例说,http://www.example.com/test.php?id=3 包含有可用 $_GET['id'] 来访问的 GET 数据。参见 $_REQUEST 和 import_request_variables()

Note:

超全局数组例如 $_POST $_GET ,自 PHP 4.1.0 起可用。

Note:

变量名中的点和空格被转换成下划线。例如 <input name="a.b" /> 变成了 $_REQUEST["a_b"]

如上所示,在 PHP 4.2.0 之前 register_globals 的默认值是 on。PHP 社区鼓励大家不要依赖此指令,建议在编码时假定其为 off

Note:

magic_quotes_gpc 配置指令影响到 Get,Post 和 Cookie 的值。如果打开,值 (It's "PHP!") 会自动转换成 (It\'s \"PHP!\")。十多年前对数据库的插入需要如此转义,如今已经过时了,应该关闭。参见 addslashes() stripslashes() 和 magic_quotes_sybase。

PHP 也懂得表单变量上下文中的数组(参见相关常见问题)。例如可以将相关的变量编成组,或者用此特性从多选输入框中取得值。例如,将一个表单 POST 给自己并在提交时显示数据:

Example #3 更复杂的表单变量

<?php
if (isset( $_POST [ 'action' ]) &&  $_POST [ 'action' ] ==  'submitted' ) {
    echo 
'<pre>' ;

    
print_r ( $_POST );
    echo 
'<a href="' $_SERVER [ 'PHP_SELF' ] . '">Please try again</a>' ;

    echo 
'</pre>' ;
} else {
?>
<form action="<?php  echo  $_SERVER [ 'PHP_SELF' ];  ?>" method="post">
    Name:  <input type="text" name="personal[name]"><br />
    Email: <input type="text" name="personal[email]"><br />
    Beer: <br>
    <select multiple name="beer[]">
        <option value="warthog">Warthog</option>
        <option value="guinness">Guinness</option>
        <option value="stuttgarter">Stuttgarter Schwabenbr</option>
    </select><br />
    <input type="hidden" name="action" value="submitted" />
    <input type="submit" name="submit" value="submit me!" />
</form>
<?php
}
?>

IMAGE SUBMIT 变量名

当提交表单时,可以用一幅图像代替标准的提交按钮,用类似这样的标记:

<input type="image" src="image.gif" name="sub" />

当用户点击到图像中的某处时,相应的表单会被传送到服务器,并加上两个变量 sub_x sub_y 。它们包含了用户点击图像的坐标。有经验的用户可能会注意到被浏览器发送的实际变量名包含的是一个点而不是下划线(即 sub.x 和 sub.y),但 PHP 自动将点转换成了下划线。

HTTP Cookies

PHP 透明地支持 » RFC 6265定义中的 HTTP cookies。Cookies 是一种在远端浏览器端存储数据并能追踪或识别再次访问的用户的机制。可以用 setcookie() 函数设定 cookies。Cookies 是 HTTP 信息头中的一部分,因此 SetCookie 函数必须在向浏览器发送任何输出之前调用。对于 header() 函数也有同样的限制。Cookie 数据会在相应的 cookie 数据数组中可用,例如 $_COOKIE $HTTP_COOKIE_VARS $_REQUEST 。更多细节和例子见 setcookie() 手册页面。

如果要将多个值赋给一个 cookie 变量,必须将其赋成数组。例如:

<?php
  setcookie
( "MyCookie[foo]" 'Testing 1' time ()+ 3600 );
  
setcookie ( "MyCookie[bar]" 'Testing 2' time ()+ 3600 );
?>

这将会建立两个单独的 cookie,尽管 MyCookie 在脚本中是一个单一的数组。如果想在仅仅一个 cookie 中设定多个值,考虑先在值上使用 serialize() explode()

注意在浏览器中一个 cookie 会替换掉上一个同名的 cookie,除非路径或者域不同。因此对于购物车程序可以保留一个计数器并一起传递,例如:

Example #4 一个 setcookie() 的示例

<?php
if (isset( $_COOKIE [ 'count' ])) {
    
$count  $_COOKIE [ 'count' ] +  1 ;
} else {
    
$count  1 ;
}
setcookie ( 'count' $count time ()+ 3600 );
setcookie ( "Cart[ $count ]" $item time ()+ 3600 );
?>

变量名中的点

通常,PHP 不会改变传递给脚本中的变量名。然而应该注意到点(句号)不是 PHP 变量名中的合法字符。至于原因,看看:

<?php
$varname
. ext ;  
?>
这时,解析器看到是一个名为 $varname 的变量,后面跟着一个字符串连接运算符,后面跟着一个裸字符串(即没有加引号的字符串,且不匹配任何已知的健名或保留字)'ext'。很明显这不是想要的结果。

出于此原因,要注意 PHP 将会自动将变量名中的点替换成下划线。

确定变量类型

因为 PHP 会判断变量类型并在需要时进行转换(通常情况下),因此在某一时刻给定的变量是何种类型并不明显。PHP 包括几个函数可以判断变量的类型,例如: gettype() is_array() is_float() is_int() is_object() is_string() 。参见类型一章。

用户评论:

[#1] johnbendie at gmail dot com [2014-02-13 09:28:30]

Please describe how the request is built and passed to the script on the server side. That will make things more clearer. Or provide a link detailing such process. Don't assume anything.

[#2] Anonymous [2014-02-05 00:42:39]

From HTML 5.1 Draft:
http://www.w3.org/html/wg/drafts/html/master/forms.html#naming-form-controls:-the-name-attribute

The name content attribute gives the name of the form control, as used in form submission and in the form element's elements object. If the attribute is specified, its value must not be the empty string.
Any non-empty value for name is allowed.

So use the format like this <select multiple name="beer[]"> is still in the HTML 5 standard.

[#3] walf [2011-08-03 18:38:14]

WARNING! replacement of spaces and dots does not occur in array keys.

E.g. If you have
<input name="a. b[x. y]" value="foo" />

var_dump($_POST);
gives
array(1) {
  ["a__b"]=>
  array(1) {
    ["x. y"]=>
    string(3) "foo"
  }
}

[#4] POSTer [2009-11-13 14:28:37]

Here's a simple function to give you an uncorrupted version of $_POST:

<?php
// Function to fix up PHP's messing up POST input containing dots, etc.
function getRealPOST() {
    
$pairs explode("&"file_get_contents("php://input"));
    
$vars = array();
    foreach (
$pairs as $pair) {
        
$nv explode("="$pair);
        
$name urldecode($nv[0]);
        
$value urldecode($nv[1]);
        
$vars[$name] = $value;
    }
    return 
$vars;
}
?>

[#5] Anonymous [2008-02-13 06:46:40]

The full list of field-name characters that PHP converts to _ (underscore) is the following (not just dot):
chr(32) ( ) (space)
chr(46) (.) (dot)
chr(91) ([) (open square bracket)
chr(128) - chr(159) (various)

PHP irreversibly modifies field names containing these characters in an attempt to maintain compatibility with the deprecated register_globals feature.

[#6] vierubino dot r3m0oFdisB1T at gmail dot com [2007-08-24 21:12:14]

When you are using checkboxes to submit multiple choices, there is no need to use the complex method further down the page where you assign a unique name to each checkbox.

Instead, just name each checkbox as the same array, e.g.:

<input type="checkbox" name="items[]" value="foo" />
<input type="checkbox" name="items[]" value="bar" />
<input type="checkbox" name="items[]" value="baz" />

This way your $_POST["items"] variable will return as an array containing all and only the checkboxes that were clicked on.

[#7] t.montg AT gmail DOT com [2007-04-26 17:05:27]

For anyone else having trouble figuring out how to access values in a SELECT element from a POST or GET form, you can't set the "id" attribute to the same thing as your "name" attribute.  i.e. don't do this:

<?php
  
//Not so good
  
<select multiple="multiple" id="selectElem" name="selectElem[]">
     <
option value="ham">Ham</option>
     <
option value="cheese">Cheese</option>
     <
option value="hamcheese">Ham and Cheese</option>
  </
select>
?>


If you do the above, the variable $_POST['selectElem'] will not be set.  Instead, either change the id or name attribute so that they are dissimilar.  i.e. do this:

<?php
  
//So good (notice the new "id" value)
  
<select multiple="multiple" id="selectElemId" name="selectElem[]">
     <
option value="ham">Ham</option>
     <
option value="cheese">Cheese</option>
     <
option value="hamcheese">Ham and Cheese</option>
  </
select>
?>


Then you can access the value(s) of the SELECT element through the array $_POST['selectElem'][] or $_GET['selectElem'][].  It took me quite some time to figure out the problem.

[#8] ch1902uk at hotmail dot com [2006-03-18 11:47:35]

Regarding image input buttons, above where it says:

"When the user clicks somewhere on the image, the accompanying form will be transmitted to the server with two *additional* variables, sub_x and sub_y. These contain the coordinates of the user click within the image." 

This is the case with Firefox (and probably other standards browsers), however my experience with Internet Explorer is that when image inputs are clicked, they only submit the location of the click on the button and *not* the name of the input.

So if you have a form to move/delete entries like this

entry[]  [delete_0] [up_0] [down_0]
entry[]   [delete_1] [up_1] [down_1]
entry[]   [delete_2] [up_2] [down_2]

Then submitting the form in firefox will give you post variables such as 

<?php
   $_POST
['delete_2'];   // "Delete" - button value
   
$_POST['delete_2_x'];   // 23 - x coord 
   
$_POST['delete_2_y'];   // 3 - y coord 
?>


In IE you only get

<?php
   $_POST
['delete_2_x'];   // 23 - x coord 
   
$_POST['delete_2_y'];   // 3 - y coord 
?>


So if you are checking for what button was clicked do something like this

<?php
   
for ($i 0$i count($_POST['entry']); $i++)
   {
      if (isset(
$_POST['delete_' $i '_x']))
      {
         
// do delete
      
}
   }
?>

[#9] aescomputer AT yahoo DOT com [2005-10-27 23:01:09]

Here are two usefull functions for forms:

<?php
// clean html tags out of url attributes
    
if(!empty($_REQUEST)){
        foreach(
$_REQUEST as $x => $y){
            
$_REQUEST[$x] = str_replace('<''&lt;'str_replace('>''&gt;'$y));
        }
    }

// replace carrage returns in url attributes with <br>
    
if(!empty($_REQUEST)){
        foreach(
$_REQUEST as $x => $y){
            
$_REQUEST[$x] = str_replace("\n"'<br>'$y);
        }
    }
?>

[#10] krydprz at iit dot edu [2005-05-03 13:14:05]

This post is with regards to handling forms that have more than one submit button.

Suppose we have an HTML form with a submit button specified like this:

<input type="submit" value="Delete" name="action_button">

Normally the 'value' attribute of the HTML 'input' tag (in this case "Delete") that creates the submit button can be accessed in PHP after post like this:

<?php
$_POST
['action_button'];
?>


We of course use the 'name' of the button as an index into the $_POST array.

This works fine, except when we want to pass more information with the click of this particular button.

Imagine a scenario where you're dealing with user management in some administrative interface.  You are presented with a list of user names queried from a database and wish to add a "Delete" and "Modify" button next to each of the names in the list.  Naturally the 'value' of our buttons in the HTML form that we want to display will be "Delete" and "Modify" since that's what we want to appear on the buttons' faceplates.

Both buttons (Modify and Delete) will be named "action_button" since that's what we want to index the $_POST array with.  In other words, the 'name' of the buttons along cannot carry any uniquely identifying information if we want to process them systematically after submit. Since these buttons will exist for every user in the list, we need some further way to distinguish them, so that we know for which user one of the buttons has been pressed.

Using arrays is the way to go.  Assuming that we know the unique numerical identifier of each user, such as their primary key from the database, and we DON'T wish to protect that number from the public, we can make the 'action_button' into an array and use the user's unique numerical identifier as a key in this array.

Our HTML code to display the buttons will become:

<input type="submit" value="Delete" name="action_button[0000000002]">
<input type="submit" value="Modify" name="action_button[0000000002]">

The 0000000002 is of course the unique numerical identifier for this particular user.

Then when we handle this form in PHP we need to do the following to extract both the 'value' of the button ("Delete" or "Modify") and the unique numerical identifier of the user we wish to affect (0000000002 in this case). The following will print either "Modify" or "Delete", as well as the unique number of the user:

<?php
$submitted_array 
array_keys($_POST['action_button']);
echo (
$_POST['action_button'][$submitted_array[0]] . " " $submitted_array[0]);
?>


$submitted_array[0] carries the 0000000002.
When we index that into the $_POST['action_button'], like we did above, we will extract the string that was used as 'value' in the HTML code 'input' tag that created this button.

If we wish to protect the unique numerical identifier, we must use some other uniquely identifying attribute of each user. Possibly that attribute should be encrypted when output into the form for greater security.

Enjoy!

[#11] user: "someuser" at mai1server "ua.fm" [2005-05-02 12:17:02]

Numerous string like:

<?php
if (isset($_POST["var1"]))
    
$var1=$_POST["var1"];
else 
$var1='';
//...
if (isset($_POST["varN"]))
    
$varN=$_POST["varN"];
else 
$varN='';
?>


Can be replaced with:

<?php
get_superglobal_vars_from_POST
('var1','...','varN');

function 
get_superglobal_vars_from_POST()
{
    
$numargs func_num_args();
    
$setargs 0// for counting set variables
    
for ($i=0$i<$numargs$i++)
    {
    
$varname=func_get_arg($i);
    if (!isset(
$_POST[$varname]))
        
$result='';
    else
    {
        
$result=$_POST[$varname];
        
$setargs++;
    }    
    
$GLOBALS["$varname"]=$result;
    }
    return 
$setargs// who cares?
}
?>

[#12] tim at timpauly dot com [2005-04-30 06:57:48]

This code module can be added to every form using require_once().
It will process any and all form data, prepending each variable with
a unique identifier (so you know which method was used to get the data).

My coding could be neater, but this sure makes processing forms much easier!

<?php
// -----------------------------------------------------------------
// Basic Data PHP module. This module captures all GET, POST
// and COOKIE data and processes it into variables.
// Coded April, 2005 by Timothy J. Pauly 
// -----------------------------------------------------------------
//
// coo_ is prepended to each cookie variable
// get_ is prepended to each GET variable
// pos_ is prepended to each POST variable
// ses_ is prepended to each SESSION variable
// ser_ is prepended to each SERVER variable

session_start(); // initialize session data
$ArrayList = array("_POST""_GET""_SESSION""_COOKIE""_SERVER"); // create an array of the autoglobal arrays
// we want to process

foreach($ArrayList as $gblArray// process each array in the array list
{
   
$prefx strtolower(substr($gblArray,1,3))."_"// derive the prepend string 
// from the autoglobal type name
   
$tmpArray = $$gblArray;
   
$keys array_keys($tmpArray); // extract the keys from the array being processed
   
foreach($keys as $key// process each key
    
{
       
    
$arcnt count($tmpArray[$key]);
    
    if (
$arcnt 1// Break down passed arrays and 
// process each element seperately
    
{
      
$lcount 0;
      foreach (
$tmpArray[$key] as $dval
        { 
           
$prkey $prefx.$key// create a new key string 
// with the prepend string added
           
$prdata['$prkey'] = $dval// this step could be eliminated
           
${$prkey}[$lcount] = $prdata['$prkey']; //create new key and insert the data
           
$lcount++;
        }
      
        } else { 
// process passed single variables
        
                
$prkey $prefx.$key// create a new key string 
// with the prepend string added
                
$prdata['$prkey'] = $tmpArray[$key]; // insert the data from 
// the old array into the new one
                
$$prkey $prdata['$prkey']; // create the newly named 
// (prepended) key pair using variable variables :-)
               
                
               
}
    }
}

// -------------------------------------------------------------
?>

[#13] tmk-php at infeline dot org [2005-04-08 09:38:31]

To handle forms with or without [] you can do something like this:

<?php
    
function repairPost($data) {
        
// combine rawpost and $_POST ($data) to rebuild broken arrays in $_POST
        
$rawpost "&".file_get_contents("php://input");
        while(list(
$key,$value)= each($data)) {
            
$pos preg_match_all("/&".$key."=([^&]*)/i",$rawpost$regsPREG_PATTERN_ORDER);        
            if((!
is_array($value)) && ($pos 1)) {
                
$qform[$key] = array();
                for(
$i 0$i $pos$i++) {
                    
$qform[$key][$i] = urldecode($regs[1][$i]);
                }
            } else {
                
$qform[$key] = $value;
            }
        }
        return 
$qform;
    }

    
// --- MAIN

    
$_POST repairPost($_POST);
?>


The function will check every field in the $_POST with the raw post data and rebuild the arrays that got lost.

[#14] Murat TASARSU [2005-03-02 16:29:24]

if you want your multiple select returned variable in comma seperated form you can use this. hope that helps. regards...

$myvariable 
   Array ( [0] => one [1] => two [2] => three ) 
turns into
   one,two,three

<?php
$myvariable
="";
$myseperator="";
foreach ( 
$_POST["myvariable"] as $v) {
if (!isset(
$nofirstcomma)) $nofirstcomma=0; else $myseperator=",";
$myvariable $myvariable.$myseperator.$v;
}
echo 
$myvariable;
?>

[#15] jlratwil at yahoo dot com [2005-02-01 17:35:48]

To get multiple selected (with "multiple" ) lists in <select> tag, make sure that the "name" attribute is added to braces, like this:

<select multiple="multiple" name="users[]">
     <option value="foo">Foo</option>
     <option value="bar">Bar</option>
</select>

When submitted to PHP file (assume that you have a complete form) it will return an array of strings. Otherwise, it will just return the last element of the <select> tag you selected.

[#16] __kbanks at (__ignoreunderscores) dot gmail dot com [2005-01-17 03:05:45]

Hi all:

I'm presently building a solution to programmatically build, view, and validate HTML forms when I came across the ol' PHP non-scalar form variable handling problem.  Because my form validator class would really have no way of knowing if a given form variable was meant to be scalar or not, I decided to TREAT ALL PHP FORM VARIABLES AS ARRAYS, i.e., to use the '[]' syntax for all variables, scalar or not.  This way, the form designer need not remember to specify the '[]' syntax, and the Form->HTML transformer need not scan for every input within the form, looking for duplicate names.  This also eliminates the risk of losing data you meant to keep in an array but to which you forgot to apply the '[]' syntax.  

You may then either treat all form variables as arrays in your form handling code, or you may, as I intend to do, filter each HTML request through a Front Controller (desc. in Fowler, PoEAA).  The Front Controller would convert all arrays of length 1 to a scalar variable and leave multi-element arrays as they are.  This should essentially convert PHP's handling of non-scalar form variables to that of ASP's (or slightly better, since multiple form values of the same name will actually be arrays, not just comma-seperated values).  

This way my Form Validator class can just check if the input to validate is an array, and then apply some constraint across each element in the array.

[#17] mattij at nitro fi no at no dot no [2004-11-05 07:39:25]

If you try to refer or pass HTML-form data which has arrays with javascript remember that you should point to that array like this

<script type="text/javascript">
window.opener.document.forms[0]["to[where][we][point]"];
</script>

[#18] lennynyktyk at yahoo dot com [2004-07-09 14:42:50]

When dealing with multiple select boxes and the name=some_name[] so that PHP will understand that is needs to interpet the input as an array an not as a single value. If you want to access this in Javascript you should assign an id attribute to the select box as well as the name attribute. Then proceed to use the id attribute in Javascript to reference the select box and the name attribute to reference the select box in PHP.
Example

<select multiple id="select_id" name="select_name[]">
....

</select>

<?PHP
    
echo $select_name[0];
?>


<script language="javascript">
  document.forms[0].select_id.options[0].selected = true;
</script>

I hope you get the idea

[#19] arjini at mac dot com [2004-03-26 23:48:58]

When dealing with form inputs named_like_this[5] and javascript, instead of trying to get PHP to do something fancy as mentioned below, just try this on the javascript side of things:

<form name="myForm">

<script>
my_fancy_input_name = 'array_of_things[1]';

</script>

<input type="text" name="array_of_things[1]" value="1"/>
</form>

No fancy PHP, in fact, you shouldn't need to change your PHP at all.

[#20] jim at jamesdavis dot it [2004-01-22 11:59:20]

How to pass a numerically indexed array.
This is the part inside the form. Notice that the name is not 'english[$r]' which you would normally write, but 'english[]'. PHP adds the index when it receives the post and it starts at 0.

<?php

for ($r=0$r <= count($english)-1$r++){
         echo 
"<TEXTAREA NAME='english[]'>".$english[$r]."</TEXTAREA>";        
          
}
?>

<?php

And this will get it out at the other end
function retrieve_english(){
    for (
$r=0$r <= count($_POST['english'])-1$r++){
        echo 
$_POST['english'][$r]."<BR>";
    }
}
?>


Keys are useful but so are numerical indices!
Cheers everyone

[#21] darren at sullivan dot net [2003-12-01 08:37:18]

This function is a simple solution for getting the array of selectes from a checkbox list or a dropdown list out of the Querry String. I took an example posted earlier and simplified it. 

<?php
function multi_post_item($repeatedString) {
    
// Gets the specified array of multiple selects and/or 
    // checkboxes from the Query String
    
$ArrayOfItems = array();
    
$raw_input_items split("&"$_SERVER["QUERY_STRING"]);
    foreach (
$raw_input_items as $input_item) {
        
$itemPair split("="$input_item);
        if (
$itemPair[0] == $repeatedString) {
            
$ArrayOfItems[] = $itemPair[1];
        }
    }
    return 
$ArrayOfItems;

?>


Use the name of the field as the agrument. Example:

<?php
$Order 
$_GET['Order'];
$Name $_GET['Name'];
$States multi_post_item('States');
$Products multi_post_item('Products');
?>


Be sure to check for NULL if there are no selections or boxes checked.

[#22] soeren at hattel dot dk [2003-11-06 04:07:48]

The decision in PHP to translate a query string like:

a=2&a=3&a=4 

into one single variable a=4 is simply strupid! 

The "wonderful" hack allowing multiple values to be read only if one uses:

a[]=2&a[]=3&a[]=4

is - at first sight - a nice feature but soon become a pain in the a..!

In ASP and ASPX the first situation is handled as:

a=2,3,4

which is better than the PHP behaviour but still bad (what if your variable values contain commas?).

It seems to me that the proper behaviour would be:

a=2&a=3&a=4

automatically generates an array with all the variables inside. I know this would require proper error handling but evevy things does anyway!

[#23] kevinrlat nospam dot ccs dot neu dot edu [2003-08-07 10:47:00]

if you use an array of checkboxes to submit info to a database or what have you, be careful of the case when no boxes are checked.  for example:

<form method="post">
<input type="checkbox" name="checkstuff[]" value="0">
<input type="checkbox" name="checkstuff[]" value="1">
<input type="checkbox" name="checkstuff[]" value="2">

. . .

</form>

if these are submitted and none are checked, the $_POST['checkstuff'] variable will not contain an empty array, but a NULL value.  this bothered me when trying to implode() the values of my checkboxes to insert into a database, i got a warning saying the 2nd argument was the wrong type.  

hope this helps!
-kevin

[#24] un shift at yahoo dot com [2003-04-01 10:07:58]

This function takes a recurring form item from php://input and loads it into an array - useful for javascript/dom incompatibility with form_input_item[] names for checkboxes, multiple selects, etc.  The fread maxes out at 100k on this one.  I guess a more portable option would be pulling in ini_get('post_max_size') and converting it to an integer.

<?php
function multi_post_item($input_item_name) {
     
$array_output = array();
     
$in_handle fopen("php://input""r");
     
$raw_input_items split("&"urldecode(fread($in_handle100000)));
     foreach (
$raw_input_items as $input_item) {
            
// split this item into name/value pair
            
$item split("="$input_item);
            
// form item name
            
$item_name $item[0];
            
// form item value
            
$item_value $item[1];
            if (
$item_name == $input_item_name) {
                    
$array_output[] = $item_value;
            }
     }
     return 
$array_output;
}
?>

[#25] vb at bertola dot eu dot org [2003-03-19 09:38:56]

For what I understand, since PHP 4.3 it is possible to access the content of a POST request (or other methods as well) as an input stream named php://input, example:

readfile("php://input");   
[to display it]

or

$fp = fopen("php://input", "r");    
[to open it and then do whatever you want]

This is very useful to access the content of POST requests which actually have a content (and not just variable-value couples, which appear in $_POST).

This substitutes the old $HTTP_RAW_POST_DATA variable available in some of the previous 4.x versions. It is available for other upload methods different from POST too, but it is not available for POSTs with multipart/form-data content type, since the file upload handler has already taken care of the content in that case.

[#26] mail at paulodeon dot com [2003-03-12 05:42:50]

If you have form data that could be coming in via either GET or POST and register_globals is off (as it should be) use the empty() function to find out where the data is coming from, as in the following example

<?php
if(empty($_GET)) {
        
$clientfilter $_POST['clientfilter'];
        
$branchfilter $_POST['branchfilter'];
}
if(empty(
$_POST)) {
    
$clientfilter $_GET['clientfilter'];
    
$branchfilter $_GET['branchfilter'];
}
?>

[#27] [2003-03-04 07:21:15]

"...the dot (period, full stop) is not a valid character in a PHP variable name."

That's not completely correct, consider this example:
$GLOBALS['foo.bar'] = 'baz';
echo ${'foo.bar'};
This will output baz as expected.

[#28] keli at kmdsz dot ro [2003-02-03 07:37:29]

image type inputs apparently return their "value" argument from Mozilla, but not from IEXplorer... :(

example:

 <input type="image" name="sb" value="first" src="first.jpg">

using a mozilla will give you 
  $sb="first" AND $sb_x, $sb_y ... whereas from IE there's just no $sb. :(

[this in short form, as I'm still using trackvars :) ]

[#29] steiner277 at charter dot net [2002-07-09 17:55:22]

When accessing variables from a post, do NOT put $_POST['fieldname'] in double quotes or you will get an error message.

e.g. the following works fine:

$msg = "The message is:\t" . $_POST['message'] . "\n";

but the following will cause errors:

$msg = "The message is:\t$_POST['message']\n";

[#30] hjncom at hjncom dot net [2002-05-25 03:34:16]

I think '[' and ']' are valid characters for name attributes.

http://www.w3.org/TR/html401/interact/forms.html#h-17.4
-> InputType of 'name' attribute is 'CDATA'(not 'NAME' type)

http://www.w3.org/TR/html401/types.html#h-6.2
-> about CDATA('name' attribute is not 'NAME' type!)
...CDATA is a sequence of characters from the document character set and may include character entities...

http://www.w3.org/TR/html401/sgml/entities.html
--> about Character entity references in HTML 4
([ - &#91, ] - &#93)

[#31] jesper at codecrew dot dk [2002-05-11 07:12:01]

Just to help others with the same stupid problem i have:

I you use a checkbox in your form, it will only return the value specified in value if it is checked.

ex. <input type="checkbox" value="yes">

in php code you then write

$checkboxchecked = ($checkbox == "yes");

I guess :)

[#32] a at b dot c dot de [2002-02-03 04:49:30]

As far as whether or not "[]" in name attributes goes, The HTML4.01 specification only requires that it be a case-insensitive CDATA token, which can quite happily include "[]". Leading and trailing whitespace may be trimmed and shouldn't be used.

It is the id= attribute which is restricted, to a case-sensitive NAME token (not to be confused with a name= attribute).

[#33] carl_steinhilber at NOSPAMmentor dot com [2002-01-30 14:19:11]

A group of identically-named checkbox form elements returning an array is a pretty standard feature of HTML forms. It would seem that, if the only way to get it to work is a non-HTML-standard-compliant workaround, it's a problem with PHP.

Since the array is passed in the header in a post, or the URL in a get, it's the PHP interpretation of those values that's failing.

[#34] yasuo_ohgaki at hotmail dot com [2001-03-11 04:02:25]

Important:  Pay attention to the following security concerns when handling user submitted  data :

http://www.php.net/manual/en/security.registerglobals.php
http://www.php.net/manual/en/security.variables.php

上一篇: 下一篇: