Best book to learn PHP 7.0 or PHP 7.1 fast?

Soldato
Joined
1 Nov 2007
Posts
5,617
Location
England
I have an idea for a framework and I've been back and forth looking over all of the available frameworks and the different languages I could use to make the website and for just pure speed of development I'm highly tempted to use Laravel and PHP. The only problem is I've never programmed in PHP before.

So does anyone know any books to get up to speed with PHP 7.0 or PHP 7.1? I have programmed in a couple of other languages such as Python, C, C# and Java so I don't need to learn the basics I just need a short overview of the language so I'd rather avoid one of those 1,000+ page monsters if I can help it.

Thanks for any advice :).

Edit: Do you think it is worth subscribing to Laracasts for a couple of months to get up and running quickly? It looks good but would be interested in other peoples opinions.
 
Last edited:
Caporegime
Joined
28 Jan 2003
Posts
39,876
Location
England
IMHO learning a framework before knowing the language is a bad foundation to build on.

I don't think you have to subscribe to Laracasts do you? They are all free resources to teach you the framework.

I like this resource for learning PHP.

http://www.hackingwithphp.com/

You can learn 5.6 there and they also have 7 as a $20 purchase.
 
Associate
Joined
27 Jan 2009
Posts
1,815
Location
Oxfordshire
Laracasts have free and subscription videos. All the basics are free, and they release a new version of "from scratch" each year based on the latest release.

I've yet to need the paid content, but then I've not done a huge amount outside a few basic sites so far. I intended to subscribe once I've finished all the free content as I am loving the framework.
 
Soldato
OP
Joined
1 Nov 2007
Posts
5,617
Location
England
IMHO learning a framework before knowing the language is a bad foundation to build on.

I don't think you have to subscribe to Laracasts do you? They are all free resources to teach you the framework.

I like this resource for learning PHP.

http://www.hackingwithphp.com/

You can learn 5.6 there and they also have 7 as a $20 purchase.

I actually managed to get another programmer interested in my idea so I let him decide on the technology we will use for the website. We'll be using the Go programming language and the Revel web framework along with PostgreSQL.

I'm pretty happy with that as Go looks like a really nice language and I should be able to pick it up quickly and I've already used PostgreSQL in the past.
 
Soldato
Joined
18 Oct 2002
Posts
7,614
Location
Sutton Coldfield, Birmingham
I'm 'self taught' with PHP and have been doing it as a bit of a hobby for a while.

Last year or so i've been working with Laravel and pay the monthly Laracasts subscription.

I'd fully reccomend Laracasts, the videos are superb and easy to understand and the forum is very, very helpful.

Working with Laravel has definately increased my knowledge of PHP as well.
 
Associate
Joined
20 Oct 2007
Posts
776
This is a shameless plug but I just released a book on this very subject. https://www.sitepoint.com/premium/books/php-mysql-novice-to-ninja-6th-edition (hardcopy available on amazon)

If you've done any programming before you'll whizz through the first few chapters, but I go into detail about OOP and the reasoning for design decisions made in modern frameworks. By the end you have essentially created your own OOP framework with its own basic ORM. The final code you end up with is available here: https://github.com/spbooks/phpmysql6/tree/Final-Website
 
Back
Top Bottom