原來NSLog();那麼好用
1 2 NSDictionary *playerInfo = [aNotification userInfo]; NSLog(@"%@", playerInfo);NSDictionary *playerInfo = [aNotification userInfo]; NSLog(@"%@", playerInfo); 我很好奇這個 NSDictionary 裡面裝了什麼膏藥? 就用NSLog幫忙揭開神祕的面紗 : Album = …
1 2 NSDictionary *playerInfo = [aNotification userInfo]; NSLog(@"%@", playerInfo);NSDictionary *playerInfo = [aNotification userInfo]; NSLog(@"%@", playerInfo); 我很好奇這個 NSDictionary 裡面裝了什麼膏藥? 就用NSLog幫忙揭開神祕的面紗 : Album = …
1 2 3 4 5 6 7 8 9 10 11 12 13 14 int main(int argc, char *argv[]) { [NSThread detachNewThreadSelector:@selector(checkiTunesStatus) …
I’m going to use the Google Mini pdf file as this demonstration. Please download that file to the same directory of your …
建立 rrd 檔案. 然後更新溫度資訊到 rrd 檔案內 :initial rrd file and update temperature into rrd file : 畫 rrd 圖 :draw rrd graphs …
程式碼如下 : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 …
下面這個. 會把輸出儲存在$output 1 2 $cmd = "ls -l"; $output = shell_exec($cmd);$cmd = "ls -l"; $output = shell_exec($cmd); 還有另外一種作法用 system function . 這個在執行過程就會直接顯示出來. …
Using php to create openldap sha password hash 應該很少有人有這樣的需求. 不過我就是有. 下面程式可以讓你產生 ldap sha 密碼 hash : 1 2 $passwd = "TOP_SECRET"; $ldap_passwd …
程式目的 : 當使用者了按 checkbox 後, 才讓 delete button 啟用. 當使用者取消 checkbox 後, 將 delete button 停用. html 程式碼如下 : 1 2 3 …
如何使用 php 連結 ldap server? 下面是我的程式範例 : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 …
Codes : <label for=”breakfast”>早餐</label> <select id=”breakfast” name=”breakfast”> <optgroup label=”中式”></optgroup> <option value=”c1″>饅頭</option> <option value=”c2″>燒餅</option> <option value=”c3″>油條</option> <optgroup label=”西式”></optgroup> <option value=”w1″>鬆餅</option> <option value=”w2″>漢堡</option> <option value=”w3″>薯條</option> …