Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有下面的 PHP 代码,所以我的问题是如何改进它?
$slug = $_SERVER['REQUEST_URI']; $myslug = substr($slug, 4); $new_slug = chop($myslug,"?lang=fr");
你可以消除所有这些变量。
$slug = chop(substr($_SERVER['REQUEST_URI'], 4),"?lang=fr");