This is a discussion on What is Variable Scope in PHP? within the PHP Programming forums, part of the Web Development category; Hi all... What is Variable Scope in PHP? Thanks & Regards itbarota...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi all... In PHP you can't access a variable which is defined outside its scope. How is scope determined? In a PHP script, variables defined outside functions can't be accessed inside the functions. <?php $integer_var = 3; function print_var(){ // this will NOT print 3 since $integer_var is not in the scope of this function echo $integer_var; } print_var(); ?> Thanks... |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Scope of testing?? | ammulu | Software Testing | 3 | 01-10-2008 11:27 AM |
| scope variable | itbarota | HTML, CSS and Javascript Coding Techniques | 1 | 11-13-2007 12:29 AM |
| Transaction Scope in DotNet using C#. | S.Vinothkumar | C# Programming | 52 | 09-22-2007 01:15 AM |
| Restricting the scope of a method | Sathish Kumar | C# Programming | 3 | 09-05-2007 08:08 AM |
| Static Global Variable and Static Local Variable | vigneshgets | C and C++ Programming | 1 | 05-30-2007 11:50 AM |