boolean System::&cat (
string $args
)
Concatenate bestanden. Deze methode gebruikt fopen(), URLs zullen ook moeten werken.
string $args - de argumenten
boolean - TRUE on success
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');
?>