source: branches/version-2_4-dev/data/module/SOAP/tools/genproxy.php @ 18493

Revision 18493, 403 bytes checked in by Yammy, 17 years ago (diff)

http://svn.ec-cube.net/open_trac/ticket/528
改行コードが混在している
php,inc,tpl,css,sql,js の拡張子のファイルに対して、
find, dos2unix にて一括変換

Line 
1<?php
2error_reporting(E_ALL);
3require_once 'SOAP/WSDL.php';
4
5/**
6 * genproxy
7 *
8 * a command line tool for generating SOAP proxies from WSDL files
9 *
10 * genproxy.php http://site/foo.wsdl > foo.php
11 *
12 */
13
14function do_wsdl($uri) {
15    $wsdl =& new SOAP_WSDL($uri);
16    print $wsdl->generateAllProxies();
17}
18echo "<?php\n\nrequire_once 'SOAP/Client.php';\n\n";
19do_wsdl($_SERVER['argv'][1]);
20echo "\n?>";
21?>
Note: See TracBrowser for help on using the repository browser.