You are here: Re: Getting the names of variables passed to functions « PHP Programming Language « IT news, forums, messages
Re: Getting the names of variables passed to functions

Posted by Tyno Gendo on 10/10/07 12:39

BoneIdol wrote:
> Anyway to do it? I know you can use a variable's contents as a
> variable name with $$name. With something like this:
>
> <?php
> function foo($bar)
> {
> return $bar;
> }
>
> $name = foo($variable_name);
> ?>
>
> I'd like the function foo to return a string of the variable name
> passed to it, in this case 'variable_name'. A friend of mine who does
> C ++ programming says that pointers are the way to go here,
> but as far as I know PHP doesn't support them.
>

Out of interest, why do you want to do this?

If there isn't a PHP function (there is get_defined_vars() but I don't
think this does what you want) then you could create your own class that
manages variables.

eg.

class CVar {
protected $var_name = '';
protected $var_value = '';
public function __construct( $name = '', $value = '' ) {
$this->var_name = $name;
$this->var_value = $value;
}
public function getName() { return $this->name; }
public function getValue() { return $this->value; }
public function setName($name) { $this->var_name = $name; }
public function setValue($value){ $this->var_value = $value; }
}

function foo($bar) {
return $bat->getName();
}

$myvar = new CVar('animal','dog');
echo foo( &$myvar );


OR something like that....

just curious why ;-)

.... and now someone will point a really easy way to do it and as well
and i'll look a fool... LOL

 

Navigation:

[Reply to this message]


Удаленная работа для программистов  •  Как заработать на Google AdSense  •  England, UK  •  статьи на английском  •  PHP MySQL CMS Apache Oscommerce  •  Online Business Knowledge Base  •  DVD MP3 AVI MP4 players codecs conversion help
Home  •  Search  •  Site Map  •  Set as Homepage  •  Add to Favourites

Copyright © 2005-2006 Powered by Custom PHP Programming

Сайт изготовлен в Студии Валентина Петручека
изготовление и поддержка веб-сайтов, разработка программного обеспечения, поисковая оптимизация