I want to start to learn PHP *TONIGHT* on a Mac! What the hell do I need and is there a good site/tutorial/book that is best suited for the job?
-
I want to start to learn PHP *TONIGHT* on a Mac! What the hell do I need and is there a good site/tutorial/book that is best suited for the job? While not a noob by any means, my only programming skills are are the intro to C++ and I don't remember a damn thing about libraries, etc. I want to learn PHP so I can scrape things from the web with ease, but the hardest part when I have tried in the past has just been matching what is on my screen with what is in the book/tutorial. I'm on a Mac running 10.7 (soon 10.8) and I don't have ANY software, but I know I can get it from Apple. That said, I need a mac centric tutorial. Anyone really blown away by a tutorial out there?
-
Answer:
As some one who primarily writes PHP, I haven't found a better web scraping toolset than http://scrapy.org/, but it is written in Python. The good news is you already have python on your Mac. You should be able to use easy_install to http://doc.scrapy.org/en/latest/intro/install.html#install-scrapy. I would recommend http://learnpythonthehardway.org/ as a tutorial, there is a free version. There is a pretty http://doc.scrapy.org/en/latest/intro/tutorial.html tutorial as well. What makes scrapy my favorite web scraper is its framework of handling requests. You are able to queue up several requests to traverse discovered urls. All the other scraping toolkits I've used are really geared toward scraping single pages. Scrapy makes it very easy to build much more complex spiders.
darkgroove at Ask.Metafilter.Com Visit the source
Other answers
Don't do it. If you're not careful you'll wind up like me, with a full-time job writing PHP. I am not even remotely joking about this.
brennen
You want http://www.mamp.info/en/index.html. It's a program that, when running, runs a local Apache server with PHP / MySQL but when not running, does, um, nothing. My feeling is that it's slightly easier to get into, and slightly more like a production LAMP environment, than using the built-in webserver from Apple. As far as tutorials and books go, I think you'd find http://shop.oreilly.com/product/9780596157142.do to be useful.
gauche
I'd definitely rather use python for scraping the web: in terminal type: $ sudo easy_install pip $ sudo pip install requests $ python >>> import requests >>> page = requests.get("http://ask.metafilter.com/222413/I-want-to-start-to-learn-PHP-TONIGHT-on-a-Mac-What-the-hell-do-I-need-and-is-there-a-good-sitetutorialbook-that-is-best-suited-for-the-job") >>> page.text I recommend you use python as well - since it is cleaner than php and definitely better for parsing. php might be easier when making a quick and dirty website though. If you do go with python, also $ sudo pip install ipython and ipython will let you tab to autocomplete and all kinds of other things that make it better for learning and discovery>
uncreative
http://us.php.net/ documentation is a good way to learn. They have a tutorial linked from the front page.
wongcorgi
It isn't PHP or Python, but http://ruby.bastardsbook.com is a primer on Ruby written by a reporter who mainly uses it for scraping data. The projects are all scraping-centric, and deal with things like grabbing and following links, storing stuff in a database, and all of that jazz. If you fall out of the Python camp it might be worth a shot!
soma lkzx
I liked http://www.tizag.com/phpT/ when I first tried to pick up PHP. When you start using a database to store and retrieve information, please start with PDO (baked into PHP) and parameters! Using parameters helps you completely avoid a major SQL security issue (http://www.codinghorror.com/blog/2005/04/give-me-parameterized-sql-or-give-me-death.html). That may seem like blue-sky stuff at the moment, but you'll be using databases very quickly if you don't give up. You will definitely want an editor that has syntax highlighting. http://www.sublimetext.com/ will bug you occasionally and ask you to purchase it, but you can use it indefinitely without paying for it. It is very good. There are likely many other free options for Macs if you google around (or wait for more suggestions in the thread). BTW, PHP tutorials should be OS agnostic. At most you might need OS-specific instructions for which text editor or IDE to use.
jsturgill
Are you familiar with Terminal (or http://projects.metafilter.com/3195/iTerm2-Mac-OS-Terminal-Replacement, from MeFi's own jewzilla)? Referencing any online or offline resource for PHP tutorials, you can run your own simple scripts from the command line. For example, from my Terminal session, I wrote* a script called test.php that had this one line: <?php print "Hello world!\n"; ?> Saved the file, and at the prompt I typed: php test.php There are other software out there that will let you edit PHP files, but if you want to start right now I believe your machine may already have the capability. At least this way, you can get your feet wet and hands dirty. Other sites for PHP tutorials include http://www.w3schools.com/php/default.asp. I also visit the PHP.net http://www.php.net/manual/en/ for function references, whenever my memory fails me. * FWIW, I used vim with a .vimrc file that enabled syntax highlighting and colors.
CancerMan
God, I love you guys :) I'll have to learn a bit about each and delve deeper from there. But this seems like a fantastic place to start. Thank you all so much!
darkgroove
Actually, just to quickly follow up, I've decided to learn Python and read Learn Python the Hard Way. Having read a bit about it, it sounds like that will provide a solid foundation for me, which is ultimately what I need, along with the mention of scrapy which may make sense to me at that point.
darkgroove
Related Q & A:
- What is the best camera to get if I want to start making youtube videos?Best solution by Yahoo! Answers
- I want to start a BPO.Best solution by Yahoo! Answers
- I want to start a non profit.Best solution by Yahoo! Answers
- I need to find a good camping site?Best solution by gocampingamerica.com
- What do I need to apply for a job?Best solution by wikihow.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.