| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2016-04-21 14:28 UTC] remi@php.net
 
-Status: Open
+Status: Feedback
  [2016-04-21 14:28 UTC] remi@php.net
  [2016-05-01 04:22 UTC] pecl-dev at lists dot php dot net
  | 
    |||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 05:00:01 2025 UTC | 
Description: ------------ When use xattr_set() on a file system which doesn't supports xattr, it returns true. Test script: --------------- // /tmp has not set user_xattr if(xattr_set('/tmp/foo.bar','name','value')) { echo(xattr_get('/tmp/foo.bar','name')); } // returns empty string Expected result: ---------------- xattr_set() should return false on filesystem without xattr support.