Web筆記區
- html
- css
- jQuery
- Security
- Trouble Shooting
- Apache httpd建置
- PHP
- curl使用POST打JSON搭Basic Authentication
- [/pichannel.web/test/curl-json.php](#pichannelwebtestcurl-jsonphp)
- 資策會課程
- win7
- OSX (extra)
- curl使用POST打JSON搭Basic Authentication
- Reference
html
1 | <!-- 瀏覽器會根據伺服器送過來的 header 或是用其他方法來判定 HTML文件的編碼--> |
HTML data-* Attributes–>自定義tag屬性
w3c1
2
3
4
5<ul>
<li data-animal-type="bird">Owl</li>
<li data-animal-type="fish">Salmon</li>
<li data-animal-type="spider">Tarantula</li>
</ul>
css
文字段落太長超過div後會有 … 的效果
1 | div { |
jQuery
HTML5 Drag and Drop Upload and File API Tutorial
Security
HTTPS - HTTP over SSL
工作原理:
- 使用非對稱式加密演算法來對通訊雙方做身分認證
- 並交換對稱金鑰為Session Key
- 使用Session Key來加密C/S間的通訊內容
缺點:
- 通訊內容加量,因此傳輸時間變長
- 加解密需消耗額外機器資源 (可由SSL acceleration加速之)
IETF - Internet Engineering Task Force
SSL - Secure Socket Layer
TLS - Transport Layer Secure
SSL acceleration
Trouble Shooting
PDO連線報錯no such file
Setting up PHP & MySQL on OS X Yosemite
OSX上傳檔案時報錯PHP Warning: mkdir(): Permission denied
1 | [Fri Aug 21 06:46:19.036740 2015] [:error] [pid 4098] [client ::1:52036] PHP Warning: mkdir(): Permission denied in /Users/Hamn/Workspace/pichannel.web/api/MyAPI.class.php on line 77 |
Workaround:1
2$ mkdir img-repo
$ sudo chown img-repo _www
Redhat上傳檔案時報錯PHP Warning: mkdir(): Permission denied
Workaround: 參考1
2
3$ ls -lZ img-repo/
drwxrwxr-x. ec2-user ec2-user unconfined_u:object_r:httpd_sys_content_t:s0 img-repo
$ chcon -R -t httpd_sys_content_rw_t img-repo/
1 | vi /etc/httpd/conf/httpd.conf |
定界符對應之結束符的前一個位元需為換行符號
以下會報錯Parse error: syntax error, unexpected $end in xxx.php on line 64
1
2
3
4
5function insertImage($sha1,$timestamp){
$sql = <<<sqlText
INSERT INTO image VALUES (?,?)
sqlText;
以下正解1
2
3
4
5function insertImage($sha1,$timestamp){
$sql = <<<sqlText
INSERT INTO image VALUES (?,?)
sqlText;
使用exif_read_date需於php.ini做以下設定
以下報錯Fatal error: Call to undefined function exif_read_data() xxx.php on line 2
1
2extension=php_exif.dll
extension=php_mbstring.dll
以下正解1
2extension=php_mbstring.dll
extension=php_exif.dll
上傳檔案時無法取得原始拍攝日期
1 | [Sat Aug 22 18:12:45.538546 2015] [:error] [pid 833] [client ::1:49587] PHP Notice: Undefined index: DateTimeOriginal in /Users/Hamn/Workspace/pichannel.web/api/MyAPI.class.php on line 89 |
Apache httpd建置
win7
目錄預設檔案
1
2
3<IfModule dir_module>
DirectoryIndex index.php
</IfModule>apache安裝目錄
Define SRVROOT "D:\dvp\dev-tool\httpd-2.4.16-x64-vc11\Apache24"
網頁根目錄
DocumentRoot "D:\dvp\workspace\classroom2001\project"
<Directory "D:\dvp\workspace\classroom2001\project">
介紹apache認識php
1
2
3LoadModule php5_module "D:\dvp\dev-tool\php-5.6.11-Win32-VC11-x64\php5apache2_4.dll"
AddType application/x-httpd-php .php
PHPIniDir "D:\dvp\dev-tool\php-5.6.11-Win32-VC11-x64"網頁重導設定
LoadModule rewrite_module modules/mod_rewrite.so
1
2
3
4
5
6
7<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule api/v1/(.*)$ phpinfo.php?request=$1 [QSA,NC,L]
RewriteRule api/(.*)$ /api/controller.php?request=$1 [QSA,NC,L]
</IfModule>環境變數$PATH加入
D:\dvp\dev-tool\httpd-2.4.16-x64-vc11\Apache24\bin
防止diretory listing (Production)
1
2#Options Indexes FollowSymLinks
Options FollowSymLinksCross-Origin Resource Sharing (Optional),於DocumentRoot的Diretory裡設定
LoadModule headers_module modules/mod_headers.so
1
2
3<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>註冊到service後,可使用Apache Monitor管理
httpd.exe -k install [-n MyServiceName]
※使用service開啟httpd無法載入curl,原因是apache認不到curl在PHP目錄裡的依賴包libssh2.dll
PHP Fatal error: Call to undefined function curl_init()
解法: 將libssh2.dll複製一份到apache/bin再重啟
OSX
Setting up a local web server on OS X
網站目錄權限設定
官網說明文件 » File and Directory Ownership and Permissions for Web Content
PHP
curl使用POST打JSON搭Basic Authentication
/pichannel.web/test/curl-json.php
1 |
|
How to POST JSON Data With PHP cURL?
How to process PUT requests with PHP
資策會課程
MAMP: Mac Apache MySQL PHP
錢達智老師 wolfgang.chien@gmail.com
RWD可參考 HTML5App_0309
1 | //定界符號 |
1 | //string |
- include, require: 3-40
- include_once, require_once: 3-43
- define: 常數, 3-11
1 | //當檔案讀取到最後一行後會傳回false |
1 | //global使用全域變數 |
1 | // 陣列 |
1 | //排序func |
1 | // Session操作 |
1 | //另一種if else寫法,可用來區分js的if else,提高可讀性 |
1 | $('#letter').change(function(){ |
Async的範例可參考0702的Lab_AsyncPost
1 | sprintf("<option value='%s'>%s%s</option>",$i, $x, $i+1); |
##存取DB
1 | //連db(加上@是發生錯誤不show錯誤資訊) |
以下程式碼為建立連線存取資料的標準寫法
/LabPhp/php/0626/Lab_MySQL_basic_1_start.php1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29<?php
header("content-type:text/html; charset=utf-8");
// 0. 請先建立 Class 資料庫 (執行 class.sql)
// 1. 連接資料庫伺服器
$link = mysql_connect("localhost", "root", "root") or die(mysql_error());
$result = mysql_query("set names utf8", $link);
mysql_selectdb("class", $link);
// 2. 執行 SQL 敘述
$commandText = "select * from students";
$result = mysql_query($commandText, $link);
// 3. 處理查詢結果
while ($row = mysql_fetch_assoc($result))
{
echo "ID:{$row['cID']}<br>";
echo "Name:{$row['cName']}<br>";
echo "<HR>";
}
mysql_free_result($result);
// 4. 結束連線
mysql_close($link);
echo "<br />-- Done --";
?>
PDO (PHP Data Object): 參考0702 Demo_PDO_xxxxx
6.29上午
file i/o
網站路徑(實體,虛擬)
檔名/目錄名/路徑的操作
檔案操作: 開/讀/關
目錄操作: 開/讀/關
form檔案上傳1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20//目錄操作: 開/讀/關
$fileDir = dirname(realpath("."));
$fileResource = opendir($fileDir);
echo "<table border='1' width='100%'><tr><td width='20%' valign='top'>資料夾:</td><td>";
while($fileList = readdir($fileResource)){
if(is_dir($fileDir.'/'.$fileList)) echo $fileList."<br />";
}
rewinddir($fileResource);
echo "</td></tr><tr><td width='20%' valign='top'>檔案:</td><td>";
while($fileList = readdir($fileResource)){
if(is_file($fileDir.'/'.$fileList))echo $fileList."<br />";
}
echo "</td></tr></table>";
closedir($fileResource);
//檔案操作: 開/讀/關
$filename = fopen("php_file13.htm","r");
while($line = fgets($filename)){
echo $line;
}
fclose($filename);
1 | <?php |
PHP 5 Filesystem Functions Reference1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24//檔案操作: 直接讀
$contents = file_get_contents('php_file11.htm');
echo strip_tags($contents);
//擋案操作: 直接讀成array
$lines = file('php_file11.htm');
foreach ($lines as $line_num => $line) {
echo "#<b>$line_num</b> : " . htmlspecialchars($line) . "<br />\n";
}
//檔案操作: 直接寫
$content = <<<useHTML
<html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<title>關於文淵閣工作室</title>
</head>
<body>
<p>文淵閣工作室創立於1987年,第一本電腦叢書「快快樂樂學電腦」於該年底問世。工作室的創會成員-鄧文淵、李淑玲均為苦學出身,在學習電腦的過程中,一路顛簸走來,嚐遍人間冷暖。</p>
<p>因此,決定整合自身的編輯、教學經驗及新生代的高手群,陸續推出 「快快樂樂全系列」 電腦叢書,冀望以輕鬆、深入淺出的筆觸、詳細的圖說,解決電腦學習者的徬徨無助,並搭配相關網站服務讀者。</p>
<p>感謝您對文淵閣工作室的熱愛,也請您和我們在快快樂樂的氣氛中共同成長,突破極限、超越顛峰。謝謝大家!</p>
</body>
</html>
useHTML;
$filesize = file_put_contents("php_file13a.htm", $content);
echo "檔案寫入完成,大小為 $filesize bytes";
##檔案上傳1
2
3
4
5
6
7
8
9
10
11
12
13<html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<title>上傳檔案表單</title>
</head>
<body>
<form action="php_file9.php" method="post" enctype="multipart/form-data">
請選取要上傳的檔案:<br />
<input type="file" name="fileUpload" /><br />
<input type="submit" value="送出資料" />
</form>
</body>
</html>
1 | <?php |
6.29下午
物件導向
類別: 定義資料&方法(封裝)
物件: 實體化類別定義
繼承(extends). 多型.
建構子(construct) / 解構子(destruct)
##物件導向
OOPLib.php
1 | <?php |
OOP.php
1 | <?php |
OOP2.php
1 | <?php |
##JSON
0630
1 | $sJson = '{"cID":"01","cName":"\u7c21\u5949\u541b","cSex":"F","cBirthday":"1987-04-04","cEmail":"elven@superstar.com","cPhone":"0922988876","cAddr":"\u53f0\u5317\u5e02\u6fdf\u6d32\u5317\u8def12\u865f"}'; |
[…] 中括號代表陣列
{…} 大括號代表物件
, 逗號分隔屬性
\: 分號設定屬性值
“ 雙引號括住屬性值
1 | a=[1,2,3]; |
同源政策 (Same-origin policy): 同源政策限制了程式碼和不同網域資源間的互動。
JSONP: JSON Padding, 技術性處理同源政策的issue
scenario: 於localhost跨域要求www.monster.com的資料
solution: 透過指定script的src來跨域取得資料
http://**localhost**/Lab_JSONP/GetDataFromServer_34.php
1 | $("#btnRefresh").click(btnRefresh_click); |
jQuery的寫法
1 | $("#btnRefresh").click(btnRefresh_click); |
##XML
0701上午
使用xpath來存取資料
1
2
3
4
5
6
7
8
9
10
11 $doc = new DOMDocument();
$doc->Load('employees.xml');
$xpath = new DOMXPath($doc);
//取得屬性值
$entries = $xpath->query("/employees/employee/@EmpType");
//對屬性值設定條件來filter資料
$entries = $xpath->query("/employees/employee[@EmpType='Sales']/lastName");
foreach ($entries as $entry)
{
echo "結果:" . $entry->nodeValue . "<br>";
}chunked transfer encoding : Lab_LongRequest
websocket
single page application
##安全
0701下午
參考WebProgramSecurity.pdf,有server-side及client-side,極重要
- SQL Injection
- Server Configuration
- XSS / CSRF
– captcha: 可參考0702 Lab_CAPTCHA
– anti CSRF token- ClickJacking
– frame bustering
– header(“X-Frame-Options: Deny”);
##laravel
Application key [TlDlIaffLhhfrgA5doqNw6iecg9KjNoU] set successfully.
win7
顯示錯誤
display_errors = On
設置extension目錄
extension_dir = "D:\dvp\dev-tool\php-5.6.11-Win32-VC11-x64\ext"
enable extenstions
extension=php_bz2.dll
extension=php_curl.dll
extension=php_gd2.dll
extension=php_mbstring.dll
extension=php_exif.dll
extension=php_mysql.dll
extension=php_mysqli.dll
extension=php_pdo_mysql.dll
時區
date.timezone = Asia/Taipei
環境變數$PATH加入
D:\dvp\dev-tool\php-5.6.11-Win32-VC11-x64
設置最大post size - Production
post_max_size = 1M
OSX (extra)
開啟xdebug
zend_extension = "xdebug.so"
Composer
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
Reference
PDO Tutorial for MySQL Developers
REST API Turorial
Scope Resolution Operator (::)