我在 Mac 上本地工作并尝试为自己设置权限。我找到了右键单击文件夹并选择“属性”的教程,但这是针对 PC 的,包括教程。它非常简单,你可以从这个链接中看到(如果是 PC) http://www.html.net/tutorials/php/lesson16.php
但是mac呢?我已经搜索过,但我发现的是复杂的许可。为什么不能像右键单击 PC 而不是 mac 一样简单。我会很感激一个更简单的方法。
我有一个名为 TEXT 的文件夹,我只想允许只读权限。
我已经编写了一个 php,但我在 MAMP 上看不到任何东西作为本地主机?我正在使用mac。
<html>
<head>
</head>
<body>
<?php
$file=fopen("text/readonly.txt","r"); or exit("Unable to open file!");
//Output a line of the file until the end is reached
while(!feof($file)) // end of file
{
echo fgets($file). "<br />";
}
fclose($file);
?>
</body>
</html>