Re: PHP calling PHP?

Поиск
Список
Период
Сортировка
От Steve Werby
Тема Re: PHP calling PHP?
Дата
Msg-id 034f01c0d775$4ceb04f0$6501a8c0@workstation7
обсуждение исходный текст
Ответ на RE: PHP calling PHP?  ("Christian Marschalek" <cm@chello.at>)
Ответы Re: PHP calling PHP?  (Grant <grant@conprojan.com.au>)
Список pgsql-php
"Gyozo Papp" <pgerzson@freestart.hu> wrote:
> Seriously, If you use either $HTTP_POST_VARS or $HTTP_GET_VARS (respect to
the action)
> 1: you can access the variable with its original name
($HTTP_POST_VARS['foo*bar'], in my example),
> 2: but you can't refer to it as a common global variable like : $foo*bar.
> 3: much more interesting with variable variables, try and see. I don't say
annything ... :)

Also, variables cannot have numbers in their name, but a variable variables
workaround allows them to be used.  For example:

You cannot set $1 = "something".

But you can do:

$a = 1;
$$a = "something";
echo $$a; // prints "something".

--
Steve Werby
President, Befriend Internet Services LLC
http://www.befriend.com/


---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster




В списке pgsql-php по дате отправления:

Предыдущее
От: "Christian Marschalek"
Дата:
Сообщение: Thank you:)
Следующее
От: Grant
Дата:
Сообщение: Re: PHP calling PHP?