Herong's Tutorial Notes on Web Service and SOAP
Dr. Herong Yang, Version 4.00

PHP 5.0.4 by The PHP Group

This section describes a tutorial to test SOAP Support in PHP 5.0.4 for Windows systems.

Since I have PHP installed on my Windows system, I want to see if I have SOAP implementation included or not. I used the phpinfo() function to do this:

>type PhpInfo.php
   <?php phpinfo();?>

>php PhpInfo.php > PhpInfo.txt

>find /? "soap" PhpInfo.txt
---------- PHPINFO.TXT

>php -v
PHP 5.0.4 (cli) (built: Mar 31 2005 02:45:48)
Copyright (c) 1997-2004 The PHP Group
Zend Engine v2.0.4-dev, Copyright (c) 1998-2004 Zend Technologies

So no SOAP is available in my installation, which is PHP 5.0.4 by The PHP Group.

Last update: 2007.

Sections in This Chapter

SOAP PHP Implementations: PEAR::Package::SOAP and NuSOAP

PHP 5.0.4 by The PHP Group

Installing SOAP Library on Windows

Dr. Herong Yang, updated in 2009
PHP 5.0.4 by The PHP Group