pow-operator.phpt 389 B

12345678910111213141516171819202122
  1. --TEST--
  2. Various pow() tests
  3. --FILE--
  4. <?php // $Id$
  5. $x = 2;
  6. $x **= 3;
  7. $tests = <<<TESTS
  8. -3 ** 2 === -9
  9. (-3) **2 === 9
  10. 2 ** 3 ** 2 === 512
  11. (2 ** 3) ** 2 === 64
  12. $x === 8
  13. TESTS;
  14. echo "On failure, please mail result to php-dev@lists.php.net\n";
  15. include(dirname(__FILE__) . '/../../../../tests/quicktester.inc');
  16. --EXPECT--
  17. On failure, please mail result to php-dev@lists.php.net
  18. OK