Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:30210 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 75407 invoked by uid 1010); 17 Jun 2007 16:34:25 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 75383 invoked from network); 17 Jun 2007 16:34:25 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 17 Jun 2007 16:34:25 -0000 Authentication-Results: pb1.pair.com smtp.mail=johannes@schlueters.de; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=johannes@schlueters.de; sender-id=unknown Received-SPF: error (pb1.pair.com: domain schlueters.de from 83.243.58.163 cause and error) X-PHP-List-Original-Sender: johannes@schlueters.de X-Host-Fingerprint: 83.243.58.163 mail4.netbeat.de Received: from [83.243.58.163] ([83.243.58.163:33384] helo=mail4.netbeat.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id A6/D9-25319-D8265764 for ; Sun, 17 Jun 2007 12:34:24 -0400 Received: (qmail 8284 invoked by uid 507); 17 Jun 2007 16:34:13 -0000 Received: from unknown (HELO ?192.168.1.102?) (postmaster%schlueters.de@82.135.95.200) by mail4.netbeat.de with ESMTPA; 17 Jun 2007 16:34:13 -0000 To: muquaddim Cc: internals@lists.php.net In-Reply-To: <00.05.25319.F9955764@pb1.pair.com> References: <00.05.25319.F9955764@pb1.pair.com> Content-Type: text/plain Date: Sun, 17 Jun 2007 18:33:26 +0200 Message-ID: <1182098006.3364.224.camel@johannes.nop> Mime-Version: 1.0 X-Mailer: Evolution 2.10.1 (2.10.1-4.fc7) Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] documentation of php5ts.dll and .NET wrapper From: johannes@schlueters.de (Johannes =?ISO-8859-1?Q?Schl=FCter?=) Hi muquaddim, before calling these API functions you have to initialise some data structures. The usual way to embed PHP into another environment is to provide an SAPI module which wraps PHP's APIs to something you can use from another system in a nice way. See php-src/sapi/embed/ for a quite simple SAPI module, and Sara's book (ISBN-10: 067232704X, ISBN-13: 978-0672327049) as a reference. johannes On Sun, 2007-06-17 at 21:56 +0600, muquaddim wrote: > Hi, > I have use dumpbin to get the method names of php5ts.dll file. I get many > names. > 2 of these methods are, > "php_execute_script" > "php_execute_simple_script" > > I guess these are the methods that are responsible for executing php source > (.php) files. > now I need to know, what are the parameter of these methods. How can I get > the documenttation on parameters. > If I get this I could have make a .NET wrapper. > Thanks >