xref: /third_party/protobuf/php/tests/autoload.php
  • Home
  • History
  • Annotate Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/protobuf/php/tests/
1ffe3c632Sopenharmony_ci<?php
2ffe3c632Sopenharmony_ci
3ffe3c632Sopenharmony_cierror_reporting(E_ALL);
4ffe3c632Sopenharmony_ci
5ffe3c632Sopenharmony_cifunction getGeneratedFiles($dir, &$results = array())
6ffe3c632Sopenharmony_ci{
7ffe3c632Sopenharmony_ci    $files = scandir($dir);
8ffe3c632Sopenharmony_ci
9ffe3c632Sopenharmony_ci    foreach ($files as $key => $value) {
10ffe3c632Sopenharmony_ci        $path = realpath($dir.DIRECTORY_SEPARATOR.$value);
11ffe3c632Sopenharmony_ci        if (!is_dir($path)) {
12ffe3c632Sopenharmony_ci            $results[] = $path;
13ffe3c632Sopenharmony_ci        } else if ($value != "." && $value != "..") {
14ffe3c632Sopenharmony_ci            getGeneratedFiles($path, $results);
15ffe3c632Sopenharmony_ci        }
16ffe3c632Sopenharmony_ci    }
17ffe3c632Sopenharmony_ci    return $results;
18ffe3c632Sopenharmony_ci}
19ffe3c632Sopenharmony_ci
20ffe3c632Sopenharmony_ciforeach (getGeneratedFiles("generated") as $filename)
21ffe3c632Sopenharmony_ci{
22ffe3c632Sopenharmony_ci    if (!is_dir($filename)) {
23ffe3c632Sopenharmony_ci        include_once $filename;
24ffe3c632Sopenharmony_ci    }
25ffe3c632Sopenharmony_ci
26ffe3c632Sopenharmony_ci}
27ffe3c632Sopenharmony_ci
28

Indexes created Thu Nov 07 10:32:03 CST 2024