mirror of
https://github.com/php/php-src.git
synced 2026-04-14 19:41:05 +02:00
This patch adds missing newlines, trims multiple redundant final newlines into a single one, and trims redundant leading newlines in all *.phpt sections. According to POSIX, a line is a sequence of zero or more non-' <newline>' characters plus a terminating '<newline>' character. [1] Files should normally have at least one final newline character. C89 [2] and later standards [3] mention a final newline: "A source file that is not empty shall end in a new-line character, which shall not be immediately preceded by a backslash character." Although it is not mandatory for all files to have a final newline fixed, a more consistent and homogeneous approach brings less of commit differences issues and a better development experience in certain text editors and IDEs. [1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206 [2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2 [3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
195 lines
3.7 KiB
PHP
195 lines
3.7 KiB
PHP
--TEST--
|
|
Pass uninitialised objects and arrays by reference to test implicit initialisation.
|
|
--FILE--
|
|
<?php
|
|
|
|
function refs(&$ref1, &$ref2, &$ref3, &$ref4, &$ref5) {
|
|
$ref1 = "Ref1 changed";
|
|
$ref2 = "Ref2 changed";
|
|
$ref3 = "Ref3 changed";
|
|
$ref4 = "Ref4 changed";
|
|
$ref5 = "Ref5 changed";
|
|
}
|
|
|
|
|
|
class C {
|
|
|
|
function __construct(&$ref1, &$ref2, &$ref3, &$ref4, &$ref5) {
|
|
$ref1 = "Ref1 changed";
|
|
$ref2 = "Ref2 changed";
|
|
$ref3 = "Ref3 changed";
|
|
$ref4 = "Ref4 changed";
|
|
$ref5 = "Ref5 changed";
|
|
}
|
|
|
|
function refs(&$ref1, &$ref2, &$ref3, &$ref4, &$ref5) {
|
|
$ref1 = "Ref1 changed";
|
|
$ref2 = "Ref2 changed";
|
|
$ref3 = "Ref3 changed";
|
|
$ref4 = "Ref4 changed";
|
|
$ref5 = "Ref5 changed";
|
|
}
|
|
|
|
}
|
|
|
|
echo "\n ---- Pass uninitialised array & object by ref: function call ---\n";
|
|
unset($u1, $u2, $u3, $u4, $u5);
|
|
refs($u1[0], $u2[0][1], $u3->a, $u4->a->b, $u5->a->b->c);
|
|
var_dump($u1, $u2, $u3, $u4, $u5);
|
|
|
|
echo "\n ---- Pass uninitialised arrays & objects by ref: static method call ---\n";
|
|
unset($u1, $u2, $u3, $u4, $u5);
|
|
C::refs($u1[0], $u2[0][1], $u3->a, $u4->a->b, $u5->a->b->c);
|
|
var_dump($u1, $u2, $u3, $u4, $u5);
|
|
|
|
echo "\n\n---- Pass uninitialised arrays & objects by ref: constructor ---\n";
|
|
unset($u1, $u2, $u3, $u4, $u5);
|
|
$c = new C($u1[0], $u2[0][1], $u3->a, $u4->a->b, $u5->a->b->c);
|
|
var_dump($u1, $u2, $u3, $u4, $u5);
|
|
|
|
echo "\n ---- Pass uninitialised arrays & objects by ref: instance method call ---\n";
|
|
unset($u1, $u2, $u3, $u4, $u5);
|
|
$c->refs($u1[0], $u2[0][1], $u3->a, $u4->a->b, $u5->a->b->c);
|
|
var_dump($u1, $u2, $u3, $u4, $u5);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
---- Pass uninitialised array & object by ref: function call ---
|
|
array(1) {
|
|
[0]=>
|
|
string(12) "Ref1 changed"
|
|
}
|
|
array(1) {
|
|
[0]=>
|
|
array(1) {
|
|
[1]=>
|
|
string(12) "Ref2 changed"
|
|
}
|
|
}
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
string(12) "Ref3 changed"
|
|
}
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
object(stdClass)#%d (1) {
|
|
["b"]=>
|
|
string(12) "Ref4 changed"
|
|
}
|
|
}
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
object(stdClass)#%d (1) {
|
|
["b"]=>
|
|
object(stdClass)#%d (1) {
|
|
["c"]=>
|
|
string(12) "Ref5 changed"
|
|
}
|
|
}
|
|
}
|
|
|
|
---- Pass uninitialised arrays & objects by ref: static method call ---
|
|
|
|
Deprecated: Non-static method C::refs() should not be called statically in %s on line 39
|
|
array(1) {
|
|
[0]=>
|
|
string(12) "Ref1 changed"
|
|
}
|
|
array(1) {
|
|
[0]=>
|
|
array(1) {
|
|
[1]=>
|
|
string(12) "Ref2 changed"
|
|
}
|
|
}
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
string(12) "Ref3 changed"
|
|
}
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
object(stdClass)#%d (1) {
|
|
["b"]=>
|
|
string(12) "Ref4 changed"
|
|
}
|
|
}
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
object(stdClass)#%d (1) {
|
|
["b"]=>
|
|
object(stdClass)#%d (1) {
|
|
["c"]=>
|
|
string(12) "Ref5 changed"
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
---- Pass uninitialised arrays & objects by ref: constructor ---
|
|
array(1) {
|
|
[0]=>
|
|
string(12) "Ref1 changed"
|
|
}
|
|
array(1) {
|
|
[0]=>
|
|
array(1) {
|
|
[1]=>
|
|
string(12) "Ref2 changed"
|
|
}
|
|
}
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
string(12) "Ref3 changed"
|
|
}
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
object(stdClass)#%d (1) {
|
|
["b"]=>
|
|
string(12) "Ref4 changed"
|
|
}
|
|
}
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
object(stdClass)#%d (1) {
|
|
["b"]=>
|
|
object(stdClass)#%d (1) {
|
|
["c"]=>
|
|
string(12) "Ref5 changed"
|
|
}
|
|
}
|
|
}
|
|
|
|
---- Pass uninitialised arrays & objects by ref: instance method call ---
|
|
array(1) {
|
|
[0]=>
|
|
string(12) "Ref1 changed"
|
|
}
|
|
array(1) {
|
|
[0]=>
|
|
array(1) {
|
|
[1]=>
|
|
string(12) "Ref2 changed"
|
|
}
|
|
}
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
string(12) "Ref3 changed"
|
|
}
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
object(stdClass)#%d (1) {
|
|
["b"]=>
|
|
string(12) "Ref4 changed"
|
|
}
|
|
}
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
object(stdClass)#%d (1) {
|
|
["b"]=>
|
|
object(stdClass)#%d (1) {
|
|
["c"]=>
|
|
string(12) "Ref5 changed"
|
|
}
|
|
}
|
|
}
|