System::&cat -- concatenate files
Leírás
Concatenate files. The method uses fopen(),
URLs should work too.
Visszatérési érték
boolean - TRUE on success
Megjegyzés
Ez a függvény meghívható statikusan.
Példa
Példa 28-1. 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');
?>
|
|