Skip to content

Instantly share code, notes, and snippets.

@bonjin6770
bonjin6770 / simplenote_export_split.php
Last active December 31, 2015 20:19
Simplenoteで出力したテキストファイルを分割するスクリプトです。
<?php
// simplenote-export.txtのパス
$simplenoteExportFilePath = "simplenote-export.txt";
// テキストファイルの読み込み
$fp = fopen($simplenoteExportFilePath,"r");
$readedText = array();
while(!feof($fp)){
@bonjin6770
bonjin6770 / VimでBOMを付けるには
Created February 18, 2013 14:41
[Vim]BOMを付ける方法
"Vim で BOM を付けるには
:se fenc=utf-8 bomb
"vimの改行コードをLF(unix)に変更する
set fileformat=unix