<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:blogChannel="http://backend.userland.com/blogChannelModule" >
  <channel>
  <title>southzone tech blog</title>
  <link>http://southzone.blog.shinobi.jp/</link>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://southzone.blog.shinobi.jp/RSS/" />
  <description>JavaScript,phpなどのWeb方面のプログラミング</description>
  <lastBuildDate>Mon, 26 Mar 2018 06:19:52 GMT</lastBuildDate>
  <language>ja</language>
  <copyright>© Ninja Tools Inc.</copyright>
  <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" />

    <item>
    <title>「～」と「～」</title>
    <description>
    <![CDATA[「～」と「～」<br />
<br />
見た目は同じですが文字コードは別のものです。]]>
    </description>
    <category>その他</category>
    <link>http://southzone.blog.shinobi.jp/%E3%81%9D%E3%81%AE%E4%BB%96/%E3%80%8C%EF%BD%9E%E3%80%8D%E3%81%A8%E3%80%8C%EF%BD%9E%E3%80%8D</link>
    <pubDate>Wed, 20 Dec 2017 03:27:22 GMT</pubDate>
    <guid isPermaLink="false">southzone.blog.shinobi.jp://entry/38</guid>
  </item>
    <item>
    <title>file_get_contentsでPOST</title>
    <description>
    <![CDATA[<div><span style="white-space: pre;"> </span>$url = "https://southzone.sakura.ne.jp/posted.php";</div>
<div><span style="white-space: pre;"> </span>$data = array(</div>
<div><span style="white-space: pre;"> </span>'vids' =&gt; array(0=&gt; "1" , 1=&gt; "2"),</div>
<div><span style="white-space: pre;"> </span>'tids' =&gt; array(0=&gt; "10" , 1=&gt; "20")</div>
<div><span style="white-space: pre;"> </span>);</div>
<div><span style="white-space: pre;"> </span>$content = http_build_query($data , '' , '&amp;');</div>
<div><span style="white-space: pre;"> </span>$options = array('http' =&gt; array(</div>
<div><span style="white-space: pre;"> </span>'method' =&gt; 'POST',</div>
<div><span style="white-space: pre;"> </span>'content' =&gt; $content</div>
<div><span style="white-space: pre;"> </span>));</div>
<div><span style="white-space: pre;"> </span>file_get_contents($url , false, stream_context_create($options));</div>]]>
    </description>
    <category>PHP</category>
    <link>http://southzone.blog.shinobi.jp/php/file_get_contents%E3%81%A7post</link>
    <pubDate>Wed, 06 Dec 2017 05:42:03 GMT</pubDate>
    <guid isPermaLink="false">southzone.blog.shinobi.jp://entry/37</guid>
  </item>
    <item>
    <title>MySQL 複数カラムにinを使うwhere句</title>
    <description>
    <![CDATA[<div>SELECT</div>
<div>&nbsp; &nbsp; *</div>
<div>FROM</div>
<div>&nbsp; &nbsp; table_name&nbsp;</div>
<div>WHERE</div>
<div>&nbsp; &nbsp; (col1, col2) IN (</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; ("hoge", "fuga"),</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; ("foo", "bar")</div>
<div>&nbsp; &nbsp; )</div>]]>
    </description>
    <category>MySQL</category>
    <link>http://southzone.blog.shinobi.jp/mysql/%E6%9C%AC%E5%BD%93%E3%81%AE%E5%B9%B8%E3%81%9B%E6%95%99%E3%81%88%E3%81%A6%E3%82%88%E3%80%82%E5%BF%98%E3%82%8C%E3%81%8C%E3%81%A1%E3%81%AAwhere%E5%8F%A5</link>
    <pubDate>Tue, 05 Dec 2017 06:16:49 GMT</pubDate>
    <guid isPermaLink="false">southzone.blog.shinobi.jp://entry/36</guid>
  </item>
    <item>
    <title>#は\\でエスケープしないとシンタックスエラー</title>
    <description>
    <![CDATA[<div>$(function(){</div>
<div>&nbsp; &nbsp;// #で始まるアンカーをクリックした場合に処理</div>
<div>&nbsp; &nbsp;$('a[href^=\\#]').click(function() {</div>
<div>&nbsp; &nbsp; &nbsp; // スクロールの速度</div>
<div>&nbsp; &nbsp; &nbsp; var speed = 400; // ミリ秒</div>
<div>&nbsp; &nbsp; &nbsp; // アンカーの値取得</div>
<div>&nbsp; &nbsp; &nbsp; var href= $(this).attr("href");</div>
<div>&nbsp; &nbsp; &nbsp; // 移動先を取得</div>
<div>&nbsp; &nbsp; &nbsp; var target = $(href == "#" || href == "" ? 'html' : href);</div>
<div>&nbsp; &nbsp; &nbsp; // 移動先を数値で取得</div>
<div>&nbsp; &nbsp; &nbsp; var position = target.offset().top;</div>
<div>&nbsp; &nbsp; &nbsp; // スムーススクロール</div>
<div>&nbsp; &nbsp; &nbsp; $('body,html').animate({scrollTop:position}, speed, 'swing');</div>
<div>&nbsp; &nbsp; &nbsp; return false;</div>
<div>&nbsp; &nbsp;});</div>
<div>});</div>]]>
    </description>
    <category>JS(DOM)</category>
    <link>http://southzone.blog.shinobi.jp/js-dom-/-%E3%81%AF----%E3%81%A7%E3%82%A8%E3%82%B9%E3%82%B1%E3%83%BC%E3%83%97%E3%81%97%E3%81%AA%E3%81%84%E3%81%A8%E3%82%B7%E3%83%B3%E3%82%BF%E3%83%83%E3%82%AF%E3%82%B9%E3%82%A8%E3%83%A9%E3%83%BC</link>
    <pubDate>Sun, 22 Oct 2017 09:25:50 GMT</pubDate>
    <guid isPermaLink="false">southzone.blog.shinobi.jp://entry/35</guid>
  </item>
    <item>
    <title>php header</title>
    <description>
    <![CDATA[<span style="text-decoration: line-through;">header('HTTP', true, 400);</span>//phpのバージョンで正しく動きません<br />
<br />
http_response_code(400);]]>
    </description>
    <category>PHP</category>
    <link>http://southzone.blog.shinobi.jp/php/php%20header</link>
    <pubDate>Fri, 13 Oct 2017 01:40:26 GMT</pubDate>
    <guid isPermaLink="false">southzone.blog.shinobi.jp://entry/34</guid>
  </item>
    <item>
    <title>explodeの挙動</title>
    <description>
    <![CDATA[<div>&lt;?php</div>
<div>$search = "スペースとか無いし";</div>
<div>$keywords = explode(" ", $search);</div>
<div>var_dump($keywords);</div>
<br />
結果<br />
array(1) { [0]=&gt; string(27) "スペースとか無いし" }<br />
<br />
--<br />
<br />

<div>$search = "";</div>
<div>$keywords = explode(" ", $search);</div>
<div>var_dump($keywords);</div>
<br />
結果<br />
array(1) { [0]=&gt; string(0) "" } <br />
<br />
--<br />
<br />

<div>$search = false;</div>
<div>$keywords = explode(" ", $search);</div>
<div>var_dump($keywords);<br />
<br />
<br />
結果</div>
array(1) { [0]=&gt; string(0) "" }]]>
    </description>
    <category>PHP</category>
    <link>http://southzone.blog.shinobi.jp/php/explode%E3%81%AE%E6%8C%99%E5%8B%95</link>
    <pubDate>Fri, 22 Sep 2017 09:51:44 GMT</pubDate>
    <guid isPermaLink="false">southzone.blog.shinobi.jp://entry/33</guid>
  </item>
    <item>
    <title>google api console</title>
    <description>
    <![CDATA[検索しても見つからないこんなコンソールじゃポイズン<br />
<a href="https://console.developers.google.com/apis/dashboard" title="" target="_blank">https://console.developers.google.com/apis/dashboard</a><br />
<br />
<br />
]]>
    </description>
    <category>JS(DOM)</category>
    <link>http://southzone.blog.shinobi.jp/js-dom-/google%20api%20console</link>
    <pubDate>Mon, 04 Sep 2017 12:11:46 GMT</pubDate>
    <guid isPermaLink="false">southzone.blog.shinobi.jp://entry/32</guid>
  </item>
    <item>
    <title>カタカナ⇒ひらがな　力わざ</title>
    <description>
    <![CDATA[UPDATE `_table_` SET _column_ = REPLACE(_column_,"ア", "あ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"イ", "い");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ウ", "う");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"エ", "え");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"オ", "お");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"カ", "か");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"キ", "き");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ク", "く");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ケ", "け");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"コ", "こ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"サ", "さ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"シ", "し");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ス", "す");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"セ", "せ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ソ", "そ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"タ", "た");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"チ", "ち");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ツ", "つ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"テ", "て");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ト", "と");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ナ", "な");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ニ", "に");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ヌ", "ぬ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ネ", "ね");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ノ", "の");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ハ", "は");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ヒ", "ひ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"フ", "ふ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ヘ", "へ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ホ", "ほ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"マ", "ま");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ミ", "み");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ム", "む");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"メ", "め");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"モ", "も");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ヤ", "や");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ユ", "ゆ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ヨ", "よ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ラ", "ら");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"リ", "り");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ル", "る");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"レ", "れ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ロ", "ろ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ワ", "わ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ヲ", "を");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ン", "ん");<br />
<br />
<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ガ", "が");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ギ", "ぎ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"グ", "ぐ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ゲ", "げ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ゴ", "ご");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ザ", "ざ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ジ", "じ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ズ", "ず");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ゼ", "ぜ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ゾ", "ぞ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ダ", "だ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ヂ", "ぢ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ヅ", "づ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"デ", "で");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ド", "ど");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"バ", "ば");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ビ", "び");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ブ", "ぶ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ベ", "べ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ボ", "ぼ");<br />
<br />
<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"パ", "ぱ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ピ", "ぴ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"プ", "ぷ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ペ", "ぺ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ポ", "ぽ");<br />
<br />
<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ャ", "ゃ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ュ", "ゅ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ョ", "ょ");<br />
UPDATE `_table_` SET _column_ = REPLACE(_column_,"ッ", "っ");]]>
    </description>
    <category>MySQL</category>
    <link>http://southzone.blog.shinobi.jp/mysql/%E3%82%AB%E3%82%BF%E3%82%AB%E3%83%8A%E2%87%92%E3%81%B2%E3%82%89%E3%81%8C%E3%81%AA%E3%80%80%E5%8A%9B%E3%82%8F%E3%81%96</link>
    <pubDate>Fri, 25 Aug 2017 05:18:38 GMT</pubDate>
    <guid isPermaLink="false">southzone.blog.shinobi.jp://entry/31</guid>
  </item>
    <item>
    <title>IE</title>
    <description>
    <![CDATA[インターネットエクスプローラーは、<br />
<span style="color: #333333; font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS P Gothic', Verdana, sans-serif; letter-spacing: 0.5px;">input要素のform属性を</span>formタグの外に配置した場合、反応しない]]>
    </description>
    <category>JS(DOM)</category>
    <link>http://southzone.blog.shinobi.jp/js-dom-/ie</link>
    <pubDate>Mon, 03 Jul 2017 05:18:51 GMT</pubDate>
    <guid isPermaLink="false">southzone.blog.shinobi.jp://entry/30</guid>
  </item>
    <item>
    <title>全角⇒半角</title>
    <description>
    <![CDATA[//全角&rArr;半角 function to_han(elm){ var v = $(elm).val(); v = v.replace(/[Ａ-Ｚａ-ｚ０-９]/g, function(s) { return String.fromCharCode(s.charCodeAt(0) - 0xFEE0);}); $(elm).val(v); }; function val_to_han(val){ return val.replace(/[Ａ-Ｚａ-ｚ０-９]/g, function(s) { return String.fromCharCode(s.charCodeAt(0) - 0xFEE0);}); };]]>
    </description>
    <category>JS(DOM)</category>
    <link>http://southzone.blog.shinobi.jp/js-dom-/%E5%85%A8%E8%A7%92%E2%87%92%E5%8D%8A%E8%A7%92</link>
    <pubDate>Thu, 29 Jun 2017 07:55:21 GMT</pubDate>
    <guid isPermaLink="false">southzone.blog.shinobi.jp://entry/29</guid>
  </item>

    </channel>
</rss>