How to assign value to global variable in PHP

Mona Coder

I have a global variable like

<?PHP
function PrintVariable($str){
   global ${"check" . $str} = "some value";
   echo  $checkmap;    
}
 PrintVariable('map');

but I am getting this error:

Parse error: syntax error, unexpected '=', expecting ',' or ';' in C:\wamp\www\PHP\index.php on line 3

after removing the global from the code everything work fine but I have to create global at this function.

VolkerK

There is no combined "declare global and assign value" statement in php.
You'd have to do that in two steps, e.g.

<?php
function foo($str) {
    global ${"check" . $str};
    ${"check" . $str} = "some value";
}

foo('bar');
echo $checkbar;

...but what you really should do is: avoid globals.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

XSLT : How to assign a value to global variable

From Dev

How to assign php variable value into javascript variable

From Dev

Assign value of a global variable in php from jquery file

From Dev

Assign value of global variable to object

From Dev

How to Assign value to global variable and use it in other functions in jquery/javascript?

From Dev

How to Assign Ajax data value to PHP variable

From Dev

How assign two value to one variable in php

From Dev

How to assign to a global variable in Sass?

From Dev

Assign value to a global variable in c causes error

From Dev

How to assign the variable value to radio button's value in php

From Dev

PHP assign global value the reference of another global value inside a function

From Dev

How to assign integer value of mysql row unique ID to PHP variable

From Dev

How to assign array variable using explode value in PHP?

From Dev

How to assign global enum as Tag value in XAML?

From Java

How to assign a value to a TensorFlow variable?

From Dev

how to assign cte value to variable

From Dev

How to assign .* as a value to variable in bash

From Dev

How to assign value to variable and print it

From Dev

How to assign a value to a variable in Terminal?

From Dev

How to use the value of a global variable?

From Dev

assign global variable into index

From Dev

How to unset global variable in php?

From Dev

Assign MySQL database value to PHP variable

From Dev

Assign "div id" value to the variable php

From Dev

PHP - Assign a value to a variable only if it's not false

From Dev

Is there a way to convert textbox value and assign to php variable?

From Dev

how to assign php variable to JS variable

From Dev

How to assign php variable to javascript variable

From Dev

How to assign data returned from $promise to global variable

Related Related

  1. 1

    XSLT : How to assign a value to global variable

  2. 2

    How to assign php variable value into javascript variable

  3. 3

    Assign value of a global variable in php from jquery file

  4. 4

    Assign value of global variable to object

  5. 5

    How to Assign value to global variable and use it in other functions in jquery/javascript?

  6. 6

    How to Assign Ajax data value to PHP variable

  7. 7

    How assign two value to one variable in php

  8. 8

    How to assign to a global variable in Sass?

  9. 9

    Assign value to a global variable in c causes error

  10. 10

    How to assign the variable value to radio button's value in php

  11. 11

    PHP assign global value the reference of another global value inside a function

  12. 12

    How to assign integer value of mysql row unique ID to PHP variable

  13. 13

    How to assign array variable using explode value in PHP?

  14. 14

    How to assign global enum as Tag value in XAML?

  15. 15

    How to assign a value to a TensorFlow variable?

  16. 16

    how to assign cte value to variable

  17. 17

    How to assign .* as a value to variable in bash

  18. 18

    How to assign value to variable and print it

  19. 19

    How to assign a value to a variable in Terminal?

  20. 20

    How to use the value of a global variable?

  21. 21

    assign global variable into index

  22. 22

    How to unset global variable in php?

  23. 23

    Assign MySQL database value to PHP variable

  24. 24

    Assign "div id" value to the variable php

  25. 25

    PHP - Assign a value to a variable only if it's not false

  26. 26

    Is there a way to convert textbox value and assign to php variable?

  27. 27

    how to assign php variable to JS variable

  28. 28

    How to assign php variable to javascript variable

  29. 29

    How to assign data returned from $promise to global variable

HotTag

Archive