System::&cat

System::&cat – Łączenie plików

Synopsis

require_once "System.php";

boolean System::&cat ( string $args )

Description

Łączy pliki. Metoda ta używa fopen(), więc można używać również adresu URL.

Parameter

  • string $args - argumenty

Return value

boolean - TRUE w przypadku powodzenia

Note

This function can be called statically.

Example

Użycie funkcji &cat()

<?php
$var 
System::cat('exemple.txt test.txt');
       
System::cat('exemple.txt test.txt > final.txt');
       
System::cat('exemple.txt test.txt >> final.txt');
?>
tworzenie katalogów (Previous) Tworzenie plików i katalogów tymczasowych (Next)
Last updated: Fri, 25 May 2012 — Download Documentation
Do you think that something on this page is wrong? Please file a bug report or add a note.
View this page in:

User Notes:

There are no user contributed notes for this page.