interface FeedsExJsonPathParserInterface in Feeds extensible parsers 7
Normalizes various JSONPath implementations.
Hierarchy
- interface \FeedsExJsonPathParserInterface
Expanded class hierarchy of FeedsExJsonPathParserInterface
All classes that implement FeedsExJsonPathParserInterface
File
- src/
FeedsExJsonPath.inc, line 158 - Contains FeedsExJsonPath.
View source
interface FeedsExJsonPathParserInterface {
/**
* Searches an array via JSONPath.
*
* @param array $data
* The array to search.
* @param string $expression
* The JSONPath expression.
*
* @return mixed
* The search results.
*/
public function search(array $data, $expression);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
FeedsExJsonPathParserInterface:: |
public | function | Searches an array via JSONPath. | 1 |