//ファイル一覧を表示するパスを指定する
$path = "../member";
//ディレクトリを表示する
print("ディレクトリ「".$path."」の一覧");
//文法 disk_free_space( パス )
//disk_free_spaceは指定したパスに対応するドライブの空き容量をバイト数で
//返す
print("ドライブの空き容量 ".disk_free_spac…
$string = ‘Hello World!’;
if(stristr($string, ‘earth’) === FALSE) {
echo ‘”earth” not found in string’;
}
// 出力は “earth” not found in string となります
参照元:http://www.php.net/manual/ja/function.stristr.php
この投稿へのコメント
コメントはまだありません。