source: branches/version-2_5-dev/data/module/Compat/tests/constant/file.phpt @ 20119

Revision 20119, 380 bytes checked in by nanasess, 13 years ago (diff)

module 以下は svn:keywords を除外

  • Property svn:eol-style set to LF
Line 
1--TEST--
2Constant -- File System Constants
3--SKIPIF--
4<?php if (defined('FILE_USE_INCLUDE_PATH')) { echo 'skip'; } ?>
5--FILE--
6<?php
7require_once ('PHP/Compat.php');
8PHP_Compat::loadConstant('FILE');
9
10echo FILE_USE_INCLUDE_PATH, "\n";
11echo FILE_IGNORE_NEW_LINES, "\n";
12echo FILE_SKIP_EMPTY_LINES, "\n";
13echo FILE_APPEND, "\n";
14echo FILE_NO_DEFAULT_CONTEXT
15?>
16--EXPECT--
171
182
194
208
2116
Note: See TracBrowser for help on using the repository browser.