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 应用程序和 imap 服务器之间的连接。但问题是我不知道如何将 imap 资源放入单例中。每次发出新请求时,静态变量都会被删除,并且 imap 资源无法序列化。
简而言之:你不能。
您正在寻找的是所谓的persistent connection,但没有办法在 PHP 中打开与 IMAP 的持久连接。
persistent connection
serialize() 在这里对您没有帮助,因为imap_open返回“资源”,并且资源无法序列化。
imap_open