We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baef0a2 commit ff57770Copy full SHA for ff57770
src/PHPDraft/In/ApibFileParser.php
@@ -33,6 +33,8 @@ public function __construct($filename = 'index.apib')
33
{
34
$this->location = pathinfo($filename, PATHINFO_DIRNAME) . '/';
35
36
+ set_include_path(get_include_path().':'.$this->location);
37
+
38
$this->full_apib = $this->get_apib($filename);
39
}
40
@@ -49,7 +51,7 @@ function get_apib($filename)
49
51
$this->file_check($filename);
50
52
$file = file_get_contents($filename);
53
$matches = [];
- preg_match_all('<!-- include\(([a-z_.\/]*?).apib\) -->', $file, $matches);
54
+ preg_match_all('<!-- include\(([a-z0-9_.\/]*?).apib\) -->', $file, $matches);
55
foreach ($matches[1] as $value) {
56
$file = str_replace('<!-- include(' . $value . '.apib) -->',
57
$this->get_apib($this->location . $value . '.apib'), $file);
0 commit comments