-1

我从https://github.com/jamesiarmes/php-ews下载了 PHP ews 数据库。

自动加载器:

function __autoload ($className){
  preg_match ("/^(([a-zA-Z]{5})_)?(.+)$/",$className,&$treffer); # die ersten 5 Stellen=Verzeichnisname, Weitere Zeichen=Dateiname
  if(file_exists(PROJEKT_DIR.$className.".class.php"))  include_once(PROJEKT_DIR.$className.".class.php"); 
  else{
    $pfad=SCRIPT_DIR."include/";
    if($treffer[2]) $pfad.="classes/".$treffer[2]."/";
    if(file_exists($pfad.$treffer[3].".class.php"))
      include_once($pfad.$treffer[3].".class.php");
    elseif(substr($treffer[3],-7)!="_bvstnd" and class_exists($className."_bvstnd")){
      eval("class  $className extends ".$className."_bvstnd {} ");
    }
        else{
        // Start from the base path and determine the location from the class name,
        $pfad=SCRIPT_DIR."include/php-ews";
        $include_file = $pfad . '/' . str_replace('_', '/', $className) . '.php';

        return (file_exists($include_file) ? require_once $include_file : false);

        }
  }

  #if(file_exists(SCRIPT_DIR."include/".$className.".class.php"))
  #  include_once(SCRIPT_DIR."include/".$className.".class.php");
}

它还加载一些其他文件。

然后我开始从他的网站上做指南,我开始这样做:

<?php

$host = "*********";
$username="**********";
$password="***********";
$version= "***********";

$ews = new ExchangeWebServices($host, $username, $password, $version);


$request = new EWSType_FindFolderType();
$request->Traversal = EWSType_FolderQueryTraversalType::SHALLOW;

$request->FolderShape = new EWSType_FolderResponseShapeType();

$request->FolderShape->BaseShape = EWSType_DefaultShapeNamesType::ALL_PROPERTIES;

// configure the view
$request->IndexedPageFolderView = new EWSType_IndexedPageViewType();

$request->IndexedPageFolderView->BasePoint = 'Beginning';
$request->IndexedPageFolderView->Offset = 0;

// set the starting folder as the inbox
$request->ParentFolderIds = new EWSType_NonEmptyArrayOfBaseFolderIdsType();

$request->ParentFolderIds->DistinguishedFolderId = new EWSType_DistinguishedFolderIdType();

$request->ParentFolderIds->DistinguishedFolderId->Id = EWSType_DistinguishedFolderIdNameType::INBOX;

// make the actual call
$response = $ews->FindFolder($request);

?>

起初浏览器上的站点只是加载很长时间,但后来告诉我这样的事情:class Exception is undefined. 我无法说出正确的消息,因为现在如果我加载脚本,这条消息甚至不会出现。

浏览器只是无限加载。在此之后,我什至无法使用我的 PHP 文件连接到我的服务器。我必须打开我的其他浏览器才能再次连接。

如果我在另一个浏览器中打开脚本,那么我可以再次运行脚本,但它再次加载无穷大。(我用自动加载器包含了我需要的所有文件,所以这不是问题)

有没有人遇到过这样的问题并找到了解决方案?

4

1 回答 1

0

您的自动加载器有问题。该库的默认文件是这样加载的:

$pfad=SCRIPT_DIR."include/php-ews";
$include_file = $pfad . '/' . str_replace('_', '/', $className) . '.php';

如果您的自动加载器是第一个尝试加载该异常的,它将替换“_”。如果您在该自动加载器函数中放置一个 error_log,您可能会看到$inlcude_file类似的结果

include/php-ews/EWS/Exception

而且那个文件不存在。

所以你应该修复你的自动加载器,这样它才能真正找到文件。

绝对清楚:

  • 您(代码)正在寻找课程EWS_Exception
  • 这是在文件 EWS_Exception.php 中(在项目的根目录中)
  • 当您替换所有文件时,您的自动加载器找不到该文件_

所以解决方案是修复你的自动加载器,或者只是在EWS_Exception.php某处包含该文件。

于 2015-03-23T11:41:08.733 回答