expect_013.phpt 176 B

1234567891011
  1. --TEST--
  2. test failing assertion when disabled (with return value)
  3. --INI--
  4. zend.assertions=0
  5. assert.exception=1
  6. --FILE--
  7. <?php
  8. var_dump(assert(false));
  9. ?>
  10. --EXPECT--
  11. bool(true)