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 代码中使用的常用名称的短名称集,谁能建议我。
例如。
Bill = William Dick = Ricard
您可以像这样定义名称。
define ("Bill", "William");
你可以像这样使用这些名称。
echo Bill;