-1

我已经从这个链接http://phpimageworkshop.com/installation.html安装了

但是当我在 localhost 中运行 wampserver 时出现错误

demo/ImageWorkshop.php
    /index.php
    /test.jpg

在 index.php 我使用代码:

<?php
require_once('C:\\wamp\www\demo\ImageWorkshop.php');

$norwayLayer = new ImageWorkshop(array(
    "imageFromPath" => "norway.jpg",
));
?>

错误:Fatal error: Class 'ImageWorkshop' not found in C:\wamp\www\demo\index.php on line xx

4

1 回答 1

3

打开 ImageWorkshop.php 文件,然后删除命名空间声明第 3 行:

namespace PHPImageWorkshop;

命名空间包含第 5 行:

use PHPImageWorkshop\ImageWorkshopException;

然后,使用您的文本编辑器,将所有已建立的“ static::”替换为“ self::”。最后:

require_once('ImageWorkshopException.php');

我已经配置成功了,祝你好运!!!

于 2012-10-29T08:39:04.720 回答