mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-23 01:03:16 +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";
|
|
?>
|