Zend_MailでもZend_Dbと同様、流れるようなインターフェイス形式でコールすることもできます。
» Read more: Zend_Mail でシンプルなメール送信
Archive for 2008年1月
Zend_Mail でシンプルなメール送信
1月 22nd, 2008Zend_Session セッションの削除
1月 22nd, 2008空間ごと消すのに意外と消し方がわからなかったのでメモ。
» Read more: Zend_Session セッションの削除
誕生日から年齢を求める
1月 18th, 2008PHPで誕生日から年齢を求めるメモ
計算方法はすげー単純
$age = intval((intval(date(“Ymd”) – (誕生日19740411)) / 10000);
・・・こんだけです(汗
Smarty 出力フィルター
1月 17th, 2008EUC-JPで作ったテンプレート出力をSHIFT-JISに変更する方法。
//プラグインの登録 $smarty->plugins_dir = array('plugins',APPLICATION_PATH.'/library/plugins/'); //出力フィルターの設定 $smarty->autoload_filters( array("output"=>array("encode_euctosjis")) );
outputfilter.encode_euctosjis.php
function smarty_outputfilter_encode_euctosjis ($buff, &$smarty) { $buff = mb_convert_encoding($buff, 'SJIS', 'EUC'); return $buff; }
ただし!!
$smarty->append()を使った場合はエンコードされたのを、display()でまたエンコードされてしまいうまくいかない。。