在 Windows 中安装 imap
我正在尝试用 php 编写一个需要 imap 函数的脚本。 我在此处找到了这些函数。 如何在 Windows 中下载并安装它?
I'm trying to write a script in php that requires imap functions.
I found the functions at here.
How do I download and install it in windows ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
否 - 您提供的链接是这些函数的文档。
我猜你是在 Microsoft Windows 平台上,因为你已经用“windows”标记了你的问题,尽管它与 GUI 或数据窗口算法无关(将来更明确一点可能是个好主意,特别是当谈论安装软件)。
imap 扩展是 MSWindows PHP 安装的标准配置。您只需在 php.ini 中启用它,
运行
即可找出您的安装使用的 ini 文件。默认的 php.ini 应该已经包含一行来加载扩展,但已注释掉:
将其更改为(或添加):
请注意,如果您在网络服务器中运行 php 或作为 fastcgi,则需要重新启动它才能进行更改才能生效。
No - the link you provided is the documentation for the functions.
I guess you are on a Microsoft Windows platform since you've tagged your question with 'windows' even though its nothing to do with GUIs or data window algorithms (in future it might be a good idea to be a bit more explicit, particularly when talking about installing software).
The imap extension comes as standard with the MSWindows PHP installation. You just need to enable it in your php.ini
Run
To find out what ini file your installation is using. The default php.ini should already contain a line to load the extension but commented out:
Change this to (or add):
Note that if you are running php within a webserver or as fastcgi, you'll need to restart it for the change to take effect.
只需更改 php.ini 文件中的某些行即可解决问题。
;扩展名
just change some line in your php.ini file and problem is solve.
to
如果有人在 Windows 计算机上使用 XAMPP 包,请尝试在 php.ini 文件中查找 ;extension=php_imap。然后找到后删除分号,我在安装suitecrm时遇到了同样的问题。
If someone using XAMPP package on the windows machine try to look for ;extension=php_imap inside the php.ini file. And then remove the semicolon when found, I had the same issue while installing the suitecrm.