登录
首页 » PHP » PHPweb

PHPweb

于 2010-10-14 发布 文件大小:720KB
0 232
下载积分: 1 下载次数: 23

代码说明:

  php教程,如果想要架设一台同时支持PHP、ASP、ASP.NET、JSP、Perl的Web虚拟主机服务器.(php tutorial, if you want to set up a support both PHP, ASP, ASP.NET, JSP, Perl' s Web hosting server.)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论


0 个回复

  • daikuan
    dedecms 贷款网站模板,解压到根目录(dedecms daikuan moban)
    2014-08-01 23:54:58下载
    积分:1
  • messageHTML
    自动通过网页填写手机注册技术,可发短信验证码到手机(Automatic registration by page fill in mobile phone technology, can send message authentication code to the phone)
    2013-09-20 16:25:32下载
    积分:1
  • HTML5后台模板一套自适应WEB+移动端设备
    资源描述自适应网站后台模板一套,兼容手机端,时尚大气,简洁,找了好久国外一个网站拔下来的,自己收藏拿出来分享给大家!
    2022-02-11 18:47:44下载
    积分:1
  • Java web随机生成带有干扰线的验证码
    Java web中用于随机生成带有干扰线的验证码,可部署在myeclipse上运行查看效果,代码转至网上,若有侵权,马上删除!
    2023-06-20 16:50:03下载
    积分:1
  • HTML5赣极方棋小游戏
    资源描述HTML5赣极方棋小游戏有多种棋子模式:可以是象棋棋子模式,军旗棋子模式,动物棋子模式,自定义棋子模式。棋子分7个级别,级别最高棋子实力最大,最小实力棋子可以克制最大实力棋子。 赣极方棋原创于江西赣南地区,由赣极发明(未申请专利),赣南本土人士创作,网上有电子版的赣极方棋体验。与其它方棋仅名字“方棋”相同,赣极方棋在棋盘及玩法上均异于其它方棋。这类似于“中国象棋”和“国际象棋”的区别。棋盘是正方型,以及棋盘上有众多大小方块线条构成,因此命名为“赣极方棋”。
    2022-05-16 15:27:31下载
    积分:1
  • Applied-Markov-Decision-Processes
    本书从简单的例子开始 ,介绍了马尔可夫决策过程的基本概念、决策过程以及一些常用 的基本理论 .还介绍了多种最优准则 , 包括有限阶段准则、折扣准则、平均准则、权重报酬准 则、概率准则等 .从模型角度考虑了有限状态空间、可数状态空间和一般 Borel 状态空间 从 决策时间上来说 , 考虑了离散时间、连续时间和半马氏决策时刻问题 .本文还介绍了大量的应 用实例以及建模方法 .本书可作为高年级大学生和研究生教材 , 也可作为运筹学、管理科学、 信息科学、系统科学以及计算机科学和工程领域的学者和技术人员的参考书 . (From the simple example of this book introduces the basic concepts of Markov decision processes, and decision-making process as well as some common basic theory also describes the various optimal criteria, including criteria for limited stage, discounted, average criteria weights remuneration The guidelines, such as the probability criterion from the point of view of the finite state model space countable state space and general Borel state space from the decision-making time, consider a discrete-time, continuous-time and half-time Markov decision problem this article describes. a large number of application examples and modeling methods. book can serve as senior undergraduate and graduate teaching, but also as research, reference management science, information science, system science, and academics and technical staff in computer science and engineering fields.)
    2014-08-15 15:45:07下载
    积分:1
  • 网页留言簿源代码
    资源描述基于XML技术的网页留言簿      > 程序调用文件基于asp      > 高度的可定制 
    2022-03-17 00:30:18下载
    积分:1
  • register
    说明:  做了一个路由器app的登录页面,但是其中的功能还未能实现,希望能尽早实现。(I made a login page of the router app, but its functions have not been realized yet. I hope it can be realized as soon as possible.)
    2020-06-23 08:40:02下载
    积分:1
  • guoshanche
    HTML5 SVG实现过山车动画,纯动画效果,效果非常好。(HTML5 SVG animation to achieve a roller coaster, pure animation effects, the effect is very good.)
    2020-09-10 13:28:03下载
    积分:1
  • FrCapture-master
    说明:  ## 视频截图工具 可以在预览视频的时候选择一个适合的界面把它截取下来,并存成图片。 ## 使用 ### 简单使用 主要文件: ``` <script src="poster.js"></script> ``` 在视频预览界面调用: ``` poster($('video')[0],function(e){ //console.log(e); if(e.bool){ //输出文件对象 var blob=e.data;//返回的是blob对象 console.log(blob); p.src=window.URL.createObjectURL(e.data);//创建一个临时预览路径 } }); ``` ### 使用extendvideo.js `extendvideo.js`与`poster.js`不同的是前者会在引入它的页面里每个`video`标签里增加一个`getPoster()`方法 。 用法: ``` var blob=$('video')[0].getPoster();//返回图片blob对象 ``` ## 原理 此视频截图工具,采用了canvas绘图函数实现video图片截取,产生base64编码图片信息,再通过转blob。 你的浏览器需要支持`HTML5`(### simple to use Main documents: . <script src= "poster.js" ></script> . Call on the video preview interface: . Poster ($('video') [0], function (E) {) //console.log (E); If (e.bool) { / / output file object Var blob=e.data; / / return is blob Console.log (BLOB); P.src=window.URL.createObjectURL (e.data); / / create a temporary preview path } }); . The use of extendvideo.js ### The difference between `extendvideo.js` and `poster.js` is that the former adds a `getPoster () method to each `video` tag in the page that is introduced to it. . Usage: . Var blob=$('video') [0].getPoster (BLOB); / / return picture object . ## principle This video capture tool uses a canvas drawing function to intercept video pictures, generate Base64 coded picture information, and then transfer blob. ## compatibility Your browser needs to support `HTML5`)
    2018-01-16 10:49:42下载
    积分:1
  • 696518资源总数
  • 104696会员总数
  • 19今日下载