vote up 81 vote down star
118

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

prev 1 2 3
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 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 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 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 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 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
prev 1 2 3

Your Answer

Get an OpenID
or

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