Apr 30

 問題

為什麼更新到Flash Player 9後,用getURL不能打開其他網頁。這有可能是Flash在本地發佈安全限制,但我是發佈在網絡上,為什麼仍然不能?原因是提問者往往沒有說清楚自己 的發佈路徑,別人就會摸不著頭腦。其實,如果包含Flash的網頁所在domain,跟Flash所在domain是不同,如果用getURL,加上 _self, _top, _parent來變更目前網頁,Flash Player 9起會預設無效!

答案及解決方法:

allowScriptAccess在 Flash Player 7或之前是always, Flash Player 8或之後是sameDomain。

因此會發現getURL不能打開其他網頁。只要加上allowScriptAccess=always就可以解決問題。(參考這TechNote


Written by 傻仔仔

光波24書網(http://www.24reader.com/) - 免費電子書

  

光波24書網(http://www.24reader.com/) - 新到電子書

  

光波24書網(http://www.24reader.com/) - 快將推出電子書




Apr 28

Free-PHP.net 是一個國外提供 PHP 相關資訊的網站,除了收集了部份的 PHP 程式 (PHP scripts)、也有商業性質的 PHP 程式,當中都分類的相當仔細,Free-PHP.net 並不是一個開發程式的網站,它只是將一些實用的連結收錄進來而成的一個資訊站,資料或許不是相當豐富,但卻很實用。

同時 Free-PHP.net 也提供了 PHP 書籍(PHP Books)、PHP 教學文件(PHP Tutorials)、網站資源(Web Resources),甚至還有 PHP 的網站空間,對於 PHP 愛好者或網站管理員來說,這是一個相當不錯的資訊站台。

【網站網址】http://www.free-php.net/


Written by 傻仔仔

光波24書網(http://www.24reader.com/) - 免費電子書

  

光波24書網(http://www.24reader.com/) - 新到電子書

  

光波24書網(http://www.24reader.com/) - 快將推出電子書




Oct 27


IE和FF都可運行。 下面是原文簡介:
If you are a big Mac fan, you will love this CSS dock menu that I designed. It is using Jquery Javascript library and Fisheye component from Interface and some of my icons. It comes with two dock styles - top and bottom. This CSS dock menu is perfert to add on to my iTheme. Here I will show you how to implement it to your web page.


Written by 傻仔仔

光波24書網(http://www.24reader.com/) - 免費電子書

  

光波24書網(http://www.24reader.com/) - 新到電子書

  

光波24書網(http://www.24reader.com/) - 快將推出電子書




Oct 16

PHP 中文全文搜尋 FullText Search 連中文分詞 (只需PHP就能使用Lucene)

前兩日發表過一份關於 ZEND FRAMEWORK 既SEARCH ENGINE 既文章
E篇係加強版.

這一次最大的分别是支援了中文分詞。上一個版本只支援英文。而這個版本支援了中文全文搜尋及中文分詞功能已把PROGRAM 簡化 改得容易明白。

閱讀這篇文章的其餘部分 »


Written by 傻仔仔

光波24書網(http://www.24reader.com/) - 免費電子書

  

光波24書網(http://www.24reader.com/) - 新到電子書

  

光波24書網(http://www.24reader.com/) - 快將推出電子書




Oct 10

前排我以前的亞head 問我之前係學校做tss時 如何大批地製作學生的密碼,

我就同佢講以前我用linux行shell 去做的.但不方便,所以我就幫佢寫左個php去做。

閱讀這篇文章的其餘部分 »


Written by 傻仔仔

光波24書網(http://www.24reader.com/) - 免費電子書

  

光波24書網(http://www.24reader.com/) - 新到電子書

  

光波24書網(http://www.24reader.com/) - 快將推出電子書




Oct 10
  • select name from detail where name like ‘%a%’

會出現英文以外的中文字.例如: “新”而且效能不好所以不建議用。

  • SELECT * FROM table WHERE locate(substr,str)>0 ;

這個是不包括大小階但沒有剛才的問題

  • SELECT * FROM TABLE WHERE FIELDS LIKE BINARY '%FIND%'

這是有區別大小階的 需要使用lower,upper來轉換

  • select field from detail where binary ucase(field) like concat(’%',ucase(’a'),’%')

這個沒有search英文出中文的問題,而且沒有大小階的問題。但因為使用like 所以速度較慢。

  • 最好的方法是使用正則表達式方法如下:

閱讀這篇文章的其餘部分 »


Written by 傻仔仔

光波24書網(http://www.24reader.com/) - 免費電子書

  

光波24書網(http://www.24reader.com/) - 新到電子書

  

光波24書網(http://www.24reader.com/) - 快將推出電子書




Oct 06

php中高效能清除html

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 3 out of 5)
Loading ... Loading ...

在字符截取時常會因為HTML格式發生意外,ASP是,PHP也是,如果是可預見的簡單HTML格式用replace就行了,對於文章正文這一類裡面可能包含所有的HTML格式,想高效點還是用下面的的,已測試

 閱讀這篇文章的其餘部分 »


Written by 傻仔仔

光波24書網(http://www.24reader.com/) - 免費電子書

  

光波24書網(http://www.24reader.com/) - 新到電子書

  

光波24書網(http://www.24reader.com/) - 快將推出電子書