mirror of
https://github.com/php/php-src.git
synced 2025-01-20 10:43:40 +08:00
No short-tags!
This commit is contained in:
parent
15563f8d91
commit
a491b82c4c
@ -1,7 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug #29368 (The destructor is called when an exception is thrown from the constructor)
|
Bug #29368 (The destructor is called when an exception is thrown from the constructor)
|
||||||
--FILE--
|
--FILE--
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
class Foo
|
class Foo
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug #31720 (Invalid object callbacks not caught in array_walk())
|
Bug #31720 (Invalid object callbacks not caught in array_walk())
|
||||||
--FILE--
|
--FILE--
|
||||||
<?
|
<?php
|
||||||
$array = array('at least one element');
|
$array = array('at least one element');
|
||||||
|
|
||||||
array_walk($array, array($nonesuchvar,'show'));
|
array_walk($array, array($nonesuchvar,'show'));
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug # 32226 (SEGV with exception handler on non existing instance)
|
Bug # 32226 (SEGV with exception handler on non existing instance)
|
||||||
--FILE--
|
--FILE--
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
class A
|
class A
|
||||||
{
|
{
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug #33277 (private method accessed by child class)
|
Bug #33277 (private method accessed by child class)
|
||||||
--FILE--
|
--FILE--
|
||||||
<?
|
<?php
|
||||||
class foo {
|
class foo {
|
||||||
private function bar() {
|
private function bar() {
|
||||||
echo "private!\n";
|
echo "private!\n";
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug #30856 (ReflectionClass::getStaticProperties segfaults)
|
Bug #30856 (ReflectionClass::getStaticProperties segfaults)
|
||||||
--FILE--
|
--FILE--
|
||||||
<?
|
<?php
|
||||||
class bogus {
|
class bogus {
|
||||||
const C = 'test';
|
const C = 'test';
|
||||||
static $a = bogus::C;
|
static $a = bogus::C;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
--TEST--
|
--TEST--
|
||||||
Bug #30961 (Wrong linenumber in ReflectionClass getStartLine())
|
Bug #30961 (Wrong linenumber in ReflectionClass getStartLine())
|
||||||
--FILE--
|
--FILE--
|
||||||
<?
|
<?php
|
||||||
class a
|
class a
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user