| # **********************************************************
# テキストファイル一括読み込み ( 配列読みを利用 )
# FILE_IGNORE_NEW_LINES : 配列の各要素の最後に改行文字を追加しません。
# **********************************************************
function txt_get_all_array( $path ) {
$txt_array = @file( $path, FILE_IGNORE_NEW_LINES );
if ( $txt_array === FALSE ) {
return FALSE;
}
return $txt_array;
}
| |