mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
17 lines
347 B
PHP
17 lines
347 B
PHP
<?php
|
|
|
|
namespace PhpParser;
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
function canonicalize($str) {
|
|
// trim from both sides
|
|
$str = trim($str);
|
|
|
|
// normalize EOL to \n
|
|
$str = str_replace(array("\r\n", "\r"), "\n", $str);
|
|
|
|
// trim right side of all lines
|
|
return implode("\n", array_map('rtrim', explode("\n", $str)));
|
|
}
|