Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am tyaga on github.
  • I am tyaga (https://keybase.io/tyaga) on keybase.
  • I have a public key ASCdasla_B3QqEsiPU9uWbQlqBPskwND_6znvwKjP7w2HAo

To claim this, I am signing this object:

@tyaga
tyaga / test1.php
Last active May 23, 2019 13:15
PHP 5.6 + opcache + mysqli
<?
function a(){}
$query = "select * from users";
$dbh = mysqli_connect(/**/);
$db_result = mysqli_query($dbh, $query);
while ($row = mysqli_fetch_array($db_result, MYSQLI_ASSOC)) {
$result[] = $row;
}