git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
24 lines
432 B
PHP
24 lines
432 B
PHP
<?php
|
|
|
|
require_once("../../config/dmsDefaults.php");
|
|
|
|
require_once(KT_LIB_DIR . '/filelike/fsfilelike.inc.php');
|
|
|
|
$sFilename = "critique-of-pure-reason.txt";
|
|
|
|
$norm = file_get_contents($sFilename);
|
|
|
|
$tmpfile = "tmp-critique-of-pure-reason.txt";
|
|
|
|
$f = new KTFSFileLike($tmpfile);
|
|
$f->open("w");
|
|
$f->write($norm);
|
|
$f->close();
|
|
|
|
$fcont = file_get_contents($tmpfile);
|
|
unlink($tmpfile);
|
|
|
|
if ($norm === $fcont) {
|
|
print "SUCCESS\n";
|
|
}
|