How to get IP address of client machine in Slim Framework?
Our most extensive Slim framework interview questions and answers can help developers crack any job interview.
$request->getAttribute('ip_address').
OR
$requestIP = $request->getServerParam('REMOTE_ADDR');
BY Best Interview Question ON 30 Jan 2019