首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
您找到你想要的搜索结果了吗?
是的
没有找到

细说PHP(第2版) - 高洛峰

《细说PHP(第2版)》共六个部分,分为30个章节,每一章都是PHP独立知识点的总结。内容涵盖了动态网站开发的前台技术(HTML+CSS)、PHP编程语言的语法、PHP的常用功能模块和实用技巧、MySQL数据库的设计与应用、PHP面向对象的程序设计思想、数据库抽象层PDO、Smarty模板技术、Web开发的设计模式、自定义框架BroPHP、Web项目开发整个流程等目前PHP开发中最主流的技术。每一章中都有大量的实用示例,以及详尽的注释,加速读者的理解和学习,也为每章的技术点设置了大量的自测试题。最后以一个比较完整的、采用面向对象思想,以及通过MVC模式设计,并结合Smarty模板,基于BroPHP框架的CMS系统为案例,详细介绍了Web系统开发从设计到部署的各个细节,便于更好地进行开发实践。

02

ice安装以及简单使用

ICE(Internet Communications Engine)是一个中间件平台。作为一个高性能的互联网通信平台,ICE包含了很多分层的服务和插件(Plug-ins),并且简单、高效和强大。 ICE当前支持C++、Java、C#、Visual Basic、Python和PHP编程语言,并支持在多种操作系统上运行。更多的操作系统和编程语言将会在以后的发布中支持。   1:下载安装包:http://www.zeroc.com/download.html   2:安装ice并在环境变量中配置ice的安装路径 例如:path=D:\ice\Ice-3.5.1\bin 3:如果进行生成java程序,使用slice2java,出现如下:代表安装成功。 slice2java: error: no input file Usage: slice2java [options] slice-files... Options: -h, --help              Show this message. -v, --version           Display the Ice version. -DNAME                  Define NAME as 1. -DNAME=DEF              Define NAME as DEF. -UNAME                  Remove any definition for NAME. -IDIR                   Put DIR in the include file search path. -E                      Print preprocessor output on stdout. --output-dir DIR        Create files in the directory DIR. --tie                   Generate TIE classes. --impl                  Generate sample implementations. --impl-tie              Generate sample TIE implementations. --depend                Generate Makefile dependencies. --depend-xml            Generate dependencies in XML format. --list-generated        Emit list of generated files in XML format. -d, --debug             Print debug messages. --ice                   Permit `Ice' prefix (for building Ice sourc --underscore            Permit underscores in Slice identifiers. --checksum CLASS        Generate checksums for Slice definitions in --stream                Generate marshaling support for public stre --meta META             Define global metadata directive META. 4:使用ice写一个脚本 module demo {  interface Printer { void printString(string s);   };  };  文件名为printer.ice 5:转到printer.ice所在目录,使用命令slice2java printer.ice 生成的文件copy到你的编辑器中。 6:引入Ice.jar到你的项目下面,使用你的ice安装时lib下面的Ice.jar。 7:编写服务端和客户端程序

03
领券