Jump to content

How to use umask


Neptunus Maris

Recommended Posts

When and where is the best time to execute the umask function? Because everytime I create a new directory I can never read it because I'm not doing something right with the permissions.

 

Like:

 

mkdir("mynewdir", 0755); <-- or I could have.

 

 

Then when I go to access any of the files in that directory that I have copied over or something I get an error.

 

So could I do something like this?:

 

umask(0755);

mkdir("mynewdir");

 

 

 

I'm just trying understand these permission settings...I know the number settings on giving what permissions...but how to implement it properly is what I'm having trouble with.

 

Thanks,

Neptune

Your Sea God (lol)

Link to comment
https://forums.phpfreaks.com/topic/84632-how-to-use-umask/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.