Warning: Creating default object from empty value in /www/wwwroot/sc35.com/blog/wp-content/plugins/paged-comments/paged-comments.php on line 31
Tag Archive for ‘PHP’ - Wang
FV.Zone Project Code

WordPress 更新到4.9.25 停掉了UTW这一伟大的插件...

PHP Jabber Bot Beta 0.5

7月 18th, 2007

现在我将告诉你怎么使用这个Jabber 协议机器人。

首先安装好Web服务器环境,我是在Windwos下使用的,所以我用的是wamp web 套件请记住PHP一定要在5以上。 Read the rest of this entry »

Mr.Gumby EE 1.6 发布了

6月 23rd, 2007


上次AMIO说,可能会在半年之内发布,当时我就想,可能不会这么长的吧,因为1.5.2已经发布了很久了,不过这真是让人高兴的事。

哈哈哈,事情真是好得出乎意料,前几天才发了预览,今天EllisLab就发布EE 1.6了,赞!我当时说的“半年以内”虽然是开玩笑,不过也绝没有想到会这么快。看这情况,EllisLab一直在秘密开发,直到临近发布了才肯放出来那些消息。 Read the rest of this entry »

PHP 图形处理函数库

8月 26th, 2006

使用本功能需要在编译 PHP 前先安装 GD library。

     Header ( "Content-type: image/gif" );
$im = imagecreate ( 400 , 30 );
$black = ImageColorAllocate ( $im , 0 , 0 , 0 );
$white = ImageColorAllocate ( $im , 255 , 255 , 255 );
imageline ( $im , 1 , 1 , 350 , 25 , $black );
imagearc ( $im , 200 , 15 , 20 , 20 , 35 , 190 , $white );
imagestring ( $im , 5 , 4 , 10 , "Graph TEST!!" , $white );
ImageGif ( $im );
ImageDestroy ( $im );
?> 

Read the rest of this entry »

AJAXPress充满ajax气息的BLOG

3月 10th, 2006

AJAXPress充满ajax气息的BLOG系统
介绍:
AJAXPress的目标是打造一个精小但功能强大的blog系统. Read the rest of this entry »

Dissect WordPress Plugin

2月 2nd, 2006

一直对软件的组件、插件架构非常感兴趣,我认为现在开发任何应用程序,一定要有一个架构良好的插件机制,这样可以吸引其他人来开发插件,极大的扩充系统的功能。Eclipse就是一个非常棒的例子,几乎你想什么功能,都可以从社区中找到相应的 Read the rest of this entry »