2009年12月20日 星期日

import_request_variables

使用import_request_variables函式,可將_GET、_POST、_COOKIE 變數導入於 GLOBAL全域變數,便可逕行叫用外來變數,如下:
< ?php
  import_request_variables ("gp");
  echo $myVar;
? >

import_request_variables ( string types [, string prefix])
type參數用以指定需要導入的變數,必需使用字母‘G’、‘P’和‘C’分别表示 GET、POST 和 Cookie。字母不区分大小写,所以你可以使用‘g’、‘p’和‘c’的任何组合。

prefix參數為變數名稱前置詞,比如說有個名為gender的GET變數,並設置了"pre_"為前置詞,則將得到一個$pre_gender的全域變量.
< ?php
  import_request_variables ("gp", "pre");

  echo $pre_gender;


? >

沒有留言: