Skip to content

sebastianwagner/wsdl2phpgenerator

 
 

Repository files navigation

wsdl2phpgenerator

Build Status Coverage Status

Simple WSDL to PHP classes converter. Takes a WSDL file and outputs class files ready to use.

Uses the MIT licence

Contributors

Originally developed by Fredrik Wallgren, https://github.com/walle/wsdl2phpgenerator

Includes bugfixes and improvements from:

This fork has been created in an attempt to merge changes in forks of wsdl2phpgenerator which has never made it back into the original repository.

Pull requests are very welcome.

Usage

Use the executable or the Generator class directly.

Executable

./wsdl2php -i input.wsdl -o /tmp/my/directory/wsdl

The directory is created if possible.

usage listed under ./wsdl2php -h

Code

<?php
require_once __DIR__."/path/here/Generator.php";

$generator = Generator::instance();
$generator->setDisplayCallback( function( $msg ) {
	echo "{$msg}\n";
});
$generator->generate( 
	new Config( SOAPSERVICE, SOAPDIR ) 
);
?>

About

Simple utility and class library for generating php classes from a wsdl file.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 99.9%
  • Shell 0.1%