Skip to content

Instantly share code, notes, and snippets.

@qlife
qlife / php_filter.php
Created July 26, 2011 07:17
PHP filter extension
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PHP filter</title>
<style type="text/css">
form {
margin: 0;
padding: 0px;
@qlife
qlife / urlquote.py
Created June 18, 2011 08:26
Demonstrating how to use python to quote / unquote url
#!/usr/local/bin/python
# -*- coding: UTF-8 -*-
import urllib
def main():
ss = 'http://www.google.com.tw/?q=亞伯拉罕'
quoted_str = urllib.quote_plus(ss)
print quoted_str
print urllib.unquote_plus(quoted_str)