<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/ketchapp/">
    <title>ket@</title>
    <link>http://w.atwiki.jp/ketchapp/</link>
    <atom:link href="https://w.atwiki.jp/ketchapp/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>ket@</description>

    <dc:language>ja</dc:language>
    <dc:date>2019-12-04T15:35:56+09:00</dc:date>
    <utime>1575441356</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/ketchapp/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ketchapp/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ketchapp/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ketchapp/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ketchapp/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ketchapp/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ketchapp/pages/8.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ketchapp/pages/7.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ketchapp/pages/4.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/ketchapp/pages/3.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/ketchapp/pages/14.html">
    <title>source/html_css_js</title>
    <link>https://w.atwiki.jp/ketchapp/pages/14.html</link>
    <description>
      ----
***【jQuery】拡大縮小
$(&quot;body&quot;).css(&quot;zoom&quot;,&quot;50%&quot;);


----
***【js】ウインドウがリサイズされたら発動
 $(window).resize(function() {

----
***【js】イベントリスナー引数付きのイベント渡す
 window.addEventListener(&#039;scroll&#039;, function(){showElementAnimation(&quot;animation_2&quot;,700)},false);

----
***【js】JavaScriptによるリダイレクト
 location.href=&quot;URL&quot;;

----
***【js】文字列置換
brandName =brandName.replace(&quot;&amp;#65288;&quot;,&quot;（&quot;)

----
***【js】head タグtitle変更
&lt;script&gt;
//console.log(document.title); // &quot;Hello World!&quot;を表示
document.title = document.title + &quot;&lt;?php echo &quot; hoge&quot;.$shop_name.&quot; | hoge&quot; ?&gt;&quot;;
&lt;/script&gt;


----
***【jQuery】css 変更
    $(&quot;hoge&quot;).css(&quot;background-color&quot;,&quot;#fffd7d&quot;);

----
***【jQuery】css クラスを追加
    $(&quot;hoge&quot;).addClass(&quot;anime&quot;);


----
***【CSS】アニメーション
 .anime {animation: anime 1.2s 0s infinite alternate;  /* アニメーション指定 */
 animation-timing-function: ease;
 }
 @keyframes anime {100% {background-color: #fff;      /* 背景色指定 */}}

animation-name：アニメーションの名前。初期値：none。
animation-duration：アニメーションの開始から終わるまでの時間（1回分）。    </description>
    <dc:date>2019-12-04T15:35:56+09:00</dc:date>
    <utime>1575441356</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ketchapp/pages/13.html">
    <title>source/vba</title>
    <link>https://w.atwiki.jp/ketchapp/pages/13.html</link>
    <description>
      ***日付取得
dateToday = Format(Date, &quot;mmdd&quot;)


***文字列をさがす
  InStr(String1, String2)

引数string2で指定した文字列を検索して、見つかった位置を返します



***大文字にする
 UCase(&quot;Excel VBA&quot;) 


***文字列分割
  tmp = Split(&quot;123,田中,tanaka&quot;, &quot;,&quot;)


***一旦フィルタを解除
 ActiveSheet.ShowAllData


***シートをアクティブに
 Sheets(&quot;config&quot;).Activate

----
***for文
 For i = 2 To 2000
     If (Range(&quot;A&quot; &amp; i) &lt;&gt; &quot;&quot;) Then
                  arrStr(i) = Range(&quot;A&quot; &amp; i)
                 &#039;MsgBox arrStr(i)
      End If
 Next i

 
 For i = 2 To 2000
     If (Range(&quot;A&quot; &amp; i) &lt;&gt; &quot;&quot;) Then
                  arrStr(i) = Range(&quot;A&quot; &amp; i)
                  Range(&quot;A&quot; &amp; i).Formula = &quot;=VLOOKUP(Q&quot; &amp; i &amp; &quot;,config4!A2:C26,3,FALSE)&quot;
                 &#039;MsgBox arrStr(i)
      End If
 Next i


----
*** VLOOKUP
 Range(&quot;S2&quot;).Formula = &quot;=VLOOKUP(B2,前日データ!$B$2:$R$1048576,17,FALSE)&quot;

vbaで使う
 Range(&quot;S&quot; &amp; i).Formula = &quot;=VLOOKUP(Q&quot; &amp; i &amp; &quot;,config4!A2:C26,3,FALSE)&quot;

----
***セルに色をつける　黄色
 Range(&quot;H&quot; &amp; i).Interior.ColorIndex = 6

----
*** 文字列を切    </description>
    <dc:date>2020-01-08T14:36:43+09:00</dc:date>
    <utime>1578461803</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ketchapp/pages/12.html">
    <title>source/php</title>
    <link>https://w.atwiki.jp/ketchapp/pages/12.html</link>
    <description>
      ----
***曜日（日本語）
 //指定日の曜日を取得する
 $date = date(&#039;w&#039;, strtotime(&#039;20170402&#039;));
  
 //配列を使用し、要素順に(日:0〜土:6)を設定する
 $week = [
  &#039;日&#039;, //0
  &#039;月&#039;, //1
  &#039;火&#039;, //2
  &#039;水&#039;, //3
  &#039;木&#039;, //4
  &#039;金&#039;, //5
  &#039;土&#039;, //6
 ];
  
 //日本語で曜日を出力
 echo $week[$date] . &#039;曜日&#039;;
 

----
***substr

 $rest = substr(&quot;abcdef&quot;, -1);    // &quot;f&quot; を返す
 $rest = substr(&quot;abcdef&quot;, -2);    // &quot;ef&quot; を返す
 $rest = substr(&quot;abcdef&quot;, -3, 1); // &quot;d&quot; を返す




----
***パラメーター？の前のみ取得
 $parts = strtok($_SERVER[&quot;REQUEST_URI&quot;],&quot;?&quot;);

----
***【正規表現】文字列検索、置換
 $search = &#039;/page\/(.*?)\//&#039;;
 $replace = &#039;&#039;;
 $url_now = preg_replace($search, $replace, $url_now);

/でsearchする文字列を囲う


----
***【sql】文字列連結
 set pm2.meta_value = concat (p.post_title,&quot;hoge&quot;)


----
***【wordpress】slugからカテゴリ名を取得
 $term_brand = get_term_by( &quot;slug&quot;, $_GET[brand], &quot;brand_classify&quot; );
 $brand_name = $term_brand-&gt;name;


----
***現在日時を取得
タイムゾーンをtokyoに
 date_default_timezone_set(&#039;Asia/Tokyo&#039;);

 echo &quot;datenow:&quot;.date(&quot;Y/m/d H:i:s&quot;);

    </description>
    <dc:date>2020-02-12T10:41:22+09:00</dc:date>
    <utime>1581471682</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ketchapp/pages/11.html">
    <title>PHP</title>
    <link>https://w.atwiki.jp/ketchapp/pages/11.html</link>
    <description>
          </description>
    <dc:date>2019-08-20T17:07:43+09:00</dc:date>
    <utime>1566288463</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ketchapp/pages/10.html">
    <title>source</title>
    <link>https://w.atwiki.jp/ketchapp/pages/10.html</link>
    <description>
      
&lt;p&gt;----&lt;br /&gt;
***for文&lt;/p&gt;
&lt;p&gt;    Dim arrStr(50) As Variant&lt;/p&gt;
&lt;p&gt;Sheets(&quot;config&quot;).Activate&lt;br /&gt;
 For i = 1 To 4&lt;br /&gt;
       If (Range(&quot;AG&quot; &amp;amp; i + 13) &amp;lt;&amp;gt; &quot;&quot;) Then&lt;br /&gt;
                    arrStr(i) = Range(&quot;AG&quot; &amp;amp; i + 13)&lt;br /&gt;
                   MsgBox arrStr(i)&lt;br /&gt;
        End If&lt;br /&gt;
    Next i&lt;/p&gt;
&lt;p&gt;   &lt;/p&gt;
&lt;p&gt;----&lt;br /&gt;
***セルに色をつける　黄色&lt;/p&gt;
&lt;p&gt;Range(&quot;H&quot; &amp;amp; i).Interior.ColorIndex = 6&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;strong style=&quot;font-size:16px;&quot;&gt;【VBA】  文字列を切り取る Right関数&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;str_hoge = &quot;abcdefg&quot;&lt;br /&gt;
str = Right(str_hoge, 2)&lt;/p&gt;
&lt;p style=&quot;margin:0px;font-size:11px;line-height:normal;font-family:Menlo;color:rgb(0,132,0);&quot;&gt;
 &lt;/p&gt;
    </description>
    <dc:date>2019-09-06T17:39:54+09:00</dc:date>
    <utime>1567759194</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ketchapp/pages/9.html">
    <title>記録</title>
    <link>https://w.atwiki.jp/ketchapp/pages/9.html</link>
    <description>
      
&lt;p&gt;2013 10/31（木）&lt;/p&gt;
&lt;p&gt;ハロウィン&lt;/p&gt;
    </description>
    <dc:date>2013-10-31T10:32:12+09:00</dc:date>
    <utime>1383183132</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ketchapp/pages/8.html">
    <title>memo</title>
    <link>https://w.atwiki.jp/ketchapp/pages/8.html</link>
    <description>
      
&lt;p&gt;&lt;span style=&quot;font-family:arial, helvetica, sans-serif;&quot;&gt;&lt;span style=&quot;font-size:9px;&quot;&gt;めもです&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;hr /&gt;&lt;p&gt;&lt;span style=&quot;font-size:9px;&quot;&gt;&lt;span style=&quot;font-family:arial, helvetica, sans-serif;&quot;&gt;&lt;strong&gt;・サーバー接続&lt;/strong&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;font-size:9px;&quot;&gt;&lt;span style=&quot;font-family:arial, helvetica, sans-serif;&quot;&gt;smb://sgfile/sgfile/3&lt;br /&gt;&lt;strong&gt;Server Message Block&lt;/strong&gt;&lt;span style=&quot;color:rgb(37,37,37);&quot;&gt; (&lt;/span&gt;&lt;strong&gt;SMB&lt;/strong&gt;&lt;span style=&quot;color:rgb(37,37,37);&quot;&gt;) は、主に&lt;/span&gt;Windows&lt;span style=&quot;color:rgb(37,37,37);&quot;&gt;で使用されている&lt;/span&gt;OSI参照モデル&lt;span style=&quot;color:rgb(37,37,37);&quot;&gt;第7層&lt;/span&gt;アプリケーション層&lt;span style=&quot;color:rgb(37,37,37);&quot;&gt;部分の独自&lt;/span&gt;通信プロトコル&lt;span style=&quot;color:rgb(37,37,37);&quot;&gt;の総称。主に&lt;/span&gt;Windows NT&lt;span style=&quot;color:rgb(37,37,37);&quot;&gt;や&lt;/span&gt;Windows 95&lt;span style=&quot;color:rgb(37,37,37);&quot;&gt;で&lt;/span&gt;LAN&lt;span style=&quot;color:rgb(37,37,37);&quot;&gt;を通じて&lt;/span&gt;ファイル共有&lt;span style=&quot;color:rgb(37,37,37);&quot;&gt;や&lt;/span&gt;プリンタ共有&lt;span style=&quot;color:rgb(37,37,37);&quot;&gt;などの実現に使用される。    </description>
    <dc:date>2014-11-26T16:19:59+09:00</dc:date>
    <utime>1416986399</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ketchapp/pages/7.html">
    <title>min</title>
    <link>https://w.atwiki.jp/ketchapp/pages/7.html</link>
    <description>
      
&lt;p&gt;（債権の目的）&lt;/p&gt;
&lt;h3&gt;第399条&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;　債権は、金銭に見積もることができないものであっても、その目的とすることができる。&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;　【解説】&lt;br /&gt;
　　債権の目的の有効要件について、一般的な取引行為以外の約束についてこれを含めるものとした。&lt;/p&gt;
&lt;hr /&gt;&lt;p style=&quot;margin-left:0px;margin-right:0px;&quot;&gt;（特定物の引渡しの場合の&lt;a class=&quot;extiw&quot; href=&quot;http://ja.wikipedia.org/wiki/%E6%B3%A8%E6%84%8F%E7%BE%A9%E5%8B%99&quot; style=&quot;text-decoration:none;color:rgb(51,102,187);background-image:none;&quot; title=&quot;w:注意義務&quot;&gt;注意義務&lt;/a&gt;）&lt;/p&gt;
&lt;h3&gt;第400条&lt;/h3&gt;
&lt;p&gt;　&lt;strong&gt;&lt;a class=&quot;extiw&quot; href=&quot;http://ja.wikipedia.org/wiki/%E5%82%B5%E6%A8%A9&quot; style=&quot;text-decoration:none;color:rgb(51,102,187);background-image:none;&quot; title=&quot;w:債権&quot;&gt;債権&lt;/a&gt;の目的が特定物の引渡しであるときは、&lt;a class=&quot;extiw&quot; href=&quot;http://ja.wikipedia.org/wiki/%E5%82%B5%E5%8B%99&quot; style=&quot;text-decoration:none;color:rgb(51,102,187);background-image:none;&quot; title=&quot;w:債務&quot;&gt;債務者&lt;/a&gt;は、その引渡しをするまで、善良な管理者の注意をもって、その&lt;a class=&quot;extiw&quot; href=&quot;http://ja.wikipedia.org/wiki/%E7%89%A9_(%E6%B3%95%E5%BE%8B)&quot; style=&quot;text-decoration:none;color:rgb(51,102,187);background-image:none;&quot; title=&quot;w:物 (法律)&quot;&gt;物    </description>
    <dc:date>2013-10-31T14:51:45+09:00</dc:date>
    <utime>1383198705</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ketchapp/pages/4.html">
    <title>単語</title>
    <link>https://w.atwiki.jp/ketchapp/pages/4.html</link>
    <description>
      
&lt;p&gt;単語&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div&gt;
&lt;div&gt;&lt;a href=&quot;http://ejje.weblio.jp/sentence/content/compel&quot; style=&quot;color:rgb(17,85,204);&quot; target=&quot;_blank&quot;&gt;compel&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;a href=&quot;http://ejje.weblio.jp/sentence/content/dispute&quot; style=&quot;color:rgb(17,85,204);&quot; target=&quot;_blank&quot;&gt;dispute&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;&lt;a href=&quot;http://ejje.weblio.jp/sentence/content/implement&quot; style=&quot;color:rgb(17,85,204);&quot; target=&quot;_blank&quot;&gt;implement&lt;/a&gt;&lt;/div&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
    </description>
    <dc:date>2015-03-27T10:06:34+09:00</dc:date>
    <utime>1427418394</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/ketchapp/pages/3.html">
    <title>右メニュー</title>
    <link>https://w.atwiki.jp/ketchapp/pages/3.html</link>
    <description>
      **カウンター
|今日|&amp;counter(today)人|
|昨日|&amp;counter(yesterday)人|
|&amp;bold(){合計}|&amp;bold(){&amp;counter()人}|

現在&amp;online()人が閲覧中。

**更新履歴
#recent(1)    </description>
    <dc:date>2019-08-20T17:05:43+09:00</dc:date>
    <utime>1566288343</utime>
  </item>
  </rdf:RDF>
