From: gggeek <giunta.gaetano@gmail.com> Date: Fri, 17 Apr 2015 23:34:23 +0000 (+0100) Subject: Remove legacy code from vardemo demo file X-Git-Tag: 4.0.0-alpha^2~78 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=7f511cb14b813295a06c5f4d82b1e2d9a27fb571;p=plcapi.git Remove legacy code from vardemo demo file --- diff --git a/demo/vardemo.php b/demo/vardemo.php index 4f91deb1..d24d04ec 100644 --- a/demo/vardemo.php +++ b/demo/vardemo.php @@ -2,11 +2,10 @@ <head><title>xmlrpc</title></head> <body> <?php -include_once __DIR__ . "/../vendor/autoload.php"; -include_once __DIR__ . "/../lib/xmlrpc.inc"; +include_once __DIR__ . "/../vendor/autoload.php"; -$f = new PhpXmlRpc\Request('examples.getStateName'); +$req = new PhpXmlRpc\Request('examples.getStateName'); print "<h3>Testing value serialization</h3>\n"; @@ -69,25 +68,26 @@ And turned it into nylon", "base64" print "<PRE>" . htmlentities($w->serialize()) . "</PRE>"; print "<PRE>Value of base64 string is: '" . $w->scalarval() . "'</PRE>"; -$f->method(''); -$f->addParam(new PhpXmlRpc\Value("41", "int")); +$req->method(''); +$req->addParam(new PhpXmlRpc\Value("41", "int")); print "<h3>Testing request serialization</h3>\n"; -$op = $f->serialize(); +$op = $req->serialize(); print "<PRE>" . htmlentities($op) . "</PRE>"; print "<h3>Testing ISO date format</h3><pre>\n"; $t = time(); -$date = iso8601_encode($t); +$date = PhpXmlRpc\Helper\Date::iso8601_encode($t); print "Now is $t --> $date\n"; -print "Or in UTC, that is " . iso8601_encode($t, 1) . "\n"; -$tb = iso8601_decode($date); +print "Or in UTC, that is " . PhpXmlRpc\Helper\Date::iso8601_encode($t, 1) . "\n"; +$tb = PhpXmlRpc\Helper\Date::iso8601_decode($date); print "That is to say $date --> $tb\n"; -print "Which comes out at " . iso8601_encode($tb) . "\n"; -print "Which was the time in UTC at " . iso8601_decode($date, 1) . "\n"; +print "Which comes out at " . PhpXmlRpc\Helper\Date::iso8601_encode($tb) . "\n"; +print "Which was the time in UTC at " . PhpXmlRpc\Helper\Date::iso8601_decode($date, 1) . "\n"; print "</pre>\n"; + ?> </body> </html>