Language feature of PHP: A variable variable takes the value of a variable and treats that as the name of a variable.
0
votes
0answers
19 views
PHP templating variables - smarty style (or other better style) and unlimited depth
I'm working on a template system that first and foremost needs to be efficient and secondly needs to be easily readable.
I have done something nearly identical before, but it involved preg_match_all ...
0
votes
3answers
40 views
Variable variables with $_POST
I have a long list of variables with a number at the end. For example address1 and I have all the way up top address14. I want to post these from a form but rather than type out $address1 = ...
2
votes
4answers
61 views
PHP: New variable from string concatenated with variable (variable-variables)
I am having a basic php problem that I haven't been able to resolve and I would also like to understand WHY!
$upperValueCB = 10;
$passNodeMatrixSource = 'CB';
$topValue= ...
1
vote
3answers
58 views
php - use variable variable in while loop
I'm a bit confused about variable variables.
What I like to do is print the value of $var1, $var2 and $var3:
$var1 = 'a';
$var2 = 'b';
$var3 = 'c';
$i = 1;
while ( $i <=3 ) {
echo $var.$i;
...
2
votes
2answers
61 views
PHP: Assign value to variable private static class property that is an array from inside class definition
I would like to access and assign values to private static class properties and I would like to do the assigning using the concept of 'variable variables'. Accessing works, but assigning does not ...
3
votes
2answers
39 views
def'ine a value with a dynamic name
So I want to pass a function to the "name" portion of def.
The problem is:
"First argument to def must be a Symbol"
I'm trying to for instance do:
(def serverNumber 5)
(def (str "server" ...
0
votes
2answers
36 views
access to member of object in php with value of parameter? [closed]
i want return on of properties of myobject like this code :
class myobject{
var $foo = 1;
var $bar = 2;
function getProperty($Field) {
return $this->$Field;// this line have error
...
0
votes
1answer
31 views
How do I push an element onto an array who's name is contained in a variable?
I'm making a generic php class which autoloads values into an object from a Database
To set properties I use this:
$object->$propertyName = $valueFromDB; where the value of propertyName is comes ...
1
vote
2answers
37 views
Variable variables named after constants
I have the following class:
class ClassFoo {
const MY_CONSTANT = "bar";
function __construct() {
$my_object = new stdClass;
// This does not work
$my_object->$ClassFoo::MY_CONSTANT ...
0
votes
1answer
73 views
Dynamically modify a static variable variable array
Similar to this question
Dynamically call a static variable (array)
, but for writing to the variables.
I'm trying to initialize a couple static arrays in my constructor, but can't figure out how to ...
0
votes
3answers
107 views
PHP - assigning variable in a foreach loop
I have a variable like this
$profile = $adapter->getProfile();
Now i'm using it like this
$profile->profileurl
$profile->websiteurl
$profile->etc
Now i want to use it in a foreach ...
-1
votes
1answer
47 views
Unset multiple php variable variables
I have a whole grip of variable variables that I create in a while loop from a MySQL query:
$query = "SELECT * FROM fruit_table";
$result = mysql_query($result);
//for sake of argument, well say ...
2
votes
1answer
72 views
PHP - Node of a object - Variable name with “-” inside
As per discussion How to check if a string can be used as a variable name in PHP? the user TIM is giving there a good answer but still not solving my problem.
I am doing the call exactly like that, ...
0
votes
1answer
83 views
Referencing a multidimensional array's elements based on a string without eval
Alright I'm working with a large multidimensional array which has more information in it than I need and I want to loop through it to filter the data which I'm interested in. Sadly this ...
2
votes
2answers
243 views
Variable variables and superglobals
I'm transitioning a huge PHP software from PHP4 to PHP5 and among the many (many) problems I'm facing, the biggest one so far seems to be that the previous programmer just banqueted over the ...
2
votes
1answer
136 views
Python variable variables without eval?
Is there is a way to access variables using a variable string in python? For instance, I would like a neater way than using eval for the following:
def toggleListButtons (self):
buttons = ...
0
votes
2answers
109 views
Using array value with index as Variable Variable
The title may be a little confusing. This is my problem:
I know you can hold a variable name in another variable and then read the content of the first variable. This is what I mean:
$variable = ...
3
votes
1answer
93 views
Variable Variables in PHP from required / included files
I am writing a MVC Framework (for the purpose of learning and discovery as opposed to actually intending to use it) and I have came across a slight problem.
I have a config.php file:
...
2
votes
2answers
161 views
Getting reference to array element where array is accessible as $obj->$propName
Suppose that we have this code (simplified example):
$propertyName = 'items';
$foo = new \stdClass;
$foo->$propertyName = array(42);
At this point I 'd like to write an expression that evaluates ...
0
votes
3answers
255 views
Parse variables within string
I'm storing some strings within a *.properties file. An example of a string is:
sendingFrom=Sending emails from {$oEmails->agentName}, to {$oEmails->customerCount} people.
My function takes the ...
2
votes
2answers
76 views
variable variables, the key to my array
I found an example here that shows an example like this:
<?php
for ($i = 1; $i <= 5; $i++) {
${a.$i} = "value";
}
echo "$a1, $a2, $a3, $a4, $a5";
//Output is value, value, value, value, ...
0
votes
2answers
138 views
PHP Error when using variable variable to insert data into static variable
I'm not very good at this, so I'm sure this is a stupid question.
I have a class:
class debug {
private static $messages = array();
private static $errors = array();
private static $all = ...
0
votes
4answers
84 views
variable variables + objects in fields
I am trying to do something with variable variables and I got stuck on an object problem. Imagine this class setup:
class A
{
public $field = 10;
}
class B
{
public $a;
public function ...
0
votes
4answers
74 views
PHP advice: To be or not to be Variable Variables [closed]
is it useful to implement variable variables in PHP?
(Try not to leave this post just with a yes/no answer. The importance here, and for what I'm asking, is about the fundamentals of your opinion.)
...
1
vote
6answers
147 views
PHP $_GET/$_POST via variable variables
I'm attempting to dynamically access both the $_GET and $_POST arrays, among others, using variable variables. The reason I'm trying to do this is so that I can perform similar actions on multiple ...
3
votes
4answers
89 views
Unexpected behaviour with variable variables
I was trying to pass a variable that contained the name of the superglobal array I wanted a function to process, but I couldn't get it to work, it would just claim the variable in question didn't ...
-1
votes
1answer
93 views
Variable global variable?
I'm trying to automatically sanitize input on an array of global variables like so:
$sanitize = array('_POST', '_GET', '_REQUEST', '_COOKIE', '_SESSION');
foreach($sanitize as $type){
$property = ...
0
votes
1answer
152 views
OO PHP returning all private variables as variables on page
I have the following class, which has a lot of private variables.
class plantOfTheMonth {
//Declare which centre(s) are being used
private $centre = "";
//Declare the attributes of the current ...
0
votes
3answers
130 views
Variable variables in JavaScript
according to my knowledge, this feature already exists in PHP. lets look at the following php code:
$color = 'red';
$$color = 'dark';
description of the feature:
Sometimes it is convenient to be ...
0
votes
2answers
104 views
Using variable variables in simple PHP function
The other day I was given this huge set of arrays and told to make a HTML page with a bunch or selects/radio buttons so I wrote some simple functions to simplify things.
This is my function to ...
3
votes
3answers
183 views
is it bad practice to use variable variables in php in the following fashion?
For example, a simple mvc type system:
/api/class/method rewritten into php variables using .htaccess/nginx.conf
then doing something like:
<?php
// Set up class + method variables
$className = ...
-1
votes
3answers
512 views
Call defined constant from variable variable
I am trying to refer to a defined constant in a separate function.
The errors I am getting refer to the variable not defined and the variable defined as a constant for each FOO and BAR.
class Boo {
...
1
vote
3answers
176 views
PHP: setting session variables through variable variables
I would like to set a session variable with something akin to:
$key = '_SESSION[element]';
$$key = 'value';
This does indeed set $_SESSION['element'] equal to value, but it also seems to clear the ...
-1
votes
3answers
75 views
Variable variables, functions and classes
I just recently discovered variable variables in PHP, needless to say, it´s usefulness is immense:
$name = "ABC";
$$name = "DEF";
echo ${"ABC"}; //Gives: DEF
That got me thinking, which brings us ...
5
votes
1answer
460 views
Is the dollar sign in a variable variable considered the dereference operator?
I was showing someone how you can create variable variable variables in PHP (I'd only recommend using them NEVER, it's horrible practice and you are a bad person if you use variable variable variables ...
0
votes
3answers
50 views
Displaying Dynamic Variable Value
I have a form that will ultimately create a pipe delimited text file. The form contains multiple rows each row has multiple drop down fields named 1_cat[], 2_cat[], 3_cat[] etc.
In the form ...
2
votes
2answers
81 views
How can I print $title1 $title2 $title3… using a for loop in PHP
I want to print these variables using a for loop:
<?php
$title1 = "TEXT1";
$title2 = "TEXT2";
$title3 = "TEXT3";
$title4 = "TEXT4";
$title5 = "TEXT5";
for ($i = 1; $i <= 10; $i++) {
echo ...
1
vote
3answers
48 views
Obtaining a variable value when echoing its name inside a for loop
I'm learning and I've been stuck for so long now with something I believe is too simple, sorry if I'm right.
Please help me to evolve, here's my question:
I have coming from a form:
$text1 = ...
3
votes
4answers
2k views
How do I import variable packages in Python like using variable variables ($$) in PHP?
I want to import some package depending on which value the user chooses.
The default is file1.py:
from files import file1
If user chooses file2, it should be :
from files import file2
In PHP, I ...
4
votes
1answer
3k views
How do I dynamically create the variable name in a PHP loop?
Ok so i have this php foreach loop
<?php foreach ($step_count->rows as $step) { ?>
and $step will be the step numbers 1, 2, 3, 4, 5 up to the total steps
within the loop i a need to set ...
0
votes
2answers
332 views
PHP - Variable Variables & array_merge() - not working
I have a bunch of arrays, which are stored in different variables like $required, $reserved, etc...
I would like to allow (inside a function) an array of options to be passed (like $options = ...
0
votes
4answers
169 views
php variable variables and array or straight code?
I am using code igniter.
I have quite a large list of items being sent through post, some will be set, some wont be.
I have two ways of approaching the same problem.
/*DYNAMIC CODING */
$fields = ...
0
votes
12answers
832 views
PHP: Class property chaining in variable variables
So, I have a object with structure similar to below, all of which are returned to me as stdClass objects
$person->contact->phone;
$person->contact->email;
...
2
votes
4answers
118 views
PHP Globals access issue when using a variable variable
I have this line in a class function:
$this_value = eval("return $$existing_value;");
This gives me the value I need when the $$existing_value variable is set in the function, but I've found that I ...
0
votes
3answers
48 views
can array values be accessed by variable variables?
I have an array which I can only access correctly via variable variables, like so:
$foo['bar'] = "pie";
$fixed_name_variable = "foo['bar']";
echo $$fixed_name_variable;
Which in theroy echo's ...
1
vote
2answers
644 views
Is Variable Variable Possible?
My googlefu has failed me and I come to you for help:
Is VBA capable of having Variable Variables like PHP? I know that in PHP you can wait to declare a variable by using $$var.
Is it possible to ...
1
vote
6answers
1k views
php string name as variable in array
how take string from array define as new array,
how to code in php
$column = array("id","name","value");
let say found 3 row from mysql
want result to be like this
$id[0] = "1";
$id[1] = "6";
...
0
votes
1answer
73 views
“Variable variable” syntax
This is a question related to getting Drupal CCK fields (just in case that happens to change anything).
I have several Drupal CCK fields with similar names. They have the same name with a number at ...
0
votes
6answers
267 views
PHP - Variable variables or array for variable inside for()
I have this code that generates an HTML table with php:
<?php
include("numbers2.php");
echo '<table border="1">';
echo '<tr>';
for ($i = 1; $i <= 9; $i++) {
if($a1_pos_txt !== ...
7
votes
3answers
2k views
what is “$$” in PHP
I saw this code
if (is_null($$textVarName)) {
$$textVarName = $_defaultTexts[$type];
}
what is code "$$" ?

