【例子介绍】免费在线伪原创PHP版
用法:把文章粘贴到编辑器中,点击转换,则文章中的部分词组会被替换掉,以实现伪原创的目的。 注意:转换以后请再检查您的文章是否通顺,确认文章的可读性 官方网站:http://www.zzcms.com
【相关图片】
【源码结构】
文件清单
└── seo
├── admin
│ ├── AdminIndex.php
│ ├── AdminLogin.php
│ ├── AdminLogout.php
│ ├── css
│ │ └── Admin.css
│ ├── Images
│ │ ├── AdminButton.gif
│ │ ├── AdminFrameSwitch.gif
│ │ ├── AdminTh.gif
│ │ ├── class_add.gif
│ │ ├── class_add.jpg
│ │ ├── class_del.gif
│ │ ├── class_del.jpg
│ │ ├── class_select.gif
│ │ ├── class_select.jpg
│ │ ├── class_update.gif
│ │ ├── class_update.jpg
│ │ ├── close.gif
│ │ ├── lastnode.gif
│ │ ├── lastnodeline.gif
│ │ ├── line.gif
│ │ ├── midclosedfolder.gif
│ │ ├── midnodeline.gif
│ │ ├── midopenedfolder.gif
│ │ ├── node.gif
│ │ ├── open.gif
│ │ ├── vertline1.gif
│ │ └── vertline.gif
│ ├── index.php
│ ├── js
│ │ ├── Admin.js
│ │ ├── common.js
│ │ └── public.js
│ ├── keyword.php
│ ├── ZC_admin_add.php
│ ├── ZC_Admin_Edit.php
│ ├── ZC_Admin_List.php
│ ├── ZC_Admin_Manager.php
│ ├── ZC_Check_admin.php
│ ├── ZC_Left.php
│ ├── ZC_Main.php
│ ├── ZC_Password.php
│ ├── ZC_Seo_Edit.php
│ ├── ZC_Seo_List.php
│ ├── ZC_Seo_Manager.php
│ └── ZC_System.php
├── css
│ ├── Admin.css
│ ├── css.css
│ └── seo.css
├── foot.php
├── help.php
├── Images
│ ├── AdminButton.gif
│ ├── AdminFrameSwitch.gif
│ ├── AdminTh.gif
│ ├── class_add.gif
│ ├── class_add.jpg
│ ├── class_del.gif
│ ├── class_del.jpg
│ ├── class_select.gif
│ ├── class_select.jpg
│ ├── class_update.gif
│ ├── class_update.jpg
│ ├── close.gif
│ ├── lastnode.gif
│ ├── lastnodeline.gif
│ ├── line.gif
│ ├── logo.gif
│ ├── midclosedfolder.gif
│ ├── midnodeline.gif
│ ├── midopenedfolder.gif
│ ├── node.gif
│ ├── open.gif
│ ├── vertline1.gif
│ └── vertline.gif
├── include
│ ├── config.php
│ ├── du.php
│ ├── footer.php
│ ├── global.php
│ ├── head.php
│ ├── keyword.php
│ ├── seo.php
│ └── ver.php
├── index.php
├── install
│ ├── index.php
│ ├── install.css
│ ├── zzcms_bak.sql
│ ├── zzcms.sql
│ ├── zzcms.sql.bak
│ └── 复件 zzcms.sql
├── lib
│ ├── ZC_Function1130.php
│ ├── ZC_Function.php
│ ├── ZC_Mysql.php
│ ├── ZC_Page.php
│ └── ZC_Verify.php
├── list.php
├── top.php
├── xheditor
│ ├── common.css
│ ├── docs
│ │ ├── CHANGE.txt
│ │ ├── LICENCE.txt
│ │ └── README.txt
│ ├── jquery
│ │ ├── jquery-1.3.2.min.js
│ │ └── jquery-1.3.2.src.js
│ ├── serverscript
│ │ ├── asp
│ │ │ └── ubb2html.asp
│ │ └── php
│ │ └── ubb2html.php
│ ├── source
│ │ ├── xheditor-en.js
│ │ ├── xheditor-zh-cn.js
│ │ └── xheditor-zh-tw.js
│ ├── xheditor_emot
│ │ └── default
│ │ ├── biggrin.gif
│ │ ├── call.gif
│ │ ├── cry.gif
│ │ ├── handshake.gif
│ │ ├── huffy.gif
│ │ ├── hug.gif
│ │ ├── kiss.gif
│ │ ├── lol.gif
│ │ ├── mad.gif
│ │ ├── sad.gif
│ │ ├── shocked.gif
│ │ ├── shy.gif
│ │ ├── smile.gif
│ │ ├── sweat.gif
│ │ ├── time.gif
│ │ ├── titter.gif
│ │ ├── tongue.gif
│ │ └── victory.gif
│ ├── xheditor-en.js
│ ├── xheditor_plugins
│ │ └── ubb.js
│ ├── xheditor_skin
│ │ ├── default
│ │ │ ├── iframe.css
│ │ │ ├── img
│ │ │ │ ├── close.gif
│ │ │ │ ├── flash.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── spacer.gif
│ │ │ │ ├── tag-address.png
│ │ │ │ ├── tag-div.png
│ │ │ │ ├── tag-h1.png
│ │ │ │ ├── tag-h2.png
│ │ │ │ ├── tag-h3.png
│ │ │ │ ├── tag-h4.png
│ │ │ │ ├── tag-h5.png
│ │ │ │ ├── tag-h6.png
│ │ │ │ ├── tag-p.png
│ │ │ │ ├── tag-pre.png
│ │ │ │ └── wmp.gif
│ │ │ └── ui.css
│ │ ├── o2007blue
│ │ │ ├── iframe.css
│ │ │ ├── img
│ │ │ │ ├── buttonbg.png
│ │ │ │ ├── close.gif
│ │ │ │ ├── flash.gif
│ │ │ │ ├── icons.gif
│ │ │ │ ├── loading.gif
│ │ │ │ ├── spacer.gif
│ │ │ │ ├── tag-address.png
│ │ │ │ ├── tag-div.png
│ │ │ │ ├── tag-h1.png
│ │ │ │ ├── tag-h2.png
│ │ │ │ ├── tag-h3.png
│ │ │ │ ├── tag-h4.png
│ │ │ │ ├── tag-h5.png
│ │ │ │ ├── tag-h6.png
│ │ │ │ ├── tag-p.png
│ │ │ │ ├── tag-pre.png
│ │ │ │ └── wmp.gif
│ │ │ └── ui.css
│ │ └── o2007silver
│ │ ├── iframe.css
│ │ ├── img
│ │ │ ├── buttonbg.png
│ │ │ ├── close.gif
│ │ │ ├── flash.gif
│ │ │ ├── icons.gif
│ │ │ ├── loading.gif
│ │ │ ├── spacer.gif
│ │ │ ├── tag-address.png
│ │ │ ├── tag-div.png
│ │ │ ├── tag-h1.png
│ │ │ ├── tag-h2.png
│ │ │ ├── tag-h3.png
│ │ │ ├── tag-h4.png
│ │ │ ├── tag-h5.png
│ │ │ ├── tag-h6.png
│ │ │ ├── tag-p.png
│ │ │ ├── tag-pre.png
│ │ │ └── wmp.gif
│ │ └── ui.css
│ ├── xheditor-zh-cn.js
│ └── xheditor-zh-tw.js
└── 程序说明.txt
27 directories, 183 files
评论