- 英
- cAMP response element-binding protein、CRE-binding protein、CREB
- 関
- CRE結合タンパク質、サイクリックAMP応答エレメント結合タンパク質、サイクリックAMP応答配列結合タンパク質
WordNet
- give an artificially banal or sexual quality to
- temporary living quarters specially built by the army for soldiers; "wherever he went in the camp the men were grumbling" (同)encampment, cantonment, bivouac
- shelter for persons displaced by war or political oppression or for religious beliefs (同)refugee camp
- a site where care and activities are provided for children during the summer months; "city kids get to see the country at a summer camp" (同)summer camp
- a penal institution (often for forced labor); "China has many camps for political prisoners"
- temporary lodgings in the country for travelers or vacationers; "level ground is best for parking and camp areas"
- a group of people living together in a camp; "the whole camp laughed at his mistake"
- something that is considered amusing not because of its originality but because of its unoriginality; "the living room was pure camp"
- establish or set up a camp (同)camp down
- providing sophisticated amusement by virtue of having artificially (and vulgarly) mannered or banal or sentimental qualities; "they played up the silliness of their roles for camp effect"; "campy Hollywood musicals of the 1940s" (同)campy
- live in or as if in a tent; "Can we go camping again this summer?"; "The circus tented near the town"; "The houseguests had to camp in the living room" (同)encamp, camp out, bivouac, tent
PrepTutorEJDIC
- 〈C〉(軍隊・登山隊・探検隊などの)『野営地』 / 〈C〉〈U〉野営のテント,仮設小屋 / 〈U〉野営,キャンプ[生活];軍隊生活 / 〈C〉夏季キャンプ場,サマーキャンプ / 《集合的に》野営する人たち,キャンプする人たち / 〈C〉(主義・信条などを同じくする)同志たち,同じ陣営;同じ立場 / 『野営する』,キャンプ生活を送る《+『out』》
- =homosexual / (男性が)女々しい / すたれた,古めかしい
UpToDate Contents
全文を閲覧するには購読必要です。 To read the full text you will need to subscribe.
Related Links
- 栄養・生化学辞典 cAMP応答配列結合タンパク質の用語解説 - →CREB...
Related Pictures
★リンクテーブル★
[★]
- 英
- cyclic AMP response element-binding protein、cAMP response element-binding protein、CRE-binding protein、CREB protein、CREB
- 関
- cAMP応答配列結合タンパク質、CRE結合タンパク質、サイクリックAMP応答エレメント結合タンパク質
[★]
- 関
- CRE-binding protein、CREB、CREB protein、cyclic AMP response element-binding protein
[★]
- 英
- cyclic AMP response element-binding protein
- 関
- cAMP応答配列結合タンパク質、サイクリックAMP応答配列結合タンパク質
[★]
- 英
- CRE-binding protein
- 関
- cAMP応答配列結合タンパク質、サイクリックAMP応答配列結合タンパク質
[★]
- 英
- sequence、arrangement、array、constellation、arrange、sequential
- 関
- 協定、経時的、系列、結果、シークエンス、シーケンス、順序、準備、筋道、整列、取り計らう、配置、配列決定、連続、連続的、逐次、結果としての、時系列、並べる、アレイ、順次、整理
array_unique()
for ( $i = 0 ; $i < 5 ; $i++ ) {
$a['w'][$i] = $i+100;
$a['m'][$i] = 1;
}
for ( $i = 5 ; $i < 15 ; $i++ ) {
$a['w'][$i] = $i+100;
$a['m'][$i] = 2;
}
for ( $i = 15 ; $i < 20 ; $i++ ) {
$a['w'][$i] = $i+100;
$a['m'][$i] = 3;
}
$a['w'][5]=100;
$a['w'][15]=100;
var_dump($a);
$b = array_unique($a['w']); #配列 重複キー 消去
var_dump($b);
-----
array(2) {
["w"]=> array(20)
{
[0]=> int(100) [1]=> int(101) [2]=> int(102) [3]=> int(103) [4]=> int(104) [5]=> int(100) [6]=> int(106) [7]=> int(107) [8]=> int(108) [9]=> int(109) [10]=> int(110) [11]=> int(111) [12]=> int(112) [13]=> int(113) [14]=> int(114) [15]=> int(100) [16]=> int(116) [17]=> int(117) [18]=> int(118) [19]=> int(119) }
["m"]=> array(20)
{
[0]=> int(1) [1]=> int(1) [2]=> int(1) [3]=> int(1) [4]=> int(1) [5]=> int(2) [6]=> int(2) [7]=> int(2) [8]=> int(2) [9]=> int(2) [10]=> int(2) [11]=> int(2) [12]=> int(2) [13]=> int(2) [14]=> int(2) [15]=> int(3) [16]=> int(3) [17]=> int(3) [18]=> int(3) [19]=> int(3) } }
array(18) {
[0]=> int(100) [1]=> int(101) [2]=> int(102) [3]=> int(103) [4]=> int(104) [6]=> int(106) [7]=> int(107) [8]=> int(108) [9]=> int(109) [10]=> int(110) [11]=> int(111) [12]=> int(112) [13]=> int(113) [14]=> int(114) [16]=> int(116) [17]=> int(117) [18]=> int(118) [19]=> int(119) }
配列の要素の除去
array_pop
- 配列のインデックスから、末尾にあるインデックス1つを取り除く。指定した変数の配列が空だった場合には、null が帰される。
配列の結合
- 1. +演算子。同じキーを上書きする。
- 2. array_push(array, array)とすると、出力が array([0]->array, [1]->array)になる。
- 3. array_match(out_array, add_array)これでokだが、add_array = array();だとエラーが起こるので、適当なトラップが必要。 ← array_mergeの間違えでしょ?
配列要素の結合
$str = implode('/',$array);
配列の要素表示
[★]
- 英
- binding、bond、linkage、connection、conjugation、conjunction、union、bonding、engagement,
- bind、associate、conjugate、combine、connect、couple、engage、join、dock、ligate、conjoin
- 関
- 会合、関係、関与、関連、協同、共役、組み合わせ、結合性、結紮、結線、従事、接合、接合体、同僚、ドッキング、バインディング、複合物、付随、併用、抱合、抱合体、結びつける、約束、癒合、癒着、連関、連結、連合、連鎖、連接、連絡、団結、組合、参加、接続、一対、合併、組み合わせる、カップル、組合せ、絆
[★]
環状アデノシン一リン酸 サイクリックAMP 環状AMP adenosine 3',5'-cyclic monophosphate, cyclic AMP
[★]
- 英
- responsive element, response element
- 関
- estrogen response element, cyclic AMP response element
[★]