Jump to content
  • 0

строка в качестве переменных


Павел
 Share

Question

Здравствуйте!

Есть задачка которую пока не могу решит :)

Есть строка:

param1=text text text;param2=12;param3=433

Мне нужно получить:

$param1=text text text;
$param2=12;
param3=433;

причем имен переменных (param1, param2, param3) в исходной строке я не знаю

Прошу помощи :P

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0
Идея такая :

$string="param1=text text text;param2=12;param3=433";
$param=explode(";", $string);
$param_one=explode("=",$param[0]);
$$param_one[0]=$param_one[1];
Echo $param1;

А остальное доработаете сами ...

да, спасибо! с этим я разобрался. здесь все понятно.

главный вопрос как отличить param1 от param2, если скажем в иходной строке их местами поменять?

нужно что-то типа метода

get_param_name($$param_one[0])

или я что-то туплю? :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy