(PHP 4, PHP 5)
wddx_serialize_vars — Enregistre plusieurs valeurs dans un paquet WDDX
Sert à créer un paquet WDDX avec une structure qui contient la représentation des variables passées en arguments.
Cette fonction prend un nombre variable de paramètres.
Peut être soit une chaîne de caractères nommant une variable ou un tableau contenant des noms de variables ou d'autres tableaux, etc..
Retourne le paquet WDDX, ou FALSE si une erreur survient.
Exemple 2792. Exemple avec wddx_serialize_vars()
<?php
$a
=
1
;
$b
=
5.5
;
$c
= array(
"blue"
,
"orange"
,
"violet"
);
$d
=
"colors"
;
$clvars
= array(
"c"
,
"d"
);
echo
wddx_serialize_vars
(
"a"
,
"b"
,
$clvars
);
?>
L'exemple ci-dessus va afficher :
<wddxPacket version='1.0'><header/><data><struct><var name='a'><number>1</number></var> <var name='b'><number>5.5</number></var><var name='c'><array length='3'> <string>blue</string><string>orange</string><string>violet</string></array></var> <var name='d'><string>colors</string></var></struct></data></wddxPacket>