2

PHP symlink() 函数在 Windows 7 上失败并出现以下错误:

Warning: symlink(): Cannot create symlink, error code(3) in C:\xampp\htdocs\…\lib\model\doctrine\Website.class.php

这是一个使用 PHP 5.3.8 的 XAMPP 服务器。

从 symlink() 文档中:

5.3.0 此功能现在可在 Windows 平台(Vista、Server 2008 或更高版本)上使用。

有什么想法/建议吗?

4

3 回答 3

3

根据这个可能是 PHP 5.3 中的一个错误:

https://bugs.php.net/bug.php?id=48975

和这个:

http://forum.wampserver.com/read.php?2,64011(回复#2)

也许你可以升级到 PHP 5.4 看看它是否有效?

于 2012-11-14T10:15:49.797 回答
0

我用这个

//symlink($target, $link);
exec('mklink /j "' . str_replace('/', '\\', $link) . '" "' . str_replace('/', '\\', $target) . '"');
于 2015-06-04T12:43:47.507 回答
0

关于 Windows 操作系统上的 PHP CLI:
不要忘记使用Run as Administratorelse启动控制台symlink会返回false并引发以下错误:

Warning: symlink(): Cannot create symlink, error code(1314)
于 2018-02-23T23:11:50.433 回答