80763b3e64
These tests ensure optimizations in the chdir calls don't break SAPI semantics.
8 lines
104 B
PHP
8 lines
104 B
PHP
<?php
|
|
if (isset($_GET['chdir'])) {
|
|
chdir($_GET['chdir']);
|
|
}
|
|
|
|
echo file_get_contents('test.txt');
|
|
?>
|