Flash管理画面作成する際のCache問題解決方法
Flash管理画面作成する際のCache問題解決方法を共有します。
1.Flash-Player(例:動画)を呼ぶURL.phpの後ろにランダムParamを追加。
例) rotation-banner.php?293808237401984
2.Flash-Player(例:動画)を呼ぶURL.phpの本文に下記のタグを追加。
Flash管理画面作成する際のCache問題解決方法を共有します。
1.Flash-Player(例:動画)を呼ぶURL.phpの後ろにランダムParamを追加。
例) rotation-banner.php?293808237401984
2.Flash-Player(例:動画)を呼ぶURL.phpの本文に下記のタグを追加。
배열 안에서 2중 정렬을 하려는 경우에 유효한 함수
를 소개한다.
http://jp2.php.net/manual/ja/function.array-multisort.php 로부터 인용.
------------
php a-t-the-r-a-t-e chir.ag
06-Jan-2006 07:10
Re: phu at kungphu, 19-Dec-2005 11:36
asort($test) will not let me specify which columns to sort ASC/DESC, NUMERIC/STRING etc.
PHP로 Design Patterns 예제 - Strategy / Observer / Command 패턴을 섞다.
// http://www.ibm.com/developerworks/library/os-php-designptrns/
////////////////////////////////////////////////
////////////////////////////////////////////////
interface IStrategy
{
function filter( $record );
}
class FindAfterStrategy implements IStrategy
{
private $_name;