This file is indexed.

/usr/share/php/tests/PHP_Compat/tests/constant/file.phpt is in php-compat 1.6.0a3-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Constant -- File System Constants
--SKIPIF--
<?php if (defined('FILE_USE_INCLUDE_PATH')) { echo 'skip'; } ?>
--FILE--
<?php
require_once ('PHP/Compat.php');
PHP_Compat::loadConstant('FILE');

echo FILE_USE_INCLUDE_PATH, "\n";
echo FILE_IGNORE_NEW_LINES, "\n";
echo FILE_SKIP_EMPTY_LINES, "\n";
echo FILE_APPEND, "\n";
echo FILE_NO_DEFAULT_CONTEXT
?>
--EXPECT--
1
2
4
8
16