资源简介
PHP写的14个项目案例代码.rar 包括ebbs、RSS阅读器、电子商城系统、电子邮件、电子邮件收发系统、短信发送、留言本、明日播客、企业信息展示系统、搜索引擎、天气预报、新闻博客系统、音乐广场、在线支付系统等,希望对大家有帮助。
代码片段和文件信息
“““
FCKeditor - The text editor for internet
Copyright (C) 2003-2006 Frederico Caldeira Knabben
Licensed under the terms of the GNU Lesser General Public License:
http://www.opensource.org/licenses/lgpl-license.php
For further information visit:
http://www.fckeditor.net/
“Support Open Source software. What about a donation today?“
File Name: fckeditor.py
This is the integration file for Python.
File Authors:
Andrew Liu (andrew@liuholdings.com)
“““
import cgi
import os
import string
def escape(text replace=string.replace):
“““Converts the special characters ‘<‘ ‘>‘ and ‘&‘.
RFC 1866 specifies that these characters be represented
in HTML as < > and & respectively. In Python
1.5 we use the new string.replace() function for speed.
“““
text = replace(text ‘&‘ ‘&‘) # must be done 1st
text = replace(text ‘<‘ ‘<‘)
text = replace(text ‘>‘ ‘>‘)
text = replace(text ‘“‘ ‘"‘)
text = replace(text “‘“ ‘‘‘)
return text
# The FCKeditor class
class FCKeditor(object):
def __init__(self instanceName):
self.InstanceName = instanceName
self.basePath = ‘/fckeditor/‘
self.Width = ‘100%‘
self.Height = ‘200‘
self.ToolbarSet = ‘Default‘
self.Value = ‘‘;
self.Config = {}
def Create(self):
return self.CreateHtml()
def CreateHtml(self):
HtmlValue = escape(self.Value)
Html = ““
if (self.IsCompatible()):
File = “fckeditor.html“
link = “%seditor/%s?InstanceName=%s“ % (
self.basePath
File
self.InstanceName
)
if (self.ToolbarSet is not None):
link += “&ToolBar=%s“ % self.ToolbarSet
# Render the linked hidden field
Html += “yle=\“display:none\“ />“ % (
self.InstanceName
self.InstanceName
HtmlValue
)
# Render the configurations hidden field
Html += “yle=\“display:none\“ />“ % (
self.InstanceName
self.GetConfigFieldString()
)
# Render the editor iframe
Html += “rame id=\“%s\__frame\“ src=\“%s\“ width=\“%s\“ height=\“%s\“ frameborder=\“0\“ scrolling=\“no\“> rame>“ % (
self.InstanceName
link
self.Width
self.Height
)
else:
if (self.Width.find(“%%“) < 0):
WidthCSS = “%spx“ % self.Width
else:
WidthCSS = self.Width
if (self.Height.find(“%%“) < 0):
HeightCSS = “%spx“ % self.Height
else:
HeightCSS = self.Height
Html += ““ % (
self.InstanceName
WidthCSS
HeightCSS
HtmlValue
)
Html += “ “
return Html
def IsCompatible(self):
if (os.environ.has_key(“HTTP_USER_AGENT“)):
sAgent = os.environ.get(“HTTP_USER_AGENT“ ““)
else:
s
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 18760 2004-07-10 20:16 PHP案例代码\ebbs\ebbs\--contrib\dbinformer.php
文件 831 2004-03-25 17:56 PHP案例代码\ebbs\ebbs\--contrib\fixfiles.sh
文件 13774 2006-01-28 13:25 PHP案例代码\ebbs\ebbs\--contrib\README.html
文件 16031 2004-07-10 20:16 PHP案例代码\ebbs\ebbs\--contrib\template_db_cache.php
文件 15171 2004-07-10 20:16 PHP案例代码\ebbs\ebbs\--contrib\template_file_cache.php
文件 169 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\--install\index.htm
文件 35211 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\--install\install.php
文件 169 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\--install\schemas\index.htm
文件 19451 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\--install\schemas\mssql_basic.sql
文件 22793 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\--install\schemas\mssql_schema.sql
文件 53566 2006-06-01 20:25 PHP案例代码\ebbs\ebbs\--install\schemas\ms_access_primer.zip
文件 18486 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\--install\schemas\mysql_basic.sql
文件 18302 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\--install\schemas\mysql_schema.sql
文件 18498 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\--install\schemas\postgres_basic.sql
文件 22371 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\--install\schemas\postgres_schema.sql
文件 45940 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\--install\update_to_latest.php
文件 57398 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\--install\upgrade.php
文件 15202 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\admin\admin_board.php
文件 25911 2007-01-04 14:00 PHP案例代码\ebbs\ebbs\admin\admin_db_utilities.php
文件 4686 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\admin\admin_disallow.php
文件 8850 2007-01-08 14:05 PHP案例代码\ebbs\ebbs\admin\admin_forumauth.php
文件 31050 2007-01-05 14:02 PHP案例代码\ebbs\ebbs\admin\admin_forums.php
文件 4844 2007-01-05 16:40 PHP案例代码\ebbs\ebbs\admin\admin_forum_prune.php
文件 13803 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\admin\admin_groups.php
文件 5985 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\admin\admin_mass_email.php
文件 9928 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\admin\admin_ranks.php
文件 18789 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\admin\admin_smilies.php
文件 31628 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\admin\admin_st
文件 32064 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\admin\admin_ug_auth.php
文件 47188 2006-06-09 16:29 PHP案例代码\ebbs\ebbs\admin\admin_users.php
............此处省略3905个文件信息
- 上一篇:zw_Thinkphp小型商城的源码.zip
- 下一篇:淘客们想要的推券客v2.2
相关资源
- 好用的php微信企业号
- 最专业的PHP集成环境秒杀phpStudy、xa
- THINKPHP商城,含支付宝、微信支付
- thinkPHP支付宝支付功能完整源码
- phpMyFAQ v3.0.1 多国语言版
- php MyFAQ问答系统 多国语言版 v3.0.4
- phpMyFAQ 问答系统
- phpMyFAQ v3.0.0 多国语言版
- phpMyFAQ 开源问答系统 v3.0.0 RC2
- PHP网页小游戏
- php小说采集demo
- PHP寄生虫繁殖劫持程序V3.0
- 韩顺平 PHP从入门到精通百度云资源(
- windows安装intl扩展
- phpSpreadsheet.zip
- Xblog、PHPwind、Oblog三款主流商用博客软
- PHP微信扫码关注公众号并授权登录.
- ZipFile.php(PHP压缩类打包)
- php聊天室源码群聊私聊多聊天室
- PHP支持手势的手机端图片裁剪上传
- 使用PHP+Sphinx建立高效的站内搜索引擎
- vip影视源码自动无需采集THINKPHP版
- ThinkPHP5.1 excel表的导入导出操作 (P
- PhpSpreadsheet Excel组件,PHPExcel升级版
- 追梦翔飞数字报刊管理系统PHPV7.3
- 拼团商城开源系统-基于thinkphp5-如花拼
- 微信支付Native扫码方式PHP
- 微信分享jssdk朋友圈带缩略图-utf8php通
- php简历模板
- php大马一句话数据库集合
评论
共有 条评论