leftypol/inc/functions/fs.php

18 lines
311 B
PHP
Raw Normal View History

2025-03-17 23:10:50 +01:00
<?php
namespace Vichan\Functions\Fs;
function link_or_copy(string $from, string $to) {
if (!\link($from, $to)) {
return \copy($from, $to);
}
return true;
}
2025-03-18 11:48:53 +01:00
function move_or_copy_uploaded(string $from, string $to) {
if (!\move_uploaded_file($from, $to)) {
return \copy($from, $to);
}
return true;
}