在 Windows 中安装 imap

发布于 2024-08-23 05:49:09 字数 140 浏览 8 评论 0原文

我正在尝试用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

淡淡離愁欲言轉身 2024-08-30 05:49:09

我在这里找到了这些功能

否 - 您提供的链接是这些函数的文档。

我猜你是在 Microsoft Windows 平台上,因为你已经用“windows”标记了你的问题,尽管它与 GUI 或数据窗口算法无关(将来更明确一点可能是个好主意,特别是当谈论安装软件)。

imap 扩展是 MSWindows PHP 安装的标准配置。您只需在 php.ini 中启用它,

运行

 <?php phpinfo(); ?>

即可找出您的安装使用的 ini 文件。默认的 php.ini 应该已经包含一行来加载扩展,但已注释掉:

;extension=php_imap.dll

将其更改为(或添加):

extension=php_imap.dll

请注意,如果您在网络服务器中运行 php 或作为 fastcgi,则需要重新启动它才能进行更改才能生效。

I found the functions at here

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

 <?php phpinfo(); ?>

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:

;extension=php_imap.dll

Change this to (or add):

extension=php_imap.dll

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.

孤檠 2024-08-30 05:49:09

只需更改 php.ini 文件中的某些行即可解决问题。

;扩展名=php_imap.dll

;扩展名

扩展名=php_imap.dll

just change some line in your php.ini file and problem is solve.

;extension=php_imap.dll

to

extension=php_imap.dll

盗梦空间 2024-08-30 05:49:09

如果有人在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文