+1 vote
in PHP by
Which of the following is not a variable scope in PHP?

a) Extern

b) Local

c) Static

d) Global

1 Answer

0 votes
by

a) Extern

Description:

The scope of a variable is defined as its range in the program under which it can be accessed. PHP has three types of variable scopes:

  • Local variable
  • Global variable
  • Static variable

Related questions

+1 vote
asked May 11, 2022 in PHP by sharadyadav1986
0 votes
asked Jun 22, 2019 in PHP by SakshiSharma
...