Total members 10262 | Gratitudes |It is currently Thu May 24, 2012 5:16 am Login / Join Codemiles


All times are UTC [ DST ]




Post new topic Reply to topic  Quick reply  [ 2 posts ] 
Author Question
 Question subject: File Permission
PostPosted: Tue Sep 06, 2011 1:23 pm 

:hi:
Can u plz explain detail program about File Permissions in PHP.


TOP
  
Reply with quote  
 Question subject: Re: File Permission
PostPosted: Thu Sep 08, 2011 7:34 pm 
Offline
Mastermind
User avatar

Joined: Tue Mar 27, 2007 10:55 pm
Posts: 2279
Location: Earth
Has thanked: 39 time
Have thanks: 61 time
To control file permission in PHP you can use "chmod" function.
Code:

<?php
// Set  Permission  For Owner :Read and write.
// Everyone else : nothing
chmod("/directory/test.txt"0600);
// Set  Permission  For Owner :Read and write.
// Everyone else : read only
 
chmod("/directory/test.txt"0644);
// Set  Permission  For Owner :Everything .
// Everyone else : read and execute .

chmod("/directory/test.txt"0755);
// Set  Permission  For Owner :Everything .
// owner's group: read and execute.
// Everyone else :  nothing.
 
chmod("/directory/test.txt"0750);


// owner, group ,everyone else : read ,write execute.  
chmod("/directory/test.txt"0777);
?>


it is all about the code of permission
Code:
7       4      4
user   group  world
r+w+x    r      r
4+2+1  4+0+0  4+0+0  = 744

_________________
Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )


TOP
 Profile Send private message  
Reply with quote  
Post new topic Reply to topic Quick reply  [ 2 posts ] 
Quick reply


  

 Similar topics
 Image Insert in Excel File Using POI
 ASP file structure
 Search records from text file
 error closing file matlab save
 How to download any file in jsp.
 read php file in asp and display it as html
 javascript read file
 How to make PHP form data saved into txt file
 file exists in upper level folder link
 How to merge the data into file

All times are UTC [ DST ]


Users browsing similar posts

Users browsing this forum: No registered users and 3 guests



Jump to:  
Previous Question | Next Question 




Home
General Talks
Finished Projects
Code Library
Games
Tutorials

Java
C/C++
C-sharp
php
Script
JSP/Servlets
Ajax
ASP/ASP.net
Google SEO
Database
Communications
Phpbb3 styles
Photoshop tutorials
Flash tutorials
Find a job






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team