mirror of
https://github.com/danog/parser.git
synced 2024-12-12 17:17:23 +01:00
10 lines
96 B
PHP
10 lines
96 B
PHP
|
<?php
|
||
|
|
||
|
include 'foo.php';
|
||
|
|
||
|
include_once 'bar.php';
|
||
|
|
||
|
require 'baz.php';
|
||
|
|
||
|
require_once 'qux.php';
|