Skip to content

Instantly share code, notes, and snippets.

View usual-tools's full-sized avatar

Usual Tools usual-tools

View GitHub Profile
#!/bin/sh
# 別ファイルの設定値を読み込む。${HOME} からの相対パス。
source ./sample-tools/config.conf
#### - - - - - - - - - - - - - -
#### DB バックアップの設定値
# 入力値の数判定、4 より少ない場合はエラー終了
if [ $# -lt 4 ]
#!/usr/local/bin/php5
<?php
$file_path = $argv[1];
if ( file_exists($file_path) ) {
unlink($file_path);
} else {
echo "No File : {$file_path}\n";
}
<span onpaste="alert('パスワード(確認)項目は貼り付けできません'); return false;">
<input type="password" name="password_confirm" value="">
</span>
<?php
$posts = get_posts('numberposts=20&order=desc&cat=-37'); // 特定のカテゴリーを除外
foreach($posts as $post):
?>
<div>
<span class="meta"><?php echo date("Y/m/d", strtotime($post->post_date)); ?></span><br>
<a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a>
</div>
<?php endforeach; ?>
<?php
query_posts(''); // 特定のカテゴリーを除外
if (have_posts()) :
while (have_posts()) :
the_post();
?>
<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
<div class="meta"><?php the_time('Y/ m/ d') ?> by <?php the_author() ?> in <?php the_category(', '); ?></div>
<div class="detail">
<?php the_content(); ?>
@usual-tools
usual-tools / cakephp_form.php
Last active August 29, 2015 13:56
初日と終了日が同じ場合に日べつ種類を「単日」にする。http://www.7-2.jp/contents/881
<?php
// 初日と終了日が同じ場合に日べつ種類を「単日」にする
// first_date 初日
// last_date 終了日
// single_day 単日
// multi_day 複数日
// の場合
if ( !empty($this->data['Notice']['first_date']) && $this->data['Notice']['first_date']==$this->data['Notice']['last_date'] ) {
$last_date_kind = 'single_day';
} else {
@usual-tools
usual-tools / hello.1.sh
Last active August 29, 2015 13:56
bash で Hello World
#!/bin/sh
echo "Hello World ! Try72"
# 文字コードを調べる
nkf -g try/layout/index.html
Shift_JIS
ISO-2022-JP
# EUC-JP から UTF-8 に変換する
nkf -Ew --overwrite try/layout/index.html
# 改行コードを調べる (ファイルの先頭3行が表示)
cat -e try/layout/index.html | head -3
# 結果。
# 行末が $ であれば LF
# 行末が ^M$ であれば CRLF
# 行末が ^M であれば CR
# 改行コードを LF に変換する
<!-- シンプル版 -->
<?php
$options = array(
'nonuse' => '使用しない'
, 'use' => '使用する'
);
echo $this->Form->input("sample-input-name", array('type' => 'radio', 'before' => 'サービスShop', 'options' => $options));
?>
<!-- DTDL版 -->