我正在使用:
<?php
$file = $_GET['page']; //ie: http://localhost/?page=index
include "php/{$file}.php";
?>
但我需要知道在$file
调用之前修剪变量的最安全方法是什么include
。
我在想类似的事情:
//-replace '.' with ''
//-replace '/' with ''
//-replace '\' with ''
但我确信有更好的方法,所以我请求你的帮助。我需要它非常安全。
谢谢你。