PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

導入 | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

導入

導入 – File クラス導入

詳細

File は、 PHP に組み込まれたファイルとディレクトリ関数と パスを処理するいくつかの関数への簡単なインターフェースを提供します。

Example

File の使用

<?php
require_once 'File.php';

$file "/home/tal/example.txt";

//Echo the whole file
echo File::readAll($file);

//Now use a different approach
$fp = new File();

//Write a single line to the file, using a Macintosh EOL character and
//truncating the file before writing to it
$fp->writeLine($file"This is a single line"FILE_MODE_WRITE"\r");

//strip leading and trailing separators from the file path
echo $fp->stripLeadingSeparators($file);
echo 
$fp->stripTrailingSeparators($file);

?>
忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「導入」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | 導入」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: