PHP Classes

File: application/modules/extensions/aws/JmesPath/JmesPath.php

Recommend this page to a friend!
  Classes of Tran Tuan   Pretty PHP S3 Files Manager   application/modules/extensions/aws/JmesPath/JmesPath.php   Download  
File: application/modules/extensions/aws/JmesPath/JmesPath.php
Role: Application script
Content type: text/plain
Description: Application script
Class: Pretty PHP S3 Files Manager
Web based interface to manage files in Amazon S3
Author: By
Last change:
Date: 8 years ago
Size: 316 bytes
 

Contents

Class file image Download
<?php
namespace JmesPath;

/**
 * Returns data from the input array that matches a JMESPath expression.
 *
 * @param string $expression Expression to search.
 * @param mixed $data Data to search.
 *
 * @return mixed|null
 */
function search($expression, $data)
{
    return
Env::search($expression, $data);
}