How to perform multi queries with PHP api

Hello,
How can we perform a multi query search with the official PHP api? If it doesn’t support it “out of the box”, a workaround would be appreciated.
Thanks!

The PHP module looks like basically a wrapper around the HTTP API. (the API just forms HTTP queries and help decode the response)

You could just sidestep that completely and use a different API. The MySQL protocol API supports multi-queries, as long as use a compatible client library. The php mysqli appears to support them
https://www.php.net/manual/en/mysqli.multi-query.php
(pretty sure I’ve used that function before)

Thanks, ok i go with MySQL for that