No, PHP is server-side, and thus, cannot get any client information unless it is sent. The only thing that would be even slightly close is the user-agent: $_SERVER["HTTP_USER_AGENT"]
You can, however, get this information about the server. Check phpinfo() if you want a list of all the environment variables (i.e. $_ENV["PROCESSOR_IDENTIFIER"]).