zhongziso种子搜
首页
功能
磁力转BT
BT转磁力
使用教程
免责声明
关于
zhongziso
搜索
[FreeTutorials.Us] Udemy - php-mvc-from-scratch
magnet:?xt=urn:btih:91e36a895e4ad8dbc707f6d8840c4fc539f0f5d7&dn=[FreeTutorials.Us] Udemy - php-mvc-from-scratch
磁力链接详情
Hash值:
91e36a895e4ad8dbc707f6d8840c4fc539f0f5d7
点击数:
104
文件大小:
244.31 MB
文件数量:
59
创建日期:
2019-5-2 02:17
最后访问:
2024-11-7 00:36
访问标签:
FreeTutorials
Us
Udemy
-
php-mvc-from-scratch
文件列表详情
01 Introduction_ MVC concepts and development environment setup/001 Introduction.mp4 3.66 MB
01 Introduction_ MVC concepts and development environment setup/002 The problem with writing web applications_ how NOT to structure your code.mp4 6.3 MB
01 Introduction_ MVC concepts and development environment setup/003 The MVC pattern_ What it is and how it can help you write better code.mp4 4.81 MB
01 Introduction_ MVC concepts and development environment setup/004 Install a web server_ database server and PHP on your computer.mp4 3.98 MB
01 Introduction_ MVC concepts and development environment setup/005 Start writing the framework_ Create the folders and configure the web server.mp4 5.77 MB
02 Routing_ how URLs are processed in an MVC framework/007 Create a central entry point to the framework_ the front controller.mp4 4.12 MB
02 Routing_ how URLs are processed in an MVC framework/008 Configure the web server to have pretty URLs.mp4 3.02 MB
02 Routing_ how URLs are processed in an MVC framework/010 Create and require (not include) the router class.mp4 3.25 MB
02 Routing_ how URLs are processed in an MVC framework/011 Create the routing table in the router_ and add some routes.mp4 2.97 MB
02 Routing_ how URLs are processed in an MVC framework/012 Match the requested route to the list of routes in the routing table.mp4 4.54 MB
03 Advanced routing_ add simpler but more powerful routes/013 Introduction to advanced routing using route variables.mp4 1.93 MB
03 Advanced routing_ add simpler but more powerful routes/014 How to do complex string comparisons_ an introduction to regular expressions.mp4 5.74 MB
03 Advanced routing_ add simpler but more powerful routes/015 Using special characters in regular expressions_ advanced pattern matching.mp4 3.97 MB
03 Advanced routing_ add simpler but more powerful routes/016 Write even more powerful regular expressions_ use character sets and ranges.mp4 3.06 MB
03 Advanced routing_ add simpler but more powerful routes/017 Extract parts of strings using regular expression capture groups.mp4 3.87 MB
03 Advanced routing_ add simpler but more powerful routes/018 Get the controller and action from a URL with a fixed structure.mp4 6.44 MB
03 Advanced routing_ add simpler but more powerful routes/019 Replace parts of strings using regular expressions.mp4 3.61 MB
03 Advanced routing_ add simpler but more powerful routes/020 Get the controller and action from a URL with a variable structure.mp4 8.72 MB
03 Advanced routing_ add simpler but more powerful routes/021 Add custom variables of any format to the URL.mp4 4.27 MB
04 Controllers and actions/022 Controllers and actions_ an introduction.mp4 2.01 MB
04 Controllers and actions/023 How to create objects and run methods dynamically.mp4 2.15 MB
04 Controllers and actions/024 Dispatch the route_ create the controller object and run the action method.mp4 8.51 MB
04 Controllers and actions/025 How to better organise your classes by using namespaces.mp4 5.27 MB
04 Controllers and actions/026 Class autoloading_ load classes automatically without having to require them.mp4 4.74 MB
04 Controllers and actions/027 Load classes automatically_ add namespaces and an autoload function.mp4 5.01 MB
04 Controllers and actions/028 Remove query string variables from the URL before matching to a route.mp4 4.13 MB
04 Controllers and actions/029 Pass route parameters from the route to all controllers.mp4 3.92 MB
04 Controllers and actions/030 The __call magic method_ how to call inaccessible methods in a class.mp4 3.73 MB
04 Controllers and actions/031 Action filters_ call a method before and after every action in a controller.mp4 6.62 MB
04 Controllers and actions/033 Organise controllers in subdirectories_ add a route namespace option.mp4 4.74 MB
05 Views/034 Views_ an introduction.mp4 1.07 MB
05 Views/035 Display a view_ create a class to render views and use it in a controller.mp4 3.16 MB
05 Views/036 Output escaping_ what it is_ why do it_ and how and when to do it.mp4 5.66 MB
05 Views/037 Pass data from the controller to the view.mp4 2.59 MB
05 Views/038 Templating engines_ what they are and how they can improve your PHP code.mp4 4.56 MB
05 Views/039 Make views easier to create and maintain_ add a template engine.mp4 4.29 MB
05 Views/042 Remove repetition in the view templates_ add a base template to inherit from.mp4 3.13 MB
06 Manage code using Composer/043 Install third-party PHP code libraries automatically using Composer.mp4 3.35 MB
06 Manage code using Composer/044 Installing and using Composer.mp4 4.16 MB
06 Manage code using Composer/045 Install the template engine library using Composer.mp4 2.36 MB
06 Manage code using Composer/046 Include all package classes automatically using the Composer autoloader.mp4 2.07 MB
06 Manage code using Composer/047 Use the Composer autoloader to load the template engine library.mp4 1.38 MB
06 Manage code using Composer/048 Add your own classes to the Composer autoloader.mp4 3.12 MB
06 Manage code using Composer/049 Replace the autoload function with the Composer autoloader.mp4 3.48 MB
07 Models/050 Models_ an introduction.mp4 2.31 MB
07 Models/051 Create a database and check you can connect to it from PHP.mp4 4.36 MB
07 Models/052 An introduction to PDO_ why it makes working with databases in PHP easier.mp4 4.6 MB
07 Models/053 Add a model_ get data from the database and display it in a view.mp4 3.87 MB
07 Models/054 Optimise the database connection_ connect only on demand and reuse it.mp4 4.96 MB
08 Configuration and error handling/056 Put application configuration settings in a separate file.mp4 3.29 MB
08 Configuration and error handling/057 How PHP reports problems_ errors_ exceptions_ and how to handle them.mp4 5.21 MB
08 Configuration and error handling/058 Handle errors_ convert errors to exceptions and add an exception handler.mp4 5.47 MB
08 Configuration and error handling/059 PHP configuration settings_ where to find them and how to change them.mp4 4.87 MB
08 Configuration and error handling/060 Configure PHP to display error messages.mp4 2.9 MB
08 Configuration and error handling/061 Show detailed error messages to developers_ friendly error messages to users.mp4 4.84 MB
08 Configuration and error handling/062 Categorise different types of error using HTTP status codes.mp4 6.04 MB
08 Configuration and error handling/063 Add views to make error pages look nicer in production.mp4 2.83 MB
09 Conclusion/064 A brief introduction to some popular frameworks.mp4 6.24 MB
09 Conclusion/065 Conclusion.mp4 3.25 MB
其他位置