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 有点新,但我有一个 PHP 脚本,它基本上检查我们在哪个月份,并据此执行某个操作。
现在,有没有办法让 php 环境“认为”我们处于不同的月份,所以我可以测试 12 个月的反应,而无需实际等待一年过去,哈哈。
function getMonth(){ return 3; } function getMonth(){ return date('n'); }
使用函数,在真实代码中使用第二个,在测试时使用第一个。
您可以使用它并将其包含在文件中,只需根据需要注释掉其中一个即可。
I have a method like this
public static LinkedList<Object> getListObjectWithConditionInXMLFile(String className){ LinkedList<Object> lstObj = new LinkedList