Searched refs:perm (Results 1 – 9 of 9) sorted by relevance
/PHP-5.5/ext/standard/tests/file/ |
H A D | 006_basic.phpt | 33 fopen($path."/perm.tmp", "w"); 34 var_dump( chmod($path."/perm.tmp", 0755 ) ); 35 printf("%o", fileperms($path."/perm.tmp") ); 39 mkdir($path."/perm"); 40 var_dump( chmod( $path."/perm", 0777 ) ); 41 printf("%o", fileperms($path."/perm") ); 49 unlink(dirname(__FILE__)."/perm.tmp"); 50 rmdir(dirname(__FILE__)."/perm");
|
/PHP-5.5/ext/phar/tests/cache_list/files/ |
H A D | phar_test.inc | 20 $perm = 0x000001B6; 26 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what) 44 …$manifest .= pack('VVVVVV', $ulen, $time, $clen, $crc32, $flags|$perm, strlen($meta)) . (binary)$m…
|
/PHP-5.5/ext/phar/tests/files/ |
H A D | phar_test.inc | 20 $perm = 0x000001B6; 26 foreach(array('comp','crc32','clen','ulen','time','flags','perm','meta','cont') as $what) 44 …$manifest .= pack('VVVVVV', $ulen, $time, $clen, $crc32, $flags|$perm, strlen($meta)) . (binary)$m…
|
/PHP-5.5/ext/standard/tests/file/windows_acls/ |
H A D | common.inc | 59 function icacls_set($path, $mode, $perm) { 65 if ($perm & PHPT_ACL_READ) $perm_entry[] = 'R'; 66 if ($perm & PHPT_ACL_WRITE) $perm_entry[] = 'W'; 67 if ($perm & PHPT_ACL_EXEC) $perm_entry[] = 'RX'; 68 if ($perm & PHPT_ACL_FULL) $perm_entry[] = 'F'; 74 if ($perm & PHPT_ACL_NONE) {
|
/PHP-5.5/ext/sysvsem/ |
H A D | sysvsem.c | 63 ZEND_ARG_INFO(0, perm) 190 long key, max_acquire = 1, perm = 0666, auto_release = 1; in PHP_FUNCTION() local 196 …if (FAILURE == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|lll", &key, &max_acquire, &perm… in PHP_FUNCTION() 206 semid = semget(key, 3, perm|IPC_CREAT); in PHP_FUNCTION()
|
/PHP-5.5/ext/standard/tests/dir/ |
H A D | scandir_variation7.phpt | 54 foreach ($permission_values as $perm) { 65 var_dump( chmod($dir_path, $perm) );
|
H A D | opendir_variation7.phpt | 57 foreach ($permission_values as $perm) { 68 var_dump( chmod($dir_path, $perm) );
|
H A D | readdir_variation5.phpt | 56 foreach($permission_values as $perm) { 66 var_dump( chmod($dir_path, $perm) );
|
/PHP-5.5/ext/sysvshm/ |
H A D | sysvshm.c | 46 ZEND_ARG_INFO(0, perm)
|
Completed in 39 milliseconds