7 月 5th, 2008
picasaで非公開に設定したアルバムをAPIを利用して取得できた。一度googleアカウントで認証処理を行ってからフィードを取得している。処理に必要なgoogle用のライブラリはzend framework1.5から同梱されているようだ。
[実行サンプル]
http://www.dotsmade.net/script/php/zf/picasa/album
Picasa Web Albums Data API/Developer’s Guide: PHP
http://code.google.com/apis/picasaweb/developers_guide_php.html
Tags: php, picasa, zend framework
Posted in computer tech | No Comments »
5 月 9th, 2008
署名付きメールアドレスからメールアドレスのみ取り出すPHPスクリプト。自動返信メールなどで使えるかな。もっと良い方法があるのかもしれないが。
$mail = "signature data <localhost@localgost>";
preg_match("/<.*>/",$mail,$str);
$list = explode(" ",$str[0]);
$pattern = array("<", ">");
$count = count($list)-1;
$mail = str_replace($pattern, "", $list[$count]);
Tags: php
Posted in computer tech | No Comments »