form with post method stops working when php extension is off

前端 未结 3 1068
别跟我提以往
别跟我提以往 2020-12-12 07:46

On my site I use htaccess url rewriting to remove php extensions completly from php files.

Php extension gets removed completly, /file.php maps to /file.

My

3条回答
  •  一生所求
    2020-12-12 08:03

    you can use this method also

    htmlspecialchars(basename($_SERVER["PHP_SELF"], '.php'), ENT_QUOTES, "utf-8")
    

提交回复
热议问题