| PHP umask() Function
  Complete PHP Filesystem Reference 
 Definition and UsageThe umask() function changes the file permissions for files. This function sets PHP's umask to mask & 0777 and returns the old 
umask. However, if you call umask() without any arguments, it returns the current umask. Syntax
  
  
    | Parameter | Description |  
    | mask | Optional. Specifies the new permissions. Default is 0777 
	The mode parameter consists of four numbers: 
		The first number is always zero 
		The second number specifies permissions for the owner 
		The third number specifies permissions for the owner's user group 
		The fourth number specifies permissions for everybody else  Possible values (to set multiple permissions, add up the following 
	numbers): 
		1 = execute permissions 
		2 = write permissions 
		4 = read permissions  |  
 
  Complete PHP Filesystem Reference 
 
 
 Learn XML with <oXygen/> XML Editor - Free Trial!
|  |  | oXygen helps you learn to define,
edit, validate and transform XML documents. Supported technologies include XML Schema,
DTD, Relax NG, XSLT, XPath, XQuery, CSS. Understand in no time how XSLT and XQuery work by using the intuitive oXygen debugger! Do you have any XML related questions? Get free answers from the oXygen
XML forum
and from the video
demonstrations. 
Download a FREE 30-day trial today! | 
 
 |