Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай The Complete PHP Masterclass - Go from Beginner to Artisan, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:01:12
    Course Introduction
  2. Урок 2. 00:02:17
    How to Get Help
  3. Урок 3. 00:01:00
    Finding the Resources
  4. Урок 4. 00:14:26
    [Win/Mac] Installing Dev Environment on Windows and Mac
  5. Урок 5. 00:10:01
    [Win/Mac] MySQL Root Password and Workbench (Option 2)
  6. Урок 6. 00:11:27
    [Linux] Installing Dev Environment on Linux
  7. Урок 7. 00:15:49
    Configuring Apache with a Local Test Website
  8. Урок 8. 00:08:20
    Installing Eclipse PDT
  9. Урок 9. 00:04:08
    Coding Standards
  10. Урок 10. 00:06:20
    Hello World
  11. Урок 11. 00:04:44
    Printing Text in the Console
  12. Урок 12. 00:15:54
    Variables and Data Types
  13. Урок 13. 00:15:11
    Four Types of Strings in PHP
  14. Урок 14. 00:06:02
    String Interpolation
  15. Урок 15. 00:09:59
    Tabs, New Lines, and the Escape Character
  16. Урок 16. 00:08:26
    PHP is Loosely Typed
  17. Урок 17. 00:08:24
    Operators
  18. Урок 18. 00:08:32
    Indexing Into Strings
  19. Урок 19. 00:10:15
    String Concatenation
  20. Урок 20. 00:06:58
    Not Defining a Value Versus Null
  21. Урок 21. 00:21:19
    Two Types of Arrays
  22. Урок 22. 00:09:46
    The Difference Between echo, print_r, and var_dump
  23. Урок 23. 00:21:27
    in_array, array_key_exists empty, isset, array_slice
  24. Урок 24. 00:09:25
    Gotcha with isset and empty
  25. Урок 25. 00:02:23
    Section Challenge: Copy Words in a Sentence into an Array
  26. Урок 26. 00:06:24
    Solution: Word Array
  27. Урок 27. 00:04:31
    Running Hello World in Your Browser
  28. Урок 28. 00:08:31
    True, False, Truthy, Falsey
  29. Урок 29. 00:15:11
    Control Structures with if / elseif / else
  30. Урок 30. 00:13:11
    Switch
  31. Урок 31. 00:06:28
    Ternary Statements
  32. Урок 32. 00:14:16
    Handling Form Submissions - Introduction to Superglobals
  33. Урок 33. 00:06:40
    $_REQUEST, $_GET, and $_POST Superglobals
  34. Урок 34. 00:07:37
    $_SERVER
  35. Урок 35. 00:08:08
    Handling a File Upload
  36. Урок 36. 00:09:21
    Number Guessing Game and rand
  37. Урок 37. 00:09:24
    Security Concerns with $_GET
  38. Урок 38. 00:06:22
    Using $_COOKIE to Store the Number
  39. Урок 39. 00:02:53
    Security Concerns with Cookies
  40. Урок 40. 00:21:50
    Using Sessions to Make It More Challenging
  41. Урок 41. 00:02:49
    Section Challenge: Submit a Form - Set Cookie When Valid
  42. Урок 42. 00:13:25
    Solution: Server Side Validation
  43. Урок 43. 00:08:50
    For loop
  44. Урок 44. 00:05:33
    Printing All Values in an Array
  45. Урок 45. 00:08:25
    I++, J++... C++?
  46. Урок 46. 00:05:28
    Nested For Loop
  47. Урок 47. 00:06:01
    Printing Times Tables
  48. Урок 48. 00:08:23
    Continue and Break
  49. Урок 49. 00:05:05
    The Foreach Loop
  50. Урок 50. 00:06:35
    The While Loop
  51. Урок 51. 00:03:59
    The Do / While Loop
  52. Урок 52. 00:08:26
    Augmented Assignment
  53. Урок 53. 00:02:45
    Section Challenge: Implement Binary Search
  54. Урок 54. 00:16:01
    Solution: Implement Binary Search
  55. Урок 55. 00:13:00
    Writing data to a file using file_put_contents
  56. Урок 56. 00:06:36
    Reading the Contents of a File with file_get_contents
  57. Урок 57. 00:09:21
    The eval() Function is EVIL!
  58. Урок 58. 00:12:11
    Serialize / Unserialize (Hint: Also Evil!)
  59. Урок 59. 00:23:00
    Writing Functions in PHP
  60. Урок 60. 00:12:26
    Anonymous / Lambda Functions
  61. Урок 61. 00:10:23
    Recursion
  62. Урок 62. 00:07:42
    Mutual Recursion
  63. Урок 63. 00:06:12
    Generators
  64. Урок 64. 00:08:22
    Gathering Input From the Console
  65. Урок 65. 00:19:25
    Creating a Phar (PHP Archive) File
  66. Урок 66. 00:00:47
    Section Challenge: Implement a Recursive Factorial Function
  67. Урок 67. 00:09:08
    Solution: Recursive Factorial
  68. Урок 68. 00:05:05
    Classes in PHP
  69. Урок 69. 00:05:40
    Static Methods
  70. Урок 70. 00:07:59
    Static Properties
  71. Урок 71. 00:08:56
    The __construct Method
  72. Урок 72. 00:03:17
    Dynamic Methods
  73. Урок 73. 00:06:42
    Dynamic Properties and the $this keyword
  74. Урок 74. 00:08:36
    Including a file Versus Require
  75. Урок 75. 00:07:20
    Namespaces
  76. Урок 76. 00:25:45
    spl_autoload_register
  77. Урок 77. 00:32:33
    Interfaces
  78. Урок 78. 00:25:27
    Abstract Classes and Extending a Class (Inheritance)
  79. Урок 79. 00:11:58
    Traits
  80. Урок 80. 00:27:49
    Error Handling With Try / Catch / Finally
  81. Урок 81. 00:01:19
    Challenge: Build a Toaster Class
  82. Урок 82. 00:11:41
    Solution: Toaster
  83. Урок 83. 00:04:04
    Hardening the Toaster with Type Hints
  84. Урок 84. 00:16:09
    Class Scopes: Public vs Protected vs Private Scopes
  85. Урок 85. 00:06:29
    $this Versus Self
  86. Урок 86. 00:01:52
    Get Composer
  87. Урок 87. 00:18:44
    Installing Guzzle, and The "vendor" Directory and Autoloading
  88. Урок 88. 00:10:32
    Guzzle Google
  89. Урок 89. 00:06:49
    Section Challenge: Driver Backbone
  90. Урок 90. 00:21:12
    Solution: Driver Backbone
  91. Урок 91. 00:01:53
    The time Function and Unix Timestamps
  92. Урок 92. 00:05:15
    Date and time formats with the date Function
  93. Урок 93. 00:08:38
    The DateTime Class
  94. Урок 94. 00:10:23
    Adding and Subtracting Dates
  95. Урок 95. 00:13:11
    How Carbon Makes Time Travel Possible... with Ease!
  96. Урок 96. 00:00:49
    Section Challenge: Print Your Birthday Using All Three
  97. Урок 97. 00:12:21
    Solution: Birthday Printing
  98. Урок 98. 00:01:46
    SQL Primer: MySQL Workbench
  99. Урок 99. 00:07:14
    Creating a Database Schema in MySQL Workbench
  100. Урок 100. 00:10:03
    PHP PDO and Connecting to Our New Database
  101. Урок 101. 00:07:29
    SQL Primer: INSERT
  102. Урок 102. 00:04:16
    Raw SQL INSERT using PHP PDO
  103. Урок 103. 00:10:59
    SQL Primer: SELECT
  104. Урок 104. 00:04:51
    Raw SQL SELECT
  105. Урок 105. 00:03:24
    SQL Primer: UPDATE
  106. Урок 106. 00:04:24
    Raw SQL UPDATE
  107. Урок 107. 00:11:21
    SQL Primer: DELETE
  108. Урок 108. 00:02:20
    Raw SQL DELETE
  109. Урок 109. 00:08:23
    SQL Injections with Robert') DROP TABLES Students;--
  110. Урок 110. 00:07:46
    Prepared Statements in PHP PDO
  111. Урок 111. 00:01:19
    Section Challenge: Rewrite All Queries to Use Prepared Statements
  112. Урок 112. 00:12:53
    Solution: Well Prepared
  113. Урок 113. 00:07:55
    SOLID, DRY, YAGNI - What Are They? Why Should I Care?
  114. Урок 114. 00:13:37
    S - Single Responsibility Principle
  115. Урок 115. 00:16:07
    O - Open-Closed Principle
  116. Урок 116. 00:09:53
    L - Liskov Substitution Principle
  117. Урок 117. 00:11:42
    I - Interface Segregation Principle
  118. Урок 118. 00:12:10
    D - Dependency Inversion Principle
  119. Урок 119. 00:16:24
    DRY - Don't Repeat Yourself!
  120. Урок 120. 00:06:39
    YAGNI - You Aren't Gonna Need It!
  121. Урок 121. 00:26:34
    Asymptotic Notation
  122. Урок 122. 00:23:29
    Your Code Should Comment Itself
  123. Урок 123. 00:14:12
    Introduction
  124. Урок 124. 00:20:37
    Why Upwork?
  125. Урок 125. 00:18:07
    Drawbacks of Upwork
  126. Урок 126. 00:12:09
    Benefits / Drawbacks of Fiverr
  127. Урок 127. 00:16:43
    Benefits / Drawbacks of Freelancer.com
  128. Урок 128. 00:53:09
    Building an Awesome Profile
  129. Урок 129. 00:51:16
    Finding Upwork Projects
  130. Урок 130. 00:16:57
    Discovery (Sales) Meetings
  131. Урок 131. 00:03:59
    How Long Does It Take to Get a Project on Upwork?
  132. Урок 132. 00:10:32
    Installing WordPress
  133. Урок 133. 00:16:46
    Hello World Plugin
  134. Урок 134. 00:11:21
    Installing WooCommerce with Demo Products
  135. Урок 135. 00:10:59
    WordPress Hooks
  136. Урок 136. 00:14:29
    add_action Versus add_filter
  137. Урок 137. 00:14:33
    Custom WooCommerce "Thank You" Page
  138. Урок 138. 00:00:37
    Challenge: Read The WC Docs for WC_Order - Print Purchased Products
  139. Урок 139. 00:02:51
    Solution: Print Purchased Products
  140. Урок 140. 00:01:12
    Deploying a Plugin
  141. Урок 141. 00:01:14
    Challenge: Create the Starting Point
  142. Урок 142. 00:01:49
    Solution: Widget Starting Point
  143. Урок 143. 00:01:02
    Challenge: Implement spl_autoload_register
  144. Урок 144. 00:11:26
    Solution: spl_autoload_register
  145. Урок 145. 00:18:57
    Installing Laravel's Eloquent ORM
  146. Урок 146. 00:07:34
    Building our Post Model
  147. Урок 147. 00:15:03
    Integrating Our Widget
  148. Урок 148. 00:16:31
    Retrieve the Latest 3 Products
  149. Урок 149. 00:35:08
    Admin Options to Choose the Number of Products
  150. Урок 150. 00:03:54
    Model where and wherein methods
  151. Урок 151. 00:02:11
    Section Challenge: Admin Settings Supply Product IDs
  152. Урок 152. 00:14:54
    Solution: Admin Settings for Widget
  153. Урок 153. 00:19:15
    Installing Laravel
  154. Урок 154. 00:17:20
    Folder Architecture
  155. Урок 155. 00:17:04
    Hello World of Laravel
  156. Урок 156. 00:08:36
    Migrations
  157. Урок 157. 00:21:29
    Controllers
  158. Урок 158. 00:17:20
    Views
  159. Урок 159. 00:15:34
    Intro to the Blade Template Engine
  160. Урок 160. 00:19:37
    Installing Auth Components
  161. Урок 161. 00:16:13
    Models
  162. Урок 162. 00:34:27
    Authorization System
  163. Урок 163. 00:10:22
    MVC Design Pattern
  164. Урок 164. 00:07:15
    The Auth Facade
  165. Урок 165. 00:02:54
    Service Providers
  166. Урок 166. 00:10:13
    Dependency Injection or Facade
  167. Урок 167. 00:25:27
    Artisan
  168. Урок 168. 00:32:49
    BONUS: Laravel Spark
  169. Урок 169. 00:25:59
    BONUS: Laravel Nova
  170. Урок 170. 00:04:08
    Section Challenge: Build a Basic Dashboard Page for Logged in Users
  171. Урок 171. 00:04:07
    Solution: Dashboard
  172. Урок 172. 00:14:19
    Installing Vue.js
  173. Урок 173. 00:23:08
    Vue.js Hello World
  174. Урок 174. 00:04:39
    Dashboard Greeter
  175. Урок 175. 00:18:56
    Settings Page
  176. Урок 176. 00:01:00
    Section Challenge: Add a Field to Save Your List of Skills
  177. Урок 177. 00:02:15
    Solution: Skills Setting
  178. Урок 178. 00:09:46
    Project Briefing and Agile Trello Project Board
  179. Урок 179. 00:19:43
    Intro to PHPUnit and Unit Testing
  180. Урок 180. 00:10:19
    Intro to TDD (Test Driven Development)
  181. Урок 181. 00:49:22
    Build a Page to add a New Project
  182. Урок 182. 00:17:30
    Finishing the Project Creation Page
  183. Урок 183. 00:47:28
    Making the Project Active
  184. Урок 184. 00:14:11
    Viewing the Project
  185. Урок 185. 00:10:22
    Updating a Project
  186. Урок 186. 00:08:50
    Deleting a Project
  187. Урок 187. 00:19:30
    Build the Project Listing Page
  188. Урок 188. 00:05:11
    Algolia Account
  189. Урок 189. 01:03:07
    Laravel Scout
  190. Урок 190. 00:25:59
    Accept a Project
  191. Урок 191. 00:11:27
    List Projects We Have Accepted
  192. Урок 192. 00:09:30
    End the project
  193. Урок 193. 00:04:53
    Potential Upgrades to Your Marketplace
  194. Урок 194. 00:16:50
    GitHub
  195. Урок 195. 00:17:18
    Travis CI
  196. Урок 196. 00:14:41
    cPanel and Shared Hosting Versus WordPress Hosting
  197. Урок 197. 00:00:58
    Section Challenge: Add Skills to the Project Entry and View Pages
  198. Урок 198. 00:16:37
    Solution: Skills
  199. Урок 199. 00:07:30
    BONUS: Email Verification
  200. Урок 200. 00:17:27
    BONUS: Send the Client an Email When Project is Accepted
  201. Урок 201. 00:27:35
    PHP 5 Versus PHP 7
  202. Урок 202. 00:07:55
    New in PHP 7.1
  203. Урок 203. 00:04:06
    New in PHP 7.2
  204. Урок 204. 00:04:47
    New in PHP 7.3
  205. Урок 205. 00:16:06
    New in PHP 7.4