System::&cat

System::&cat – concatenate files

Synopsis

require_once "System.php";

boolean System::&cat ( string $args )

Description

Concatenate files. The method uses fopen(), URLs should work too.

Parameter

  • string $args - the arguments

Return value

boolean - TRUE on success

Note

This function can be called statically.

Example

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');
?>
create directories (Previous) Create temporary files or directories (Next)
Last updated: Sat, 16 Feb 2019 — Download Documentation
Do you think that something on this page is wrong? Please file a bug report.
View this page in:
  • English

User Notes:

There are no user contributed notes for this page.