Browse Source

Reset output to match node's implementation

kaotisk 9 months ago
parent
commit
c53b5bc161
1 changed files with 1 additions and 1 deletions
  1. 1 1
      contrib/php/splice.php

+ 1 - 1
contrib/php/splice.php

@@ -84,6 +84,6 @@ if (sizeof($argv) > 2) {
     $viaHereL = array_pop($argv);
     $goHereL = array_pop($argv);
     $result = splice(labelToBits($goHereL), labelToBits($viaHereL));
-    echo "Final output: \n".  bitsToLabel($result);
+    echo bitsToLabel($result) . "\n";
 }