boolean System::&cat (
string $args
)
Concatena archivos. El método usa fopen(), Las URLs deberían funcionar también.
string $args -
los argumentos
boolean - TRUE si se tiene éxito
This function can be called statically.
Using &cat()
<?php
$var = System::cat('sample.txt test.txt');
System::cat('sample.txt test.txt > final.txt');
System::cat('sample.txt test.txt >> final.txt');
?>