1
0
mirror of https://github.com/ret-Phoenix/SmartConfigurator.git synced 2026-06-20 01:19:29 +02:00
Files
SmartConfigurator/scripts/example.php
T

11 lines
163 B
PHP
Raw Normal View History

<?php
function Main() {
$data = file_get_contents('tmp/module.txt');
$newdata = strtoupper($data);
file_put_contents('tmp/module.txt',$newdata);
}
main();
?>