D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
modules
/
letsencrypt
/
vendor
/
mtdowling
/
jmespath.php
/
src
/
Filename :
JmesPath.php
back
Copy
<?php namespace PleskLetsEncrypt\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 */ if (!\function_exists(__NAMESPACE__ . '\\search')) { function search($expression, $data) { return Env::search($expression, $data); } }