Heim >Backend-Entwicklung >PHP-Tutorial >输入数据统一入口类

输入数据统一入口类

WBOY
WBOYOriginal
2016-07-25 09:01:57941Durchsuche
填写您的邮件地址,订阅我们的精彩内容: http://blog.qita.in/?post=494
  1. /**
  2. * 获取输入统一入口
  3. */
  4. class cls_request
  5. {
  6. private $getdata; //存储get的数据
  7. private $postdata; //存储post的数据
  8. private $requestdata; //存储request的数据
  9. private $filedata; //存储file数据
  10. private $cookiedata; //存储cookie
  11. static $_instance; //本类的实例
  12. private function __construct()
  13. {
  14. $this->getdata = self::format_data($_GET);
  15. $this->postdata = self::format_data($_POST);
  16. $this->requestdata = array_merge($this->getdata, $this->postdata);
  17. $this->cookiedata = self::format_data($_COOKIE);
  18. $this->filedata = self::format_data($_FILES);
  19. }
  20. /**
  21. * 类的初始化方法
  22. *
  23. * @return cls_request 对象
  24. */
  25. public static function get_instance()
  26. {
  27. if(!(self::$_instance instanceof self))
  28. {
  29. self::$_instance = new self();
  30. }
  31. return self::$_instance;
  32. }
  33. /**
  34. * 获取GET传递过来的数值变量
  35. *
  36. * @param string $key
  37. * @return int or big int
  38. */
  39. public function get_num($key)
  40. {
  41. if(!isset($this->getdata[$key]))
  42. {
  43. return false;
  44. }
  45. return $this->to_num($this->getdata[$key]);
  46. }
  47. /**
  48. * 获取POST传递过来的数值变量
  49. *
  50. * @param string $key
  51. * @return int or big int
  52. */
  53. public function post_num($key)
  54. {
  55. if(!isset($this->postdata[$key]))
  56. {
  57. return false;
  58. }
  59. return $this->to_num($this->postdata[$key]);
  60. }
  61. /**
  62. * 获取REQUEST传递过来的数值变量
  63. *
  64. * @param string $key
  65. * @return int or big int
  66. */
  67. public function request_num($key)
  68. {
  69. if(!isset($this->requestdata[$key]))
  70. {
  71. return false;
  72. }
  73. return $this->to_num($this->requestdata[$key]);
  74. }
  75. /**
  76. * 获取Cookie传递过来的数值变量
  77. *
  78. * @param string $key
  79. * @return int or big int
  80. */
  81. public function cookie_num($key)
  82. {
  83. if(!isset($this->cookiedata[$key]))
  84. {
  85. return false;
  86. }
  87. return $this->to_num($this->cookiedata[$key]);
  88. }
  89. /**
  90. * 获取Files传递过来的变量值
  91. *
  92. * @param string $key
  93. * @return array
  94. */
  95. public function file_data($key)
  96. {
  97. return $this->filedata[$key];
  98. }
  99. /**
  100. * 获取GET传递过来的字符串变量
  101. *
  102. * @param string $key
  103. * @param boolen $isfilter 是否过滤
  104. * @return string
  105. */
  106. public function get_string($key,$isfilter=true)
  107. {
  108. if(!isset($this->getdata[$key]))
  109. {
  110. return false;
  111. }
  112. if($isfilter)
  113. {
  114. return $this->filter_string($this->getdata[$key]);
  115. }
  116. else
  117. {
  118. return $this->getdata[$key];
  119. }
  120. }
  121. /**
  122. * 获取POST传递过来的字符串变量
  123. *
  124. * @param string $key
  125. * @param boolen $isfilter 是否过滤
  126. * @return string
  127. */
  128. public function post_string($key,$isfilter=true)
  129. {
  130. if(!isset($this->postdata[$key]))
  131. {
  132. return false;
  133. }
  134. if($isfilter)
  135. {
  136. return $this->filter_string($this->postdata[$key]);
  137. }
  138. else
  139. {
  140. return $this->postdata[$key];
  141. }
  142. }
  143. /**
  144. * 获取REQUEST传递过来的字符串变量
  145. *
  146. * @param string $key
  147. * @param boolen $isfilter 是否过滤
  148. * @return string
  149. */
  150. public function request_string($key,$isfilter=true)
  151. {
  152. if(!isset($this->requestdata[$key]))
  153. {
  154. return false;
  155. }
  156. if($isfilter)
  157. {
  158. return $this->filter_string($this->requestdata[$key]);
  159. }
  160. else
  161. {
  162. return $this->requestdata[$key];
  163. }
  164. }
  165. /**
  166. * 获取COOKIE传递过来的字符串变量
  167. *
  168. * @param string $key
  169. * @param boolen $isfilter 是否过滤
  170. * @return string
  171. */
  172. public function cookie_string($key,$isfilter=true)
  173. {
  174. if(!isset($this->cookiedata[$key]))
  175. {
  176. return false;
  177. }
  178. if($isfilter)
  179. {
  180. return $this->filter_string($this->cookiedata[$key]);
  181. }
  182. else
  183. {
  184. return $this->cookiedata[$key];
  185. }
  186. }
  187. /**
  188. * 格式化数据,将数据转存
  189. *
  190. * @param array $data
  191. */
  192. private function format_data($data)
  193. {
  194. $result = array();
  195. if(!is_array($data))
  196. {
  197. $data = array();
  198. }
  199. while(list($key, $value) = each($data))
  200. {
  201. //处理checkbox之类的数据
  202. if(is_array($value))
  203. {
  204. $result[$key]=$value;
  205. }
  206. else //普通数据
  207. {
  208. $result[$key] = trim($value);
  209. }
  210. }
  211. return $result;
  212. }
  213. /**
  214. * 转换为数字
  215. *
  216. * @param string $num
  217. * @return int or big int or false
  218. */
  219. private function to_num($num)
  220. {
  221. if(is_numeric($num))
  222. {
  223. return intval($num);
  224. }
  225. else
  226. {
  227. return false;
  228. }
  229. }
  230. /**
  231. * 转换过滤字符串
  232. *
  233. * @param string/array $data
  234. * @return string
  235. */
  236. private function filter_string($data)
  237. {
  238. if($data===NULL)
  239. {
  240. return false;
  241. }
  242. if (is_array($data))
  243. {
  244. foreach ($data as $k=>$v)
  245. {
  246. $data[$k] = htmlspecialchars($v, ENT_QUOTES);
  247. }
  248. return $data;
  249. }
  250. else
  251. {
  252. return htmlspecialchars($data, ENT_QUOTES);
  253. }
  254. }
  255. }
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn