background preloader

Php

Facebook Twitter

013147149X_book.pdf (application/pdf-object) PHP Class Scripts, Tutorials, Book reviews, Jobs, Jobs, User groups, Forums, Web hosting comparisons - PHP Classes.

Read later

Services in php. Dos&donts. Php frameworks. Caching. Advanced php techniques. Advance Level PHP Tutorials & Scripts. Amazing PHP Tutorials Roundup with Sources PHP, or PHP: Hypertext Preprocessor, is a widely used, general-purpose scripting language that was originally designed for web development. It is a HTML embedded scripting Language. I have gather some of the most amazing PHP tutorials from Tutorialzine.com with live Demos and Download able sources. These Tutorials advance or Developer level scripts/tutorials. If you are looking for Basic level PHP tutorials you can find them here at W3schools “Who Is Online” Widget With PHP, MySQL & jQuery View Demo | Go to Tutorial | Download Source Making Our Own Twitter Timeline View Demo | Go to Tutorial | Download Source AJAX-enabled Sticky Notes With PHP & jQuery View Demo | Go to Tutorial | Download Source Fancy Quotes With jQuery, AJAX & CSS View Demo | Go to Tutorial | Download Source Making A Slick Content Slider View Demo | Go to Tutorial | Download Source PHP & MySQL File Download Counter View Demo | Go to Tutorial | Download Source A Twitter List Powered Fan Page.

Php.

Meerdere streams in php

On PHP 5.3, Lambda Functions, and Closures. PHP 5.3 will have a lot of exciting new features. One of the most important one for me is the introduction of lambda functions and closures support. I won't talk too much about what lambda functions or closures are, as you can find many good blog posts describing them in great details. To sum up, a lambda function is an anonymous PHP function that can be stored in a variable and passed as an argument to other functions or methods. A closure is a lambda function that is aware of its surrounding context. The first obvious use for lambda functions and closures is in conjunction with the array_map(), array_reduce(), and array_filter() native PHP functions: $input = array(1, 2, 3, 4, 5); $output = array_filter($input, function ($v) { return $v > 2; }); The above example filters the input array by removing all values greater than 2: $output == array(2 => 3, 3 => 4, 4 => 5) function ($v) { return $v > 2; } is the lambda function definition and it can be stored in a PHP variable to be reusable:

Design patterns PHP