diffrent between global keyword... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

diffrent between global keyword...

What is deffrent betwing global keyword and global scope ?

30th Aug 2016, 12:22 PM
vinay
vinay - avatar
1 Answer
0
When you are writing a program with oop structure or with some funtion then the area of the function is kind of local scope, or in class the class is also local scope. Otherwise everything is global scope. Variable or object that takes place in the global scope, is global keyword. <?php //this is global scope $var1; //this is a global keyword function func_name(){ //inside the function, local scope } //this is outside of the function and global scope ?>
13th Sep 2016, 5:06 PM
B M Shams Nahid
B M Shams Nahid - avatar