Require running from command line

This commit is contained in:
Brion Vibber 2004-12-03 10:30:50 +00:00
parent 6f5f83f05d
commit 11e0f6ecff

View file

@ -26,6 +26,11 @@
*/
/** */
if( php_sapi_name() != 'cli' ) {
die( "Run me from the command line please.\n" );
}
require_once 'UtfNormalUtil.php';
$in = fopen("DerivedNormalizationProps.txt", "rt" );