このサイトについて
PHPエディタ(forWin)
PHP入門&TIPS
PHPサンプル集
PHP& MySQL
PHPで携帯サイト
PHP&正規表現
PHP5-TIPS
PHPスクリプト
webimager
PHP掲示板
画像アップ掲示板
webshotブックマーク
CMS
PHP用レンタルサーバー
PHPツール集
PHPコード変換機
PHPマニュアル検索
PHPツールバー
PHPフォーラム
サポート掲示板
その他の技術参考資料
管理人ブログ
Smarty特集記事
関連リンク
JavaScript
スクリプトのリンク集
Webデザイナーリンク集
リンクはご自由に。
以下をお使いください。
連想配列のキーと値を逆に
array_flip
を使います。
$hash = array(
'1'=>'one',
'2'=>'two',
'3'=>'three',
);
$hash2 = array_flip($hash);
array_flip すると、
$hash2 = array(
'one'=>'1',
'two'=>'2',
'three'=>'3',
);
のように反転できます。
スポンサードリンク
PHPサンプル集
管理人の新着ブログ記事
プライバシーポリシー
|
お問い合わせ
copyright © 2003-2024 phpspot all rights reserved. powered by phpspot CMS.