यह संभव है।
$mysqli->query($long_running_sql, MYSQLI_ASYNC);
echo 'run other stuff';
$result = $mysqli->reap_async_query(); //gives result (and blocks script if query is not done)
$resultArray = $result->fetch_assoc();
या यदि आप ब्लॉकिंग कॉल नहीं करना चाहते हैं तो आप mysqli_poll का उपयोग कर सकते हैं
http://php.net/manual/en/mysqli.poll.php ए>