mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
14 lines
316 B
Plaintext
14 lines
316 B
Plaintext
|
--TEST--
|
||
|
Bug #66660 (Composer.phar install/update fails)
|
||
|
--STDIN--
|
||
|
<?php __CLASS__ ?>
|
||
|
--FILE--
|
||
|
<?php
|
||
|
file_put_contents(__DIR__."/bug66660.tmp.php", "<?php __CLASS__ ?>");
|
||
|
echo php_strip_whitespace(__DIR__."/bug66660.tmp.php");
|
||
|
?>
|
||
|
--CLEAN--
|
||
|
<?php unlink(__DIR__."/bug66660.tmp.php"); ?>
|
||
|
--EXPECT--
|
||
|
<?php __CLASS__ ?>
|