17 lines
477 B
PHP
17 lines
477 B
PHP
--TEST--
|
|||
|
|
cac_path_parity: completely inert when no mapping is configured
|
||
|
|
--EXTENSIONS--
|
||
|
|
cac_path_parity
|
||
|
|
--INI--
|
||
|
|
variables_order=EGPCS
|
||
|
|
--ENV--
|
||
|
|
CONTEXT_DOCUMENT_ROOT=/mnt/users/bob/site.com/public_html
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
// cac-fpm / cac-litespeed never configure a mapping, so the extension must be
|
||
|
|
// a no-op there. This is the no-regression guarantee for the other tiers.
|
||
|
|
var_dump($_SERVER['CONTEXT_DOCUMENT_ROOT']);
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
string(35) "/mnt/users/bob/site.com/public_html"
|