vote up 81 vote down star
117

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 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 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 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 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 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 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 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 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 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 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 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 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 18 vote down

I love remote files. For web development, this kind of feature is exceptionally useful.

Need to work with the contents of a web page? A simple

$fp = fopen('http://example.com');

and you've got a file handle ready to go, just like any other normal file.

Or how about reading a remote file or web page directly in to a string?

$str = file_get_contents('http://example.com/file');

The usefulness of this particular method is hard to overstate.

Want to analyze a remote image? How about doing it via FTP?

$imageInfo = getimagesize('ftp://user:password@ftp.example.com/image/name.jpg');

Almost any PHP function that works with files can work with a remote file. You can even include() or require() code files remotely this way.

link|flag
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 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 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 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 10 vote down

The single most useful thing about PHP code is that if I don't quite understand a function I see I can look it up by using a browser and typing:

http://php.net/function

Last month I saw the "range" function in some code. It's one of the hundreds of functions I'd managed to never use but turn out to be really useful:

http://php.net/range

That url is an alias for http://us2.php.net/manual/en/function.range.php. That simple idea, of mapping functions and keywords to urls, is awesome.

I wish other languages, frameworks, databases, operating systems has as simple a mechanism for looking up documentation.

link|flag
1  
I use this all the time and its pretty damn awesome. – Sam152 Jun 30 at 9:54
1  
range() can be useful for foreach( range(1, 10) as $i) { }; – alex Jul 9 at 12:41
show 1 more comment
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 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
vote up 9 vote down

you can use a function with a undefined number of arguments using the func_ get_args()

<?php

function test() {

    $args = func_get_args();
    echo $args[2]; // will print 'd'
    echo $args[1]; // will print 3
}

test(1,3,'d',4);

?>
link|flag
show 1 more comment
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 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 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 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 7 vote down

This isn't really a feature but its handy. Lazy block comments:

//*
    die(); //This isn't commented.
//*/


/*
    die(); //This is commented.
//*/
link|flag
show 1 more comment
vote up 7 vote down

Error suppression via the error control operator, @, should almost never be used. It promotes lazy and non-defensive coding practices by simply ignoring errors, creates debugging nightmares since errors of all types--even fatal ones--will be suppressed, and, in some cases, can cause a hit to performance (especially when suppressing large quantities of errors).

link|flag
show 6 more comments
vote up 7 vote down

I'm a little surprised no-one has mentioned it yet, but one of my favourite tricks with arrays is using the plus operator. It is a little bit like array_merge() but a little simpler. I've found it's usually what I want. In effect, it takes all the entries in the RHS and makes them appear in a copy of the LHS, overwriting as necessary (i.e. it's non-commutative). Very useful for starting with a "default" array and adding some real values all in one hit, whilst leaving default values in place for values not provided.

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

HEREDOC syntax is my favourite hidden feature. Always difficult to find as you can't Google for <<< but it stops you having to escape large chunks of HTML and still allows you to drop variables into the stream.

echo <<<EOM
  <div id="someblock">
    <img src="{$file}" />
  </div>
EOM;
link|flag
vote up 7 vote down

The static keyword is useful outside of a OOP standpoint. You can quickly and easily implement 'memoization' or function caching with something as simple as:

<?php
function foo($arg1)
{
    static $cache;

    if( !isset($cache[md5($arg1)]) )
    {
        // Do the work here
        $cache[md5($arg1)] = $results;
    }

    return $cache[md5($arg1)];
}
?>

The static keyword creates a variable that persists only within the scope of that function past the execution. This technique is great for functions that hit the database like get_all_books_by_id(...) or get_all_categories(...) that you would call more than once during a page load.

Caveat: Make sure you find out the best way to make a key for your hash, in just about every circumstance the md5(...) above is NOT a good decision (speed and output length issues), I used it for illustrative purposes. sprintf('%u', crc32(...)) or spl_object_hash(...) may be much better depending on the context.

link|flag
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.