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中是否有任何方法可以在出错时将浏览器重定向到新页面,同时保持错误日志记录?
example.com/error
Consider this code:
static void Main(string[] args) { Log("Test");//Call Log(object obj) Log(new List<string>{"Test","Test2"});;//Also Call Log(object obj) }