Using Variable Variables in PHP - Using Variable Variables with Arrays
(Page 3 of 7 )
Variable Variables make working with forms and other such user-input easier because they allow you to centralize all the available options. Getting back to my aforementioned problem, I had to figure out a way to select only the stories with the criteria that the person selected. The easiest way to go about this was to create an array to hold only the stories that fit the criteria the user specified and then create a MySQL query string with the values. Here’s the code I used:
$atts = array('comedy', 'tragedy', 'horror',
'adventure', 'poetry', 'screenplay', 'satire');
$vals = array();
for ($i = 0; $i < sizeof($atts); $i++) {
if (${$atts[$i]} == 1) {
$last = sizeof($vals);
$vals[$last] = "$atts[$i]";
}
}
$query_build = "";
for ($i = 0; $i < sizeof($vals); $i++) {
$curval = "$vals[$i] = '1'";
if ($i != (sizeof($vals) - 1)) {
$query_build .= $curval." OR ";
} else {
$query_build .= $curval;
}
}
(*note* The system running the program did not have PHP
4.0 installed at the time, which is why I did not just use array_push to add values to the array in the first loop)
The actual values of the variable variables created from the $atts array having been already passed to the program, everything was accomplished in a few lines of code rather than replicating the same process for each different characteristic, showing the efficiency of variable variables when used with forms.
Building arrays from variable variables is equally simple. If, perhaps, I wanted to include my middle and last name within the $$x variable, I could initialize it as an array with the following code:
$$x = array("Benjamin", "Seufert");
However, array elements cannot be directly accessed in
variable variable form, so outputting my entire name could be handled in one of two ways:
$temp1 = ${$x}[0];
$temp2 = ${$x}[1];
echo "$x $temp1 $temp2";
or,
echo "$x $Eric[0] $Eric[1]";
both of which would print,
Eric Benjamin Seufert
Had I tried to directly print the variable variable array
elements, I would have received the following output:
Eric Array[0] Array[1]
Next: Variable Variables with Functions >>
More PHP Articles
More By Eric Seufert