0

I'm using:

HipHop VM v2.3.3 (rel) (so HHVM-fastcgi)

When I use this: $mysqli = new mysqli("... I get:

HipHop Fatal error: Class undefined: mysqli

What can this mean?

PS:
Php -v = PHP 5.4.24-1+sury.org~precise+1 (cli) (built: Jan 24 2014 11:05:09)

Bob van Luijt
  • 7,153
  • 12
  • 58
  • 101

2 Answers2

1

The mysqli extension is being worked on. It is expected to land in HHVM 2.5.0 as the 2.4.0 branch has already been cut.

https://github.com/facebook/hhvm/wiki/Release-Schedule

Paul Tarjan
  • 48,968
  • 59
  • 172
  • 213
0

Ok according to what I found, mysqli isn't implemented in hiohop, only the older mysql extention is though, you'll need to convert your db calls to use mysql not mysqli.

Also here's an issue link on github

Mohammad AbuShady
  • 40,884
  • 11
  • 78
  • 89