Skip to content

Instantly share code, notes, and snippets.

View weird-coon's full-sized avatar
🦝
Surprise!

Quyen Luu weird-coon

🦝
Surprise!
View GitHub Profile
@weird-coon
weird-coon / japan_pref.php
Last active June 8, 2018 03:46
[PHP] Japanese pref ids and names
<?php
$pref_ids = array(
'01' => '北海道', '02' => '青森県', '03' => '岩手県', '04' => '宮城県', '05' => '秋田県',
'06' => '山形県', '07' => '福島県', '08' => '茨城県', '09' => '栃木県', '10' => '群馬県',
'11' => '埼玉県', '12' => '千葉県', '13' => '東京都', '14' => '神奈川県', '15' => '新潟県',
'16' => '富山県', '17' => '石川県', '18' => '福井県', '19' => '山梨県', '20' => '長野県',
'21' => '岐阜県', '22' => '静岡県', '23' => '愛知県', '24' => '三重県', '25' => '滋賀県',
'26' => '京都府', '27' => '大阪府', '28' => '兵庫県', '29' => '奈良県', '30' => '和歌山県',
'31' => '鳥取県', '32' => '島根県', '33' => '岡山県', '34' => '広島県', '35' => '山口県',
'36' => '徳島県', '37' => '香川県', '38' => '愛媛県', '39' => '高知県', '40' => '福岡県',
@weird-coon
weird-coon / strip_tags.sql
Last active June 14, 2018 08:11
[MySQL] Reproduces PHP strip_tags () with Mysql and search keywords from the result of excluding HTML tags.
DELIMITER //
DROP FUNCTION IF EXISTS `STRIP_TAGS`//
CREATE FUNCTION STRIP_TAGS( x text) RETURNS text
LANGUAGE SQL NOT DETERMINISTIC READS SQL DATA
BEGIN
DECLARE sstart INT;
DECLARE ends INT;
IF x IS NOT NULL THEN
SET sstart = LOCATE('<', x, 1);