First add for test tools.

This commit is contained in:
Laurent Destailleur 2009-12-14 00:01:22 +00:00
parent af4033e4b4
commit 9d4551d9a8

11
dev/test/testutf.php Normal file
View File

@ -0,0 +1,11 @@
<?php
// This source file must be UTF-8 encoded
$filename='filewithé';
print 'Test to create a file on disk'."\n";
$s=fopen('/tmp/'.$filename,'w');
fclose($s);
print 'Files has been created. Check its name from your explorer'."\n";
?>