2017 © Pedro Peláez
 

library supervariable

Varriable Filter and Manipulation for Arrays vs GET, POST , etc ... Supports Callback, regex etc.

image

oleku/supervariable

Varriable Filter and Manipulation for Arrays vs GET, POST , etc ... Supports Callback, regex etc.

  • Thursday, August 22, 2013
  • by oleku
  • Repository
  • 3 Watchers
  • 2 Stars
  • 10 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

SuperVariable

I simple wrapper POST, GET , REQUEST or any Array in PHP, (*1)

Example

$array = array(
        "foo" => "bar",
        array(
                "name" => "super"
        )
);

// Start super Variable
$array = new Varriable($array);
// Array
echo $array['foo'] ; // returns bar
// Invoke
echo $array("foo"); // returns bar
// Object
echo $array->foo ; // returns bar
// Method
echo $array->foo() ; // returns bar
// Via Offset
echo $array->offsetGet("hello");// returns bar


// Modification is Disabled by default
// Get via offsetGet
array["hello"] = "World" // throws Exception

// Can can also find for sub arrays or Object
echo $array->find("foo.name"); // returns Super


More Examples

Licence MIT

Copyright (c) 2013 Oleku Konko

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

The Versions

22/08 2013

dev-master

9999999-dev

Varriable Filter and Manipulation for Arrays vs GET, POST , etc ... Supports Callback, regex etc.

  Sources   Download

MIT

The Development Requires

by Avatar oleku

filter xss varriable search array

22/08 2013

0.1

0.1.0.0

Improved PHP POST , GET Varriable

  Sources   Download

MIT

The Development Requires

by Avatar oleku