diff options
author | Apoorv Choubey <theapoorvs1@gmail.com> | 2018-10-11 21:41:42 +0530 |
---|---|---|
committer | Apoorv Choubey <theapoorvs1@gmail.com> | 2018-10-11 21:41:42 +0530 |
commit | 00c12ddcff858b9e7bfe450bd4d4b492206a3b34 (patch) | |
tree | a4752c153b987e172878bdd20cdc7fd219f1dbd8 /php.html.markdown | |
parent | 1c8781a88d5a346573fa41310b2fea795c46563d (diff) |
add PHP resource
Diffstat (limited to 'php.html.markdown')
-rw-r--r-- | php.html.markdown | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/php.html.markdown b/php.html.markdown index 6542035f..3b18aa60 100644 --- a/php.html.markdown +++ b/php.html.markdown @@ -794,7 +794,7 @@ But I'm ChildClass /********************** * Magic constants -* +* */ // Get current class name. Must be used inside a class declaration. @@ -826,7 +826,7 @@ echo "Current trait is " . __TRAIT__; /********************** * Error Handling -* +* */ // Simple error handling can be done with try catch block @@ -871,6 +871,9 @@ and community input. If you're interested in up-to-date best practices, visit [PHP The Right Way](http://www.phptherightway.com/). +A tutorial covering basics of language, setting up coding environment and making +few practical projects at [Codecourse - PHP Basics](https://www.youtube.com/playlist?list=PLfdtiltiRHWHjTPiFDRdTOPtSyYfz3iLW). + If you're coming from a language with good package management, check out [Composer](http://getcomposer.org/). |