(PHP 4, PHP 5, PHP 7)
wddx_serialize_vars — Enregistre plusieurs valeurs dans un paquet WDDX
Cette fonction est a été SUPPRIMÉE à partir de PHP 7.4.0.
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.
var_name
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..
var_names
Retourne le paquet WDDX, ou false
si une erreur
survient.
Exemple #1 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>