"Johan den Boer" <me@knoware.n l> wrote in message
news:vt02a4m8m7 ng78@corp.super news.com...[color=blue]
> Hi,
>
> Is it possible to call your own written DLL functions from php ?
>
> regards
>
> Johan
>
>[/color]
Of course, this is pretty much your only option if you've used something
like VB to write your dll.
Here's an example someone posted on how to use the MSXML parser to
validate an XML schema/DTD.
krator at krator dot com (05-Nov-2002 01:51)
If you are using php on windows then install MSXML Core Services and use
their tools. This can be done by using the php COM functions.
<?php
$xmlparser = new COM("Microsoft. XMLDOM") or die("Unable to instanciate
MSXML");
echo "Loaded MSXML.\n";
$xmlparser->async="false ";
$xmlparser->validateOnPars e="true";
$xmlparser->load("d:\\xmld ata\\test.xml") ;
echo "Error Code: ";
echo $xmlparser->parseError->errorCode;
echo "Error Reason: ";
echo $xmlparser->parseError->reason;
echo "Error Line: ";
echo $xmlparser->parseError->line;
?>
Johan den Boer ha scritto:[color=blue]
> Hi,
>
> Is it possible to call your own written DLL functions from php ?
>
> regards
>
> Johan
>
>[/color]
Use
-This extension is a generic extension API to DLLs. This was originally
written to allow access to the Win32 API from PHP, although you can also
access other functions exported via other DLLs.-
Comment