IT Community - Software Programming, Web Development and Technical Support

What is Variable Scope in PHP?

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


Go Back   IT Community - Software Programming, Web Development and Technical Support > Web Development > PHP Programming

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 10-25-2007, 03:18 AM
itbarota itbarota is offline
D-Web Architect
 
Join Date: Jun 2007
Posts: 547
itbarota is on a distinguished road
Default What is Variable Scope in PHP?

Hi all...


What is Variable Scope in PHP?


Thanks & Regards
itbarota
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 10-25-2007, 03:23 AM
Pvinothkumar Pvinothkumar is offline
D-Web Analyst
 
Join Date: Sep 2007
Posts: 237
Pvinothkumar is on a distinguished road
Default Re: What is Variable Scope in PHP?

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...
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


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


All times are GMT -7. The time now is 06:31 PM.


Copyright ©2004 - 2007, DiscussWeb. All Rights Reserved.

SEO by vBSEO 3.0.0