Jump to content
  • 0

Сделать массив глобальным


Lazar
 Share

Question

Есть массив в функции, надо чтобы этот массив был виден и за пределами данной функции

к примеру

function arr(){

mas['var1'] = 1;

mas['var2'] = 2;

mas['var3'] = 3;

global var1;

var1 = "text";

}

Обычную переменную я вижу так

$GLOBALS['var1'] - значение равно "text"

Хотелось бы что-нить типа такого с массивом =)

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Хм. помойму это делается немножко по-другому.

Насколько я знаю не $GLOBALS, а $_GLOBALS;

дальше...

$_GLOBALS['myArray'] = array('var1' => 'var2');

function arrFunc()
{
global $_GLOBALS;

$_GLOBALS['myArray']['new_element'] = 'Mama mia, it worked!';
}

arrFunc();

print_r($_GLOBALS['myArray']);

Но не обязательно $_GLOBALS; Можно вместо глобального массива использовать любой другой.

Потом на php.net вроде вс? есть. Не ленитесь.

Link to comment
Share on other sites

  • 0
Насколько я знаю не $GLOBALS, а $_GLOBALS;

Иду на http://ru2.php.net/global и вижу:

Пример 12-2. Использование $GLOBALS вместо global

<?php
$a = 1;
$b = 2;

function Sum()
{
$GLOBALS["b"] = $GLOBALS["a"] + $GLOBALS["b"];
}

Sum();
echo $b;
?>

Что очень странно вяжется с:

Потом на php.net вроде вс? есть. Не ленитесь.

"Не ленитесь" особо порадовало :/

Maslakoff, давайте без флуда. Тема по конкретному вопросу уже была исчерпана.

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