书栈网 · BookStack 本次搜索耗时 0.020 秒,为您找到 293 个相关结果.
  • 架构目标

    设计和架构目标 设计和架构目标 CodeIgniter 的目标是在最小化,最轻量级的开发包中得到最大的执行效率、功能和灵活性。 为了达到这个目标,我们在开发过程的每一步都致力于基准测试、重构和简化工作,拒绝加入任何对实现目标没有帮助的东西。 从技术和架构角度看,CodeIgniter 按照下列目标创建: 动态实例化。 在 CodeIgnite...
  • Database Events

    Database Events The Events Database Events The Database classes contain a few Events that you can tap into inorder to learn more about what is happening during the database e...
  • 创建新闻条目

    创建新闻条目 创建一个表单 模型 路由 创建新闻条目 现在你已经知道如何通过 CodeIgniter 从数据库中读取数据了,但是你还没有向数据库中写入数据。在这一节,你将继续完善前文中创建的 News 控制器和模型,添加上这一功能。 创建一个表单 为了向数据库中写入数据,你需要先创建一个表单用来填写要存储的信息,这意味着你的表单里需要包含...
  • PSR Compliance

    PSR Compliance PSR Compliance The PHP-FIG was created in 2009 to help make code more interoperable between frameworksby ratifying Interfaces, style guides, and more that membe...
  • 介绍

    开始 CodeIgniter 是什么? CodeIgniter 速记表 支持特性 应用程序流程图 模型-视图-控制器 架构目标
  • 模型-视图-控制器

    模型-视图-控制器 模型-视图-控制器 CodeIgniter 是基于模型-视图-控制器这一设计模式的。MVC 是一种将应用程序的逻辑层和表现层进行分离的方法。在实践中,由于表现层从 PHP 脚本中分离了出来,所以它允许你的网页中只包含很少的脚本。 模型 (Model) 代表你的数据结构。通常来说,你的模型类将包含取出、插入、更新你的数据库资料...
  • Troubleshooting

    Troubleshooting How do I know if my install is working? I have to include index.php in my URL Only the default page loads The tutorial gives 404 errors everywhere :( What’s wit...
  • HTML Table Class

    HTML Table Class Using the Table Class Initializing the Class Examples Changing the Look of Your Table Class Reference HTML Table Class The Table Class provides methods th...
  • Pagination

    Pagination Loading the Library Paginating Database Results Paginating Multiple Results Manual Pagination Paginating with Only Expected Queries Customizing the Links View Confi...
  • Events

    Events Enabling Events Defining an Event Setting Priorities Publishing your own Events Simulating Events Event Points Events CodeIgniter’s Events feature provides a means...