Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Examples

I simple wrapper POST, GET , REQUEST or any Array in PHP

Links

Basic

//Start super Variable
$array = array("foo"=>"bar")
$array = new Varriable($array);
echo $array['foo'] ; // returns bar


//or
echo $array("foo"); // returns bar

//or
echo $array->foo ; // returns bar

//or
echo $array->foo() ; // returns bar

//or 
echo $array->find("foo"); // returns bar