Obviously, since Windows proper is not a POSIX operating system, you cannot use PHP's POSIX support in a standard WAMP stack.
The Windows equivalent is PHP's Windows Only Extensions. This includes support for using .NET classes, which allows you to do most things that any other Windows application can do.
For example, in order to find out the owner of a file, you might use System.IO.File.GetAccessControl
as described in the answers to this question. You are likely to find existing questions and answers to address most other needs you might have.
(You may prefer to consider switching to a LAMP stack, on a virtual machine if necessary.)
Nitpicker's corner:
Windows 10 provides beta POSIX support via the Windows Subsystem for Linux, and some versions of Windows Server support Interix, another POSIX-based subsystem, but to the best of my knowledge no standard WAMP stack makes either of these directly available from PHP.
In any case, if you are using OS-specific extensions in the first place it is almost always going to be preferable to use the functionality native to the actual host operating system in order to avoid unnecessary complications. For example, retrieving the WSL owner ID for a file on an NTFS partition potentially loses information, since Linux only supports 32-bit IDs, very different to Windows SIDs.
Disclaimer: I have no idea what WSL actually does in such cases; it is entirely possible that in some scenarios this would not present an actual problem. My point is merely that having to find out how this works in order to make sure it will meet your needs is an unnecessary complication compared to either using the functionality native to Windows, or running your service on a genuine Linux host if that is your preference.