Jump to content

Globals


johnnyk

Recommended Posts

So you can call a global variable from a function:

$var = 'hey';
function whatever(){
  echo $GLOBALS['hey'];
}


BUT, how would you do the reverse, something like:

function whatever(){
  $var2 = 'hey';
}

Now say after that I want to echo $var2, is that possible?
Link to comment
Share on other sites

You can either return it as corbin has shown above or make your var2 var global like so:
[code]function whatever2()
{
    global $var2;

    $var2 = "hi";
}
// call our function, first
whatever2();

// now we will be able to use our variable from the function
echo $var2;[/code]

By I'd recommend you to use return rather than making your variables global. If you are going to be returning 2 or more variables. I'd return it as an array, and store the array in a variable, like so:
[code]<?php

function getVars()
{
    $var = 'hello';
    $var2 = 'hey';
    $var3 = 'bye';

    return array($var, $var2, $var3);
}

$vars = getVars();

echo '<pre>' . print_r($vars, true) . '</pre>';
?>[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • 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.