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.
有人可以请教我一点吗?我不知道如何将变量传递给 strftime 之类的函数。
例如:
$day = '%a'; echo strftime('$day', time());
我不知道如何使变量不作为文字传递。谢谢您的帮助!
对于此示例,您根本不需要引号:
echo strftime($day, time());
使用双引号而不是单引号,一切都应该没问题。