0

我正在尝试从 php.net(下面的代码)中完成一个示例,该示例允许您创建 SDO 数据图并将其保存到 XML 字符串。

<?php
/**
 * Create an XML document from scratch
 */
try {
   $xmldas = SDO_DAS_XML::create("letter.xsd");
   try {
       $doc = $xmldas->createDocument();
       $rdo = $doc->getRootDataObject();
       $seq = $rdo->getSequence();
       $seq->insert("April 09, 2005", NULL, 'date');
       $seq->insert("Acme Inc. ", NULL, NULL);
       $seq->insert("United Kingdom. ");
       $seq->insert("Dear", NULL, NULL);
       $seq->insert("Tarun", NULL, "firstName");
       $seq->insert("Nayaraaa", NULL, "lastName");
       $rdo->lastName = "Nayar";
       $seq->insert("Please note that your order number ");
       $seq->insert(12345);
       $seq->insert(" has been dispatched today. Thanks for your business with us.");
       print($xmldas->saveString($doc));
   } catch (SDO_Exception $e) {
       print($e);
   }
} catch (SDO_Exception $e) {
   print("Problem creating an XML document: " . $e->getMessage());
}
?>

当我尝试运行代码时,出现以下错误:

Fatal error: Class 'SDO_DAS_XML' not found in C:\xampp\htdocs\test.php on line 6

4

1 回答 1

0

您需要先安装 SDO 包。

有关详细信息,请参阅SDO 安装文档

sdo.dll编辑:对于windows,如果有人已经编译了一个,你要么需要为你的php版本找到一个,要么自己构建它。

请参阅在 Windows 上安装 PHP 扩展

于 2012-08-19T21:23:05.840 回答