From: gggeek 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/?p=plcapi.git;a=commitdiff_plain;h=7f511cb14b813295a06c5f4d82b1e2d9a27fb571 Remove legacy code from vardemo demo file --- diff --git a/demo/vardemo.php b/demo/vardemo.php index 4f91deb..d24d04e 100644 --- a/demo/vardemo.php +++ b/demo/vardemo.php @@ -2,11 +2,10 @@ xmlrpc Testing value serialization\n"; @@ -69,25 +68,26 @@ And turned it into nylon", "base64" print "
" . htmlentities($w->serialize()) . "
"; print "
Value of base64 string is: '" . $w->scalarval() . "'
"; -$f->method(''); -$f->addParam(new PhpXmlRpc\Value("41", "int")); +$req->method(''); +$req->addParam(new PhpXmlRpc\Value("41", "int")); print "

Testing request serialization

\n"; -$op = $f->serialize(); +$op = $req->serialize(); print "
" . htmlentities($op) . "
"; print "

Testing ISO date format

\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 "
\n"; + ?>