mirror of
https://github.com/php/php-src.git
synced 2026-04-21 23:18:13 +02:00
c0840fec9c
Closes GH-5292.
11 lines
262 B
PHP
11 lines
262 B
PHP
--TEST--
|
|
Bug #79410 (system() swallows last chunk if it is exactly 4095 bytes without newline)
|
|
--FILE--
|
|
<?php
|
|
ob_start();
|
|
system(getenv('TEST_PHP_EXECUTABLE') . ' -n -r "echo str_repeat(\".\", 4095);"');
|
|
var_dump(strlen(ob_get_clean()));
|
|
?>
|
|
--EXPECT--
|
|
int(4095)
|