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中使用这个变量和点,但服务器删除它的点,有什么解决方案吗?
$file=adetails.php;
我无法将点更改为另一个字符。
引用你的字符串,不要依赖魔法常数。
$file=adetails.php;意味着$file = "adetails" . "php";。是“.丢失”,因为它是连接运算符而不是字符串的一部分。
$file = "adetails" . "php";
.
你要$file = "adetails.php";
$file = "adetails.php";
您似乎正在为一个变量分配一个值,而我从您的问题adetails.php中得到它是您想要分配给的字符串值$file。如果是这种情况,您需要将该字符串括在引号中:
adetails.php
$file
$file="adetails.php";