vote up 82 vote down star
119

EDIT: This didn't really start as a hidden features of PHP topic, but thats what it ended up as, so go nuts.


I know this sounds like a point-whoring question but let me explain where I'm coming from.

Out of college I got a job at a PHP shop. I worked there for a year and a half and thought that I had learned all there was to learn about programming.

Then I got a job as a one-man internal development shop at a sizable corporation where all the work was in C#. In my commitment to the position I started reading a ton of blogs and books and quickly realized how wrong I was to think I knew everything. I learned about unit testing, dependency injection and decorator patterns, the design principle of loose coupling, the composition over inheritance debate, and so on and on and on - I am still very much absorbing it all. Needless to say my programming style has changed entirely in the last year.

Now I find myself picking up a php project doing some coding for a friend's start-up and I feel completely constrained as opposed to programming in C#. It really bothers me that all variables at a class scope have to be referred to by appending '$this->' . It annoys me that none of the IDEs that I've tried have very good intellisense and that my SimpleTest unit tests methods have to start with the word 'test'. It drives me crazy that dynamic typing keeps me from specifying implicitly which parameter type a method expects, and that you have to write a switch statement to do method overloads. I can't stand that you can't have nested namespaces and have to use the :: operator to call the base class's constructor.

Now I have no intention of starting a PHP vs C# debate, rather what I mean to say is that I'm sure there are some PHP features that I either don't know about or know about yet fail to use properly. I am set in my C# universe and having trouble seeing outside the glass bowl.

So I'm asking, what are your favorite features of PHP? What are things you can do in it that you can't or are more difficult in the .Net languages?

flag
8  
Comedy answer: All of them. – Jack Ryan Jul 9 at 12:34
show 4 more comments

67 Answers

1 2 3 next
vote up 12 vote down

Here's one, I like how setting default values on function parameters that aren't supplied is much easier:

function MyMethod($VarICareAbout, $VarIDontCareAbout = 'yippie') { }
link|flag
1  
Funnily enough I saw this "hidden feature" in Google Reader last week. I don't get what's hidden about it - it's basic syntax. Try if($var = true) for example. – Ross Oct 13 '08 at 15:28
3  
Easier than what? Most language have this feature. – Christian Davén Apr 8 at 14:28
6  
Easier than C# (and I think C++, and Java) – George Mauer Apr 8 at 15:40
show 1 more comment
vote up 51 vote down

Magic Methods are fall-through methods that get called whenever you invoke a method that doesn't exist or assign or read a property that doesn't exist, among other things.

class X {
     public function __get($fieldName) { ... }
     public function __set($fieldName, $vlaue) { ... }
     public function __call($fieldName, $args) { ... }
     public function __toString() { ... }
}
link|flag
3  
As useful example of what can be achieved with magic methods goto phpcodetips.blogspot.com/2008/07/… – grom Oct 28 '08 at 23:44
1  
Disagree. This is far weaker than similar facilities in Smalltalk, Ruby & Python (and presumably it was copied from one of these) – finnw Jun 21 at 21:49
4  
The fact that PHP's implementation of this functionality is weaker than those other languages, doesn't make it any less useful in PHP. – Allain Lalonde Jun 22 at 2:07
1  
Magic methods are also slow as hell. Use them carefully. – Alex Jul 29 at 20:07
show 3 more comments
vote up 55 vote down

Stream Handlers allow you to extend the "FileSystem" with logic that as far as I know is quite difficult to do in most other languages.

For example with the MS-Excel Stream handler you can create a MS Excel file in the following way:

$fp = fopen("xlsfile://tmp/test.xls", "wb");
if (!is_resource($fp)) { 
    die("Cannot open excel file");
}

$data= array(
    array("Name" => "Bob Loblaw", "Age" => 50,  
    array("Name" => "Popo Jijo", "Age" => 75,  
    array("Name" => "Tiny Tim", "Age" => 90
); 

fwrite($fp, serialize($data));
fclose($fp);
link|flag
7  
Okay... now THIS is a wow. Thank you, thank you, thank you. – Ivan Vučica Jul 9 at 14:10
2  
If you're working with Amazon S3, check out Zend_Amazon_S3, which provides a stream interface for urls like 's3://{bucket-name}/path'. – notJim Sep 13 at 0:21
show 5 more comments
vote up 148 vote down

The documentation gets my vote. I haven't encountered a more thorough online documentation for a programming language - everything else I have to piece together from various websites and man pages.

link|flag
20  
I agree. Being able to type www.php.net/function_name and getting a reference most of the time is great. – Allain Lalonde Sep 14 '08 at 17:46
10  
I agree, the php manual is more important then my IDE. – Unkwntech Sep 14 '08 at 20:50
14  
I agree as well. The greatest thing about the manual are the user comments. I have rarely seen other documentations have those. They can contain real gems. The only downside is that IMHO they a pruned little too soon. – Sander Marechal Jun 21 at 22:37
show 8 more comments
vote up 17 vote down

Array manipulation.
Tons of tools for working with and manipulating arrays. It may not be unique to PHP, but I've never worked with a language that made it so easy.

link|flag
4  
Well, the PHP array is a datastructure that can be used easily as a stack, queue, deque, list, hashtable, etc. It's pretty flexible indeed for most common needs, without resorting to anything else but array_* functions. – Camilo Díaz Sep 19 '08 at 14:22
show 4 more comments
vote up 9 vote down

Actually, you're not quite right about that you cannot specify what types a method expects, it does work as you'd expect.

function foo ( array $param0, stdClass $param1 );

Note: This only works for 'array' and object names.

And so on, and you can even pass in your own classes as expected parameters. Calling the methods/functions with something else will result in a fatal error.

Another hint about a good intellisense in PHP. We use ZendStudio and it will actually work a lot better if you write good PHPDocs for your methods, it will look into those when hinting.

link|flag
1  
According to ch2.php.net/language.oop5.typehinting, "string" isn't supported for type hinting. "array" is supported from PHP 5.1 on, and specific object types are supported since 5.0. – JW Sep 14 '08 at 19:50
1  
To reinforce JW, scalar types are not supported when type-hinting (except for arrays), however all types are supported when type-casting. – dcousineau Jun 23 at 21:33
show 1 more comment
vote up 20 vote down

php enabled webspace is usually less expensive than something with (asp).net. You might call that a feature ;-)

link|flag
2  
a feature indeed... – George Mauer Sep 14 '08 at 22:53
2  
It's also much cheaper to set up multiple servers if you don't have to pay for Windows Server on every one. – MiffTheFox Jun 6 at 7:29
1  
Only place I know of where Windows is cost effective is at a University that gets STEEEEP discounts on the server software in as much as it is cheaper for my dept to buy 100 copies of windows than it is to train our admins on linux (which partially makes me sad but their windows setup is clean and well setup). – dcousineau Jun 21 at 22:37
show 1 more comment
vote up 41 vote down

Variable variables and functions without a doubt!

$foo = 'bar';
$bar = 'foobar';
echo $$foo;    //This outputs foobar

function bar() {
    echo 'Hello world!';
}

function foobar() {
    echo 'What a wonderful world!';
}
$foo();    //This outputs Hello world!
$$foo();    //This outputs What a wonderful world!

The same concept applies to object parameters ($some_object->$some_variable);

Very, very nice. Make's coding with loops and patterns very easy, and it's faster and more under control than eval (Thanx @Ross & @Joshi Spawnbrood!).t

link|flag
3  
Love these! Took minutes to boggle me, years to master. – Abyss Knight Sep 30 '08 at 14:28
18  
variable variables are actually making the code less readable and more prone to errors. – Elzo Valugi Jul 9 at 12:30
1  
Variable variables are one of the worst features PHP offers. – notJim Sep 13 at 0:22
show 8 more comments
vote up 0 vote down

GOOD:

  • The wide aceptance of PHP in WebHosting. Nearly every web-hosting service has PHP support.
  • Simple things can be solve with simple code. No classes or namespaces are strictly required.

BAD:

  • There is a ton of functions without any naming-convention. It is so hard to remember all these functions to use it effectively.
  • Bad coding habits, all over the web :(
link|flag
2  
Agree on Bad #1, but surely Bad #2 is not a fault of the language, it's a fault of the programmer? It is possible to write beautiful PHP... honest! – HoboBen Oct 12 '08 at 23:07
2  
There is plenty of awful code out there in every commonly used language. – steveth45 Feb 10 at 17:53
3  
I think what annoys me more than the inconsistent naming is the inconsistent ordering of arguments. For example string search functions - does haystack or needle come first? In some functions the order changed a long while back - also some functions accept them in either order for compatibility. – thomasrutter Mar 20 at 10:05
show 2 more comments
vote up 3 vote down

specifying implicitly which parameter type a method expects

Actually, this one is partly possible (at least in PHP5) - you can specify the type for array and object parameters for functions and methods, though you are out of luck in case of scalar types.

class Bar
{
    public function __construct(array $Parameters, Bar $AnotherBar){}
}

Apart from this one and the magic methods Allain mentioned, I also find the interfaces provided by SPL (Standard PHP library) indispensible - you can implement the necessary methods in your class, for example, I particulary like the ArrayAccess and Iterator interfaces, that allow using an object like an associative array or iterating over it just like any simple array.

link|flag
show 2 more comments
vote up 3 vote down

Typecasting and the ctype_* functions become important to ensure clean data. I have made extensive use of exceptions lately, which has greatly simplified my error handling code.

I wouldn't say the language has lots of killer features. (At least, I don't find much occasion to seek them out.) I like that the language is unobtrusive.

link|flag
show 1 more comment
vote up 76 vote down

Arrays. Judging from the answers to this question I don't think people fully appreciate just how easy and useful Arrays in PHP are. PHP Arrays act as lists, maps, stacks and generic data structures all at the same time. Arrays are implemented in the language core and are used all over the place which results in good CPU cache locality. Perl and Python both use separate language constructs for lists and maps resulting in more copying and potentially confusing transformations.

link|flag
2  
PHP array elements are ordered. – ioplex Feb 17 at 19:02
30  
My initial move from PHP to C# almost killed me. In C#, arrays are just a simple structure with a static size and numeric index. In PHP, arrays are the duct tape of the universe! – Dinah Mar 25 at 16:04
2  
Indeed, the flexibility of PHP arrays as well as the interfaces ArrayAccess and Iterator and Countable (to create a class that can be used exactly like an array) make my life so easy where as doing some tasks are harder without. – dcousineau Jun 21 at 22:31
2  
I also agree. When playing with Java for a Uni assignment, I was stunned at how rigid they were, no flexibility at all. Really made me appreciate just how good PHP arrays are. – Christian Jun 22 at 0:54
show 3 more comments
vote up 1 vote down

How extremely easy is to find PHP related things Examples, Applications, Classes, Documentation, Frameworks, etc...

All over the web, it's the easiest language to learn when going commando(by yourself), and also the one with more value for your time.

After learning PHP might put CMS with joomla, a blog with wordpress, etc....

link|flag
show 2 more comments
vote up 8 vote down

a) the manual -- extremely comprehensive, up-to-date and just a huge source for inspiration while problem-solving - stuck? browse/search the manual, it'll come to you

b) arrays - they're plastic, they're associatively indexed, they can be easily nested (!) to make up some wild data structures, and there's a multitude of functions just for array operations alone. Oh, and did I mention treating separate variables as an array of values?

c) eval() and similar constructs (like dynamic variable and function names) which allow for much greater flexibility (and are still relatively safe provided you know what you're doing) - nothing beats a program that basically defines its own process flow (or even specific execution) on the fly

d) most probably the easiest thing to overlook: as almost everything in the ZEND engine is a zVal (which in essence is a collection of pointer references), the ability to return about anything as a function return value


Also, I'd like to point out one great feature, but one which is related more to PHP source than the language (and so - listed separately):

e) the ease of writing C extensions (mostly interfaces for other objects like OpenAL or SDL) - great source code structure and about as many powerfull tools on the 'inside' as there are on the 'outside' - if you ever need to expand the functionality just that little bit further.

link|flag
vote up 32 vote down

The greatest feature is how easy it is for new developers to sit down and write "working" scripts and understand the code.

The worst feature is how easy it is for new developers to sit down and write "working" scripts and think they understand the code.

The openness of the community surrounding PHP and the massive amounts of PHP projects available as open-source is a lot less intimidating for someone entering the development world and like you, can be a stepping stone into more mature languages.

I won't debate the technical things as many before me have but if you look at PHP as a community rather than a web language, a community that clearly embraced you when you started developing, the benefits really speak for themselves.

link|flag
7  
For me PHP was the gateway drug into programming. – Ólafur Waage Sep 30 '08 at 1:55
show 2 more comments
vote up 21 vote down

One not so well known feature of PHP is extract(), a function that unpacks an associative array into the local namespace. This probably exists for the autoglobal abormination but is very useful for templating:

function render_template($template_name, $context, $as_string=false)
{
    extract($context);
    if ($as_string)
        ob_start();
    include TEMPLATE_DIR . '/' . $template_name;
    if ($as_string)
        return ob_get_clean();
}

Now you can use render_template('index.html', array('foo' => 'bar')) and only $foo with the value "bar" appears in the template.

link|flag
7  
I was going to get angry at you for suggesting extract() in any way was a good feature. But I guess that use of it is pretty handy. I suppose it's the one time I've seen it used where it's a good idea! – thomasrutter Mar 20 at 9:59
2  
extract() makes it dead simple to roll your own extremely light weight templating system. +1 – Dinah Mar 25 at 18:32
3  
Its inverse, compact(), is nice as well: $a = 1; $b = 2; compact('a', 'b'); // == array('a' => $a, 'b' => $b) – Adam Backstrom Jun 6 at 21:48
show 4 more comments
vote up 8 vote down

I'm a bit like you, I've coded PHP for over 8 years. I had to take a .NET/C# course about a year ago and I really enjoyed the C# language (hated ASP.NET) but it made me a better PHP developer.

PHP as a language is pretty poor, but, I'm extremely quick with it and the LAMP stack is awesome. The end product far outweighs the sum of the parts.

That said, in answer to your question:

http://uk.php.net/SPL

I love the SPL, the collection class in C# was something that I liked as soon as I started with it. Now I can have my cake and eat it.

Andrew

link|flag
vote up 4 vote down

Built in filters for parsing variables against specific predefined types - as well as covering the basics (int/float etc), extends to covering emails, urls and even if a variable is a valid regular expression.

http://ch2.php.net/manual/en/book.filter.php

link|flag
vote up 32 vote down

__autoload() (class-) files aided by set_include_path().

In PHP5 it is now unnecessary to specify long lists of "include_once()" statements when doing decent OOP.

Just define a small set of directory in which class-library files are sanely structured, and set the auto include path:

set_include_path(get_include_path() . PATH_SEPARATOR . '../libs/');`

Now the __autoload() routine:

 function __autoload($classname) {
    # every class is stored in a file "libs/classname.class.php"

    # note: temporary alter error_reporting to prevent WARNINGS
    # Do not suppress errors with a @ - syntax errors will fail silently!

    include_once("${classname}.class.php");
  }

Now PHP will automagically include the needed files on-demand, conserving parsing time and memory.

link|flag
5  
Of course! __autoload() is PHP4 but spl_autoload_register() is a non-destructive "daisy-chaining" of autoloading methods. – Wimmer Apr 21 at 20:00
2  
A handy feature, but the one caveat is when you find an instance of a given class, it makes it a little more difficult to hunt down the location of a class file. Explicitly defining includes at the top gives you a finite list of involved classes and their exact location. – Cory House Apr 25 at 3:20
show 2 more comments
vote up 22 vote down

Then "and print" trick

<?php $flag and print "Blah" ?>

Will echo Blah if $flat is true. DOES NOT WORK WITH ECHO.

This is very handy in template and replace the ? : that are not really easy to read.

link|flag
6  
I myself find the ternary operator much more obvious than exploiting the evaluation short-cirtcuit of a logical and. – Vicent Marti Oct 6 '08 at 11:16
2  
Actually that's the same number of characters as <?php if($flag) print "Blah" – too much php Nov 18 '08 at 7:00
1  
Parenthesis are not as easy to type as "and", especially on my bloody french keyboard ;-) – e-satis Nov 18 '08 at 17:10
show 2 more comments
vote up 38 vote down

The standard class is a neat container. I only learned about it recently.

Instead of using an array to hold serveral attributes

$person = array();
$person['name'] = 'bob';
$person['age'] = 5;

You can use a standard class

$person = new stdClass();
$person->name = 'bob';
$person->age = 5;

This is particularly helpful when accessing these variables in a string

$string = $person['name'] . ' is ' . $person['age'] . ' years old.';
// vs
$string = "$person->name is $person->age years old.";
link|flag
6  
"{$person['name']} is {$person['age']} years old" works. – porneL Nov 16 '08 at 23:56
3  
"person[name] is $person[age] years old" will also work... No quotes, no braces :) – majelbstoat Nov 24 '08 at 1:44
1  
$string = sprintf("%s is %d years old.", $person['name'], $person['age']); – Daniel May 10 at 2:00
14  
While we're on the subject: (object)array("name" => 'bob', 'age' => 5) – Adam Backstrom Jun 6 at 21:46
2  
@majelbstoat: Taking out the quotes would slow the script down because the PHP interpreter will look to see if 'name' and 'age' have been set with define(...). It's also a bad practice considering it'd be possible to totally flip the keys that are accessed in each case: define('age','name'); define('name','age'); – brianreavis Sep 3 at 3:59
show 6 more comments
vote up 14 vote down

One nice feature of PHP is the CLI. It's not so "promoted" in the documentation but if you need routine scripts / console apps, using cron + php cli is really fast to develop!

link|flag
vote up 29 vote down

You can take advantage of the fact that the or operator has lower precedence than = to do this:

$page = (int) @$_GET['page'] 
  or $page = 1;

If the value of the first assignment evaluates to true, the second assignment is ignored. Another example:

$record = get_record($id) 
  or throw new Exception("...");
link|flag
2  
Yeah, really cool : readable, not error prone at all. That how real males code. – e-satis Feb 10 at 15:18
show 6 more comments
vote up 4 vote down

Quick and dirty is the default.
The language is filled with useful shortcuts, This makes PHP the perfect candidate for (small) projects that that have a short time-to-market. Not that clean PHP code is impossible, it just takes some extra effort and experience.

But I love PHP because it lets me expres what i want without typing an essay.

PHP:

if (preg("cat","one cat")) {
   // do something
}

JAVA:

import java.util.regex.*;
Pattern p = Pattern.compile("cat");
Matcher m = p.matcher("one cat")
if (m.find()) {
  // do something
}

And yes, that includes not typing Int.

link|flag
4  
you should use strpos instead: if (false !== strpos("one cat", "cat")) { – OIS Apr 12 at 14:06
6  
@OIS the purpose of his example was to illustrate and compare the running of a quick regex match, not how to find the string "cat" in "one cat". – dcousineau Jun 23 at 21:24
vote up 17 vote down

strtr()

It's extremely fast, so much that you would be amazed. Internally it probably uses some crazy b-tree type structure to arrange your matches by their common prefixes. I use it with over 200 find and replace strings and it still goes through 1MB in less than 100ms. For all but trivially small strings strtr() is even significantly faster than strtolower() at doing the exact same thing, even taking character set into account. You could probably write an entire parser using successive strtr calls and it'd be faster than the usual regular expression match, figure out token type, output this or that, next regular expression kind of thing.

I was writing a text normaliser for splitting text into words, lowercasing, removing punctuation etc and strtr was my Swiss army knife, it beat the pants off regular expressions or even str_replace().

link|flag
show 3 more comments
vote up 9 vote down

Date functions. I have to handle a lot of time information and date strings all day long, so functions like strftime() and strtotime() are just awesome.

link|flag
show 1 more comment
vote up 8 vote down

Probably not many know that it is possible to specify constant "variables" as default values for function parameters:

function myFunc($param1, $param2 = MY_CONST)
{
//code...
}

Strings can be used as if they were arrays:

$str = 'hell o World';
echo $str; //outputs: "hell o World"

$str[0] = 'H';
echo $str; //outputs: "Hell o World"

$str[4] = null;
echo $str; //outputs: "Hello World"
link|flag
show 4 more comments
vote up 1 vote down

well, the community is in first place for me. Whatever can your problem be, you'll always find someone who had it before and almost everytime a solution... and sometimes i've seen a completely free share of ideas, ways to approciate a single problem.

Im triyng to learn python now (to grow up as...well.. programmer, can thet be?) and the most usefull thing of python is the indentation. I love the php indentation, the $ mark for sign the variables, curly bracers for loops and cycles, well, those smart things keep my code very easly to understand (even if the one who's wrote the code was little..messy up.. 'spaghetti-code', mh?)

Arrays, in phph are pretty simple and powerfull.

Databases: mysql, postrgee, sql; you can use almost every kind of databases.. easly.

Quick: logically depends by how is the code wrote, but usually php is pretty fast for small/medium application (as it lose wheel in bigger application)

link|flag
vote up 3 vote down

You can easily add an element to an array.

$my_array = array();
$my_array[] = 'first element';
$my_array[] = 'second element';

Element may be anything: object, array, scalar...

link|flag
show 4 more comments
vote up 9 vote down

You can use minus character in variable names like this:

class style
{
  ....
  function set_bg_colour($c)
  {
    $this->{'background-color'} = $c;
  }
}

Why use it? No idea: maybe for a CSS model? Or some weird JSON you need to output. It's an odd feature :)

monk.e.boy

link|flag
show 2 more comments
1 2 3 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.