This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// 行数とページ数概算 | |
$stdIn = file_get_contents('php://stdin'); | |
$stdIn = preg_replace('/^#{1,6} /m', "\n", $stdIn); | |
$stdIn = preg_replace('/@<.+>@/sU', 'CoMeNt', $stdIn); | |
$stdIn = preg_replace("/\nCoMeNt\n/s", '', $stdIn); | |
$stdIn = preg_replace('/CoMeNt/', '', $stdIn); | |
$lines = explode("\n", $stdIn); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return array( | |
/* | |
|-------------------------------------------------------------------------- | |
| バリデーション言語行 | |
|-------------------------------------------------------------------------- | |
| | |
| 以下の言語行はバリデタークラスにより使用されるデフォルトのエラー |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$lang = array( | |
"New File" => "新規ファイル", | |
"New Folder" => "新規フォルダー", | |
"Search" => "検索", | |
"Upload Files" => "アップロード", | |
"Copy" => "コピー", | |
"Paste" => "貼付け", | |
"Rename" => "名前変更", | |
"Delete" => "削除", |