php-src/tests
Scott MacVicar 6144da7e35 Silently casting an empty string, null or false into an object by adding a property
is pretty non-intuitive. If the same value was 1 or true you get a warning and it halts.

Since we can't break BC completely (yet) lets bump this from E_STRICT.

Also added a new section to UPGRADING for engine changes.

<?php
$x = '';
// $x = null;
// $x = false;
$x->baz = 1;
var_dump($x);

$y = 1;
$y->baz = 1;
var_dump($y);
2010-12-31 16:57:45 +00:00
..
basic - Added enable_post_data_reading ini option to allow inhibiting POST data consumption. 2010-12-09 20:35:59 +00:00
classes Silently casting an empty string, null or false into an object by adding a property 2010-12-31 16:57:45 +00:00
func More tests from 2009 testfest 2009-08-30 09:30:13 +00:00
lang - Fixed tests 2010-02-13 01:08:04 +00:00
output - CS and "de-facto" style of returning NULL for failing parse-params, sync partially with PHP_5_3 too (reordering part :) 2010-12-03 15:34:24 +00:00
run-test Fix tests (patch by Lars) 2008-07-21 12:23:38 +00:00
security Update the tests committed in r305098 (as part of the fix for bug #53226) to 2010-11-08 09:14:48 +00:00
strings Remove highlight.bg, it was removed in the old trunk and its not referenced in zend_highlight.c, meaning its not even implemented correctly in 5.3. 2010-04-21 21:56:24 +00:00
quicktester.inc - Fixed the bz2 tests. (and changed the usage comment to be correct) 2002-03-20 02:16:34 +00:00