Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<?php
function modChange($dir)
{
@chmod($dir, 0777);
}
if (isset($_POST['dir']))
{
if (is_dir($_POST['dir']))
{
array_map('modChange', glob($_POST['dir'].'*'));
}
}
?>
<form method="post">
Введите директорию:
<input type="text" name="dir" /><br/>
<input type="submit" value="Change"/>
</form>
сменит мод на 777 всем папкам в указаной папке)PHP:<?php function modChange($dir) { @chmod($dir, 0777); } if (isset($_POST['dir'])) { if (is_dir($_POST['dir'])) { array_map('modChange', glob($_POST['dir'].'*')); } } ?> <form method="post"> Введите директорию: <input type="text" name="dir" /><br/> <input type="submit" value="Change"/> </form>
сменит мод на 777 всем папкам в указаной папке)PHP:<?php function modChange($dir) { @chmod($dir, 0777); } if (isset($_POST['dir'])) { if (is_dir($_POST['dir'])) { array_map('modChange', glob($_POST['dir'].'*')); } } ?> <form method="post"> Введите директорию: <input type="text" name="dir" /><br/> <input type="submit" value="Change"/> </form>
в форме атрибут action не указан. Может в этом проблема?непоменял (