Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
218 views

What's an actual use of variable variables?

Variable variables seem pretty cool, but I can't think of a scenario where one would actually use them in a production environment. What would such a scenario be? How were they used?
6
votes
4answers
294 views

Javascript's equivalent to PHP's $$varName [closed]

Possible Duplicate: How to access javascript variable value by creating another variable via concatenation? In PHP I can have: $theVariable = "bigToe"; $bigToe = "is broken"; such that: ...
5
votes
1answer
130 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 ...
5
votes
1answer
150 views

variable-variables in PHP

I know you can do: $hash('foo') and $$foo and also $bar[$foo], what are each of these things called?
4
votes
3answers
130 views

what is “$$” in PHP

I saw this code if (is_null($$textVarName)) { $$textVarName = $_defaultTexts[$type]; } what is code "$$" ?
4
votes
7answers
195 views

How can I simplify this redundant code?

Can someone please help me simpling this redundant piece of code? if (isset($to) === true) { if (is_string($to) === true) { $to = explode(',', $to); } $to = ...
4
votes
6answers
5k views

How do I do Variable Variables in Python?

How do I accomplish this in Python? Here is an elaborative manual entry, for instance :http://us3.php.net/manual/en/language.variables.variable.php I hear this is a bad idea in general though, and it ...
2
votes
3answers
56 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 = ...
2
votes
2answers
52 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 ...
2
votes
4answers
67 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 ...
2
votes
3answers
211 views

java String to class

I have got a bean class names as "Bean1". In my main method i have got a string containing the name of the variable. String str= "Bean1"; Now how can i use the String variable to get the class and ...
2
votes
5answers
169 views

How to check if a string can be used as a variable name in PHP?

In PHP one can use variable variables... For example... class obj { } $fieldName = "Surname"; $object = new obj(); $object->Name = "John"; $object->$fieldName = "Doe"; echo ...
2
votes
3answers
190 views

Variable variables: when useful? [closed]

Possible Duplicate: What's an actual use of variable variables? OK, this question may look a little bit point-whoreish, but I'd really like to know: when are variable variables useful? ...
2
votes
6answers
474 views

php get the variable name from other variable

look at this simple script please $c1 = $_GET[c1]; $c2 = $_GET[c2]; $c3 = $_GET[c3]; $c4 = $_GET[c4]; $c5 = $_GET[c5]; for($i = 1;$i <=5;$i++) { echo $c{$i};//or something else here :/ } how ...
2
votes
4answers
119 views

What is this loop using PHP $$ syntax doing?

I found this PHP code in an app I have to modify... $links = mysql_query($querystring); foreach (mysql_fetch_array($links) as $key=>$value) { $$key = $value; } I'm a bit stumped. Is it ...
2
votes
4answers
124 views

How would I call a method from a class with a variable?

Given this class: class Tacobell{ public function order_taco(){ echo "3 Tacos, thank you."; } public function order_burrito(){ echo "Cheesy bean and rice, please"; } } $lunch = new ...
2
votes
6answers
3k views

Variable variable class extensions in PHP--is it possible?

Is something like the following possible in PHP? $blah = 'foo1'; class foo2 extends $blah { //... } class foo1 { //... } This gives an error. I want to dynamically set $blah so I can ...
1
vote
3answers
71 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
vote
3answers
33 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 = ...
1
vote
3answers
82 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 ...
1
vote
1answer
119 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 ...
1
vote
12answers
285 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; ...
1
vote
6answers
287 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"; ...
1
vote
2answers
84 views

what happens when $$[object name] is declared

i trying to debug a php script and came across a declaration like $cart = new form; $$cart = $cart->function();
1
vote
2answers
86 views

Access Variable variables with an object

I don't really know how to decribe this problem, so I'm sorry if the title is a bit unclear. I got an object with array fields. I got the name of these fields stored in a variable and I want to reach ...
1
vote
5answers
325 views

javascript equivalent of php $$ dollar dollar

I have declared a local variable named cont in a function named validate. I am calling a function process from inside validate. I am sending the string 'cont' as argument to validate function. In the ...
1
vote
7answers
119 views

Creating Variable Variables from MySQL Values

Is it possible to create a dynamic variable in PHP based on the value that comes from mysql database? I mean, say I have a field in mysql State When I read the value in php using row['State'] from ...
1
vote
2answers
419 views

Construct a PHP variable name based on other variable values and static text

I want to tell my function which variable to call based on the day of the week. The day of the week is stored in $s_day, and the variables I want to call changes based on which day it is. e.g. I've ...
0
votes
3answers
77 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
70 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 ...
0
votes
3answers
33 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 { ...
0
votes
3answers
34 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 ...
0
votes
2answers
75 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
89 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
3answers
30 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 ...
0
votes
1answer
62 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
152 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 !== ...
0
votes
1answer
75 views

Is there any case in which PHP's variable variables make a solution clearer? [closed]

Possible Duplicate: what's an actual use of variable variables? Is there any case in which PHP's variable variables make a solution clearer? E.g. this: $a = 'hello'; $$a = 'hello, ...
0
votes
1answer
85 views

Howto make a var. name with a var. in C/C++?

i have some vars live: int foo1; int foo2; .. and i want to reach them from: for (int i = 1;i<=2;i++) { // howto get foo1 and foo2? } how to get them? EDIT, end what when it will be no ...
0
votes
4answers
253 views

Variable Variables Pointing to Arrays or Nested Objects

Is it possible to create a variable variable pointing to an array or to nested objects? The php docs specifically say you cannot point to SuperGlobals but its unclear (to me at least) if this applies ...
0
votes
7answers
195 views

How can I use a variable variable in PHP?

Here is what I am trying to do: <?php $my_str = "My String"; $str = "%my_str"; $str = str_replace("%", "$", $str); echo $str; ?> The above code prints '$my_str' to the ...
0
votes
4answers
140 views

PHP variable variables in .NET

Does .NET natively support anything similar to PHP's variable variables? If not, how1 could such a feature be most easily implemented? 1 If you think variable variables are always bad, feel free ...
0
votes
3answers
719 views

How can I access methods based on strings in an array?

Hello! I'm not even sure if this is possible, but hopefully it is in Java. I know I've done it in PHP by using variable variables and accessing a variable dynamically, but I read this isn't possible ...
-1
votes
4answers
50 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 ...