PHP Classes

File: examples/testglobal.php

Recommend this page to a friend!
  Classes of Jorge Castro   PHP Validation One Library   examples/testglobal.php   Download  
File: examples/testglobal.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Validation One Library
Fetch and validate forms and request values
Author: By
Last change: Update of examples/testglobal.php
Date: 4 years ago
Size: 95 bytes
 

Contents

Class file image Download
<?php
$GLOBALS
['hello']='hello';

function
test() {
   
var_dump($GLOBALS['hello']);
}

test();