First, I would say: do what you like to do, create games which you'd love, follow your imagination. Otherwise, you probably would not have real motivation, and learning would be unpleasant. This comes from my about 21-years experience in programming - games and not only games...
For very quick start, but results so-so:
If you have no experience in OOP (object-oriented-programming), I'd avoid languages, or rather platforms, which require much learning first (because it kills creativity). C# might be such a language for many, as Microsoft, not unlike Google, provide (too many for beginners) fashionable paradigms. Instead, there are things you could do quickly and easily with e.g. Pascal or C language. (First of them was/is, and not without a reason, recommended on universities as a language that accustomes to good habits in programming).
With PHP you might want to skip it - but if you don't have much experience in writing good code (which is actually more than simple scripts on websites, as games are specific and usually technically complicated, though I don't know what you actually did earlier), I'd at least try out C.
For relatively quick start: with experience in OOP C#-XNA might be good choice. I don't recommend Android nor iOS platforms, as they provide too much terminology, and they require first to learn appropriate languages and gain quite a lot experience in it, otherwise if you jump into this deep water, it'd be probably a pure pain for you. Without OOP, Java desktop programming is probably most well preparing for jump into a modern programming, and for example Swing and 2D graphics is easy to learn in JSE (Java Standard Edition) platform.
For ambitious wanna-be game developers: today there are two main types of games put into market: "casuals" (usually of puzzle or arcade genre) and 3D big productions. Quickness (like C and 3D) is not worth sacrifacing writing a good and clear code - the latter will boost your skills and thus effects, when eventually (if ever) turning to C-programming. So, i'd recommend first experimenting with such languages as (as mentioned by others) Python, or if you want to go into OOP as soon as possible, Java, and then turn into more specific platforms, like iOS, Android or Windows Phone. After writing at least 3 medium-sized games in 2D, you would have more idea about what to expect from game-development in general, and such specific to games things, like demanding UI (quite different from web-development), AI (also different way of thinking of an application), simultanous and synchronized events, not mentioning 3D graphics and sound in real-time...
So jumping too deep is definetely not recommended, as it requires too much to experience, and then learn (rather, than learn first and experience later). Treat what's written above as hints, not the only guidelines. Anyway, good luck. :)