mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
11 lines
238 B
PHP
11 lines
238 B
PHP
<?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";
|
|
?>
|