You've already forked SmartConfigurator
mirror of
https://github.com/ret-Phoenix/SmartConfigurator.git
synced 2026-06-20 01:19:29 +02:00
11 lines
163 B
PHP
11 lines
163 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
function Main() {
|
||
|
|
$data = file_get_contents('tmp/module.txt');
|
||
|
|
$newdata = strtoupper($data);
|
||
|
|
file_put_contents('tmp/module.txt',$newdata);
|
||
|
|
}
|
||
|
|
|
||
|
|
main();
|
||
|
|
|
||
|
|
?>
|