截流自动化的商城平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

JmesPath.php 373B

1234567891011121314151617
  1. <?php
  2. namespace JmesPath;
  3. /**
  4. * Returns data from the input array that matches a JMESPath expression.
  5. *
  6. * @param string $expression Expression to search.
  7. * @param mixed $data Data to search.
  8. *
  9. * @return mixed
  10. */
  11. if (!function_exists(__NAMESPACE__ . '\search')) {
  12. function search($expression, $data)
  13. {
  14. return Env::search($expression, $data);
  15. }
  16. }