1
0
mirror of https://github.com/php/web-php.git synced 2026-03-30 19:22:17 +02:00
Files
archived-web-php/apachecon/s_varscope.php3
Rasmus Lerdorf 2424277ad8 Add main slides
1998-10-21 23:44:28 +00:00

23 lines
408 B
PHP

<?php require "header.inc"?>
<H1>Variable Scope</H1>
<UL>
<LI>Global scope
<LI>Local scope (in functions)
<?example('<?php
function setmsie() {
global $HTTP_USER_AGENT, $msie;
$msie = strstr($HTTP_USER_AGENT, "MSIE");
}
?>');?>
<LI>GLOBALS array
<?example('<?php
function setmsie() {
$GLOBALS["msie"] = strstr($GLOBALS["HTTP_USER_AGENT"], "MSIE");
}
?>');?>
</UL>
<?php require "footer.inc"?>