<?php

echo("Insert breakpoint here\n");

$intvariable = 1;
$thevariable = "";

// now try to change the value
// of both variables

echo("Let's check...\n");

if ($intvariable !== 1 && $thevariable === "") {
  echo("xdebug bug!\n");
} else {
  echo("xdebug works\n");
}

