Commencez à lire PHP 5 Recipes: A Problem-Solution Approach sur votre Kindle dans moins d'une minute. Vous n'avez pas encore de Kindle ? Achetez-le ici.

Envoyer sur votre Kindle ou un autre appareil

 
 
 

Essai gratuit

Découvrez gratuitement un extrait de ce titre

Envoyer sur votre Kindle ou un autre appareil

Lisez des livres sur votre ordinateur ou un autre appareil mobile grâce à nos applications de lecture Kindle GRATUITES.
PHP 5 Recipes: A Problem-Solution Approach
 
Agrandissez cette image
 

PHP 5 Recipes: A Problem-Solution Approach [Format Kindle]

Frank M. Kromann , Jon Stephens , Nathan A. Good , Lee Babin

Prix conseillé : EUR 27,84 De quoi s'agit-il ?
Prix éditeur - format imprimé : EUR 38,99
Prix Kindle : EUR 19,48 TTC & envoi gratuit via réseau sans fil par Amazon Whispernet
Économisez : EUR 19,51 (50%)

Formats

Prix Amazon Neuf à partir de Occasion à partir de
Format Kindle EUR 19,48  
Broché EUR 37,04  




Descriptions du produit

Présentation de l'éditeur

What you hold in your hands is the answer to all your PHP 5 needs. We have written PHP 5 Recipes with a number of purposes in mind.

First, this book is a source of instant solutions, including countless pieces of useful code that you can just copy and paste into your own applications, giving you answers fast and saving you hours of coding time.

Second, this book is a useful reference to the most important aspects of the PHP 5 language, including the vital functions you know and love from previous versions of PHP, as well as the functions introduced in PHP 5.

Finally, this book explains the PHP 5 functionality in detail, including the vastly improved object-oriented capabilities and the new MySQLi database extension.

We are confident PHP 5 Recipes will be a useful and welcome companion throughout your PHP journey, keeping you on the cutting edge of PHP development, ahead of the competition, and giving you all the answers you need, when you need them.

Book Description

PHP 5 Recipes: A Problem-Solution Approach supplies you with complete code for all of the common coding problems you are likely to face when using PHP in your day-to-day work. The book begins with an in-depth discussion of PHP 5 object-oriented techniques and methodology, and gets you up to speed on OOP with PHP: where and where not to use it, and how to use it.

This invaluable guide includes over 200 recipes and covers numerous topics: math, arrays, automation, security, graphics, regular expressions, web basics, HTML forms, database access, date and time, variables and functions, and internationalization and localization. Help yourself achieve a winning edge with this one-of-a-kind cookbook.


Détails sur le produit

  • Format : Format Kindle
  • Taille du fichier : 5055 KB
  • Nombre de pages de l'édition imprimée : 672 pages
  • Editeur : Apress; Édition : 1 (23 septembre 2005)
  • Vendu par : Amazon Media EU S.à r.l.
  • Langue : Anglais
  • ASIN: B001D4WX84
  • Synthèse vocale : Activée
  • X-Ray : Non activée
  •  Souhaitez-vous faire modifier les images ?


Commentaires en ligne 

Il n'y a pas encore de commentaires clients sur Amazon.fr
5 étoiles
4 étoiles
3 étoiles
2 étoiles
1 étoiles
Commentaires client les plus utiles sur Amazon.com (beta)
Amazon.com: 4.9 étoiles sur 5  10 commentaires
21 internautes sur 23 ont trouvé ce commentaire utile 
5.0 étoiles sur 5 Cookbook for Tasty Snacks 31 mars 2006
Par David Stapleton - Publié sur Amazon.com
Format:Broché
I am a big fan of 'recipe' books. They collect solutions to a variety of common problems into a single volume for easy reference, often times pointing out features in an extensive language environment that were missed when first learned. This book is no exception.

I had been coding PHP for close to a year when I picked up this book. I found most of the coding and examples to be fairly familiar, but forcing myself to read through ever page I have expanded my coding with several standard functions that I had no use for when first learning the language (and thus had forgotten about).

The writing style is very readable, and the code is targeted at the beginning to intermediate PHP coder. Beginners to PHP will benefit from reading through the entire book; those with more experience are better off skimming the first half of the book and reading the latter sections. The topics covered are fairly complete and include: arrays, strings, imaging, database, files and web forms. I would have liked a more detailed coverage of XML and SOAP, but the basics are provided for these technologies.

If you are an experienced PHP coder you may gain something from this book (like I did), but you would probably get just as much by browsing the official PHP site's function list to refresh your memory of what is available.

My recommendation, for PHP beginners, is that this book coupled with Jason Gilmore's Beginning PHP and MySQL makes an excellent pair to learn PHP and should have you up to speed in no time. Add Matt Zandstra's PHP 5 Objects, Patterns, and Practice and you have a fairly complete PHP library suitable for an experienced programmer's reference shelf.

P-)
18 internautes sur 20 ont trouvé ce commentaire utile 
4.0 étoiles sur 5 Nice addition to the php 5 literature 1 décembre 2005
Par John A. Suda - Publié sur Amazon.com
Format:Broché
With all the books being published recently about PHP a new one will need to find and fill a niche to distinguish itself. "PHP 5 Recipes: A Problem-Solution Approach", published by Apress, has done so, in my view. This is an intermediate-level volume exploring PHP 5 using a "recipe" approach where the basics of PHP 5's functionality are expressed systematically but in a "small-topic" by "small-topic" manner. Cookbook style, each topic is relatively autonomous and can be individually selected, as necessary, for information or review, similarly to how many refer to the "Joy of Cooking" for help on a cooking project. It's a source for instant solutions to common PHP-related problems. There are over 200 such recipes presented.

Each of these "recipes" refers to a small element or aspect of PHP 5 and the presentations contain a brief overview of the topic, an explanation of how the code elements work, and where the code is applicable in projects. Overall, the book covers the whole range of PHP 5 functionality where each major element of PHP 5 is addressed in a recipe explaining and illuminating relevant code elements. You can easily get information about a specific PHP 5 element by going directly to the section of the book where it appears. Even better, the code snippets are designed to allow one to copy and paste them into your own applications or development easily and then to configure them as necessary. All of the code snippets are freely available for downloading at the publisher's website at [...].

There are 16 chapters and an index covering a total of 646 pages. The chapters are organized similarly to other PHP primers, covering the basic elements of PHP - data types, operations, arrays, strings, variables, files and directories, dates and times, functions, and regular expressions. The coverage for much of these concepts is relatively mundane and unoriginal. The discussion of dynamic imaging, however, is an exception. The writing throughout, however, is solid and clear. The book emphasizes the most important elements of new PHP 5. The object-oriented programming elements especially are covered - classes, objects, protected class variables, exception handling, interfaces, and the new mysqli database extension. The authors' discussions focus on PHP 5.0.4, MySQL 4.1, and cover Linux and Windows environments.

The book is directed at PHP programmers looking to learn the elements introduced by PHP 5, and for those looking to find fast solutions to coding problems. It assumes a basic knowledge of PHP. Many of the recipes discuss object-oriented programming and these are some of the more advanced sections of the book. I can say that Chapter 2, which introduces the object-oriented concepts is one of the better explanations of the topic that I've read. The chapter covers constructors, destructors, methods and properties, class diagrams and examples of these concepts at work in code snippets. There are a number of interesting segments containing custom coding of classes as reusable templates from which to create "objects".

The book is well-designed and written. The discussion is clear and logical. The code snippets are well-explained. The authors are experienced programmers and developers, and Good and Stephens have authored or co-authored a number of technical books.

A large handful of the recipes contain "projects", usually appearing at the end of the overview and presentation of code snippets covering the basics of the topics. The projects usually deal with the creation of higher-end classes and objects as solutions to common coding problems. The idea here is to show PHP 5 functionality at work providing useful code sections to be dropped into your custom applications. Chapter Five concludes with a sophisticated class dealing with dates and times issues. Other chapters contain constructions of string, file, graphics, and regular expression classes.

The last five chapters deal with using the PHP code in web applications and services. This material covers cookies (including construction of a cookie class), using HTTP headers, sessions, and using query strings. Much of this material has been covered elsewhere in the many primers on PHP already published. There is a chapter on using forms and an interesting chapter on working with markup. The better chapters are on using DOM to generate markup, parsing XML, using RSS feeds, SOAP, and simple XML. The chapter on mysql is basic, except for the section on creating a "wrapper" class. The last chapter deals with communicating with Internet services, like POP, iMap, and FTP. Another project presented here is one creating object-oriented code dealing with a mail class.

This is a useful book to have in a programmer's library.
8 internautes sur 9 ont trouvé ce commentaire utile 
5.0 étoiles sur 5 Great resource for PHP programmers 24 novembre 2005
Par Harold McFarland - Publié sur Amazon.com
Format:Broché
I have to admit that I really enjoy having a good recipe style book in my library whenever possible and this is a good PHP 5 recipe book. The advantage of these books is simple. You find the problem you need resolved and you follow the recipe to resolve it. This problem-solution approach is very efficient and just what you need when you just want a quick answer. With over 200 recipes it focuses on new features of PHP 5 and taking advantage of the most popular PHP extensions. Some of the areas covered include arrays, dates and times, strings, files, regular expressions, web basics, forms, markup, and MySQL. For each area the authors include various problems that are commonly encountered or that can be resolved more efficiently with the new features, the code snippet to resolve the problem, and then an in depth analysis of the code and how it works. For the PHP 5 programmer this is a valuable reference that they will be sure to be reach for often when dealing with new programming challenges. PHP 5 Recipes is highly recommended.
Ces commentaires ont-ils été utiles ?   Dites-le-nous

Passages les plus surlignés

 (Qu'est-ce que c'est ?)
&quote;
programming object as being like a noun, with its properties being adjectives (describing aspects of the objects) and its methods being verbs (representing the object's actions or changes that can be made to its properties). &quote;
Marqué par 3 utilisateurs Kindle

Discussions entre clients

Le forum concernant ce produit
Discussion Réponses Message le plus récent
Pas de discussions pour l'instant

Posez des questions, partagez votre opinion, gagnez en compréhension
Démarrer une nouvelle discussion
Thème:
Première publication:
Aller s'identifier
 

Rechercher parmi les discussions des clients
Rechercher dans toutes les discussions Amazon
   


Rechercher des articles similaires par rubrique