Hidden Features of PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T10:18:35Zhttp://stackoverflow.com/feeds/question/61401http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61401/hidden-features-of-php82Hidden Features of PHP?George Mauer2008-09-14T15:21:11Z2009-11-08T19:56:35Z
<p><strong>EDIT:</strong> This didn't really start as a hidden features of PHP topic, but thats what it ended up as, so go nuts.</p>
<p><hr /></p>
<p>I know this sounds like a point-whoring question but let me explain where I'm coming from.</p>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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.</p>
<p>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?</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/61403#6140312Answer by George Mauer for Hidden Features of PHP?George Mauer2008-09-14T15:22:38Z2008-09-14T18:30:58Z<p>Here's one, I like how setting default values on function parameters that aren't supplied is much easier:</p>
<pre><code>function MyMethod($VarICareAbout, $VarIDontCareAbout = 'yippie') { }
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/61482#6148251Answer by Allain Lalonde for Hidden Features of PHP?Allain Lalonde2008-09-14T17:21:29Z2008-09-14T17:21:29Z<p><strong>Magic Methods</strong> 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.</p>
<pre><code>class X {
public function __get($fieldName) { ... }
public function __set($fieldName, $vlaue) { ... }
public function __call($fieldName, $args) { ... }
public function __toString() { ... }
}
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/61489#6148955Answer by Allain Lalonde for Hidden Features of PHP?Allain Lalonde2008-09-14T17:30:13Z2009-02-10T17:17:10Z<p><strong>Stream Handlers</strong> allow you to extend the "FileSystem" with logic that as far as I know is quite difficult to do in most other languages.</p>
<p>For example with the <a href="http://www.phpclasses.org/browse/package/1919.html" rel="nofollow">MS-Excel Stream handler</a> you can create a MS Excel file in the following way: </p>
<pre><code>$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);
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/61491#61491148Answer by Kyle Cronin for Hidden Features of PHP?Kyle Cronin2008-09-14T17:32:25Z2008-09-14T17:32:25Z<p>The <a href="http://www.php.net/manual/en/" rel="nofollow">documentation</a> 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.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/61510#6151017Answer by mabwi for Hidden Features of PHP?mabwi2008-09-14T17:51:38Z2008-09-14T17:51:38Z<p><strong>Array manipulation.</strong><br />
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.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/61574#6157410Answer by Polygraf for Hidden Features of PHP?Polygraf2008-09-14T19:15:01Z2009-08-18T16:40:06Z<p>Actually, you're not quite right about that you cannot specify what types a method expects, it does work as you'd expect.</p>
<pre><code>function foo ( array $param0, stdClass $param1 );
</code></pre>
<p><strong><em>Note:</strong> This only works for 'array' and object names.</em></p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/61606#6160620Answer by VolkerK for Hidden Features of PHP?VolkerK2008-09-14T20:15:51Z2008-09-14T20:15:51Z<p>php enabled webspace is usually less expensive than something with (asp).net.
You <i>might</i> call that a feature ;-)</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/62525#6252541Answer by Jrgns for Hidden Features of PHP?Jrgns2008-09-15T12:51:35Z2009-05-09T21:09:12Z<p>Variable variables and functions without a doubt!</p>
<pre><code>$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!
</code></pre>
<p>The same concept applies to object parameters ($some_object->$some_variable);</p>
<p>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</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/62544#625440Answer by Fu86 for Hidden Features of PHP?Fu862008-09-15T12:54:35Z2008-09-15T12:54:35Z<p><strong>GOOD:</strong></p>
<ul>
<li>The wide aceptance of PHP in WebHosting. Nearly every web-hosting service has PHP support.</li>
<li>Simple things can be solve with simple code. No classes or namespaces are strictly required.</li>
</ul>
<p><strong>BAD:</strong></p>
<ul>
<li>There is a ton of functions without any naming-convention. It is so hard to remember all these functions to use it effectively.</li>
<li>Bad coding habits, all over the web :(</li>
</ul>
http://stackoverflow.com/questions/61401/hidden-features-of-php/62645#626453Answer by Nouveau for Hidden Features of PHP?Nouveau2008-09-15T13:05:16Z2009-06-25T15:51:19Z<blockquote>
<p>specifying implicitly which parameter type a method expects</p>
</blockquote>
<p>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.</p>
<pre><code>class Bar
{
public function __construct(array $Parameters, Bar $AnotherBar){}
}
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/63363#633633Answer by Adam Backstrom for Hidden Features of PHP?Adam Backstrom2008-09-15T14:23:07Z2008-09-15T14:23:07Z<p><a href="http://us.php.net/manual/en/language.types.type-juggling.php#language.types.typecasting" rel="nofollow">Typecasting</a> and the <a href="http://us.php.net/manual/en/book.ctype.php" rel="nofollow">ctype_*</a> functions become important to ensure clean data. I have made extensive use of <a href="http://us.php.net/manual/en/language.exceptions.php" rel="nofollow">exceptions</a> lately, which has greatly simplified my error handling code.</p>
<p>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.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/64475#6447578Answer by ioplex for Hidden Features of PHP?ioplex2008-09-15T16:33:28Z2008-09-15T16:33:28Z<p>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.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/65379#653791Answer by levhita for Hidden Features of PHP?levhita2008-09-15T18:21:22Z2008-09-15T18:21:22Z<p>How extremely easy is to find PHP related things Examples, Applications, Classes, Documentation, Frameworks, etc...</p>
<p>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.</p>
<p>After learning PHP might put CMS with joomla, a blog with wordpress, etc.... </p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/71396#713968Answer by Egon_Freeman for Hidden Features of PHP?Egon_Freeman2008-09-16T11:31:36Z2008-09-16T11:31:36Z<p>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</p>
<p>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?</p>
<p>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</p>
<p>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</p>
<p><br>
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):</p>
<p>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.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/72276#7227633Answer by Chris Ridenour for Hidden Features of PHP?Chris Ridenour2008-09-16T13:39:09Z2008-09-16T13:39:09Z<p>The greatest feature is how easy it is for new developers to sit down and write "working" scripts and understand the code. </p>
<p>The worst feature is how easy it is for new developers to sit down and write "working" scripts and think they understand the code.</p>
<p>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. </p>
<p>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.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/114001#11400124Answer by Armin Ronacher for Hidden Features of PHP?Armin Ronacher2008-09-22T09:39:15Z2008-11-16T16:07:36Z<p>One not so well known feature of PHP is <code>extract()</code>, a function that unpacks an associative array into the local namespace. This probably exists for the autoglobal abormination but is very useful for templating:</p>
<pre><code>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();
}
</code></pre>
<p>Now you can use <code>render_template('index.html', array('foo' => 'bar'))</code> and only <code>$foo</code> with the value <code>"bar"</code> appears in the template.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/114028#1140288Answer by Andrew Taylor for Hidden Features of PHP?Andrew Taylor2008-09-22T09:47:02Z2008-09-22T09:47:02Z<p>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.</p>
<p>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.</p>
<p>That said, in answer to your question:</p>
<p><a href="http://uk.php.net/SPL" rel="nofollow">http://uk.php.net/SPL</a></p>
<p>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.</p>
<p>Andrew</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/114047#1140474Answer by iAn for Hidden Features of PHP?iAn2008-09-22T09:52:09Z2008-09-22T09:52:09Z<p>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.</p>
<p><a href="http://ch2.php.net/manual/en/book.filter.php" rel="nofollow">http://ch2.php.net/manual/en/book.filter.php</a></p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/163857#16385734Answer by Wimmer for Hidden Features of PHP?Wimmer2008-10-02T18:31:32Z2009-07-09T15:17:06Z<p><code>__autoload()</code> (class-) files aided by <code>set_include_path()</code>.</p>
<p>In PHP5 it is now unnecessary to specify long lists of "include_once()" statements when doing decent OOP.</p>
<p>Just define a small set of directory in which class-library files are sanely structured, and set the auto include path:</p>
<pre><code>set_include_path(get_include_path() . PATH_SEPARATOR . '../libs/');`
</code></pre>
<p>Now the <code>__autoload()</code> routine:</p>
<pre><code> 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");
}
</code></pre>
<p>Now PHP will automagically include the needed files on-demand, conserving parsing time and memory.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/173907#17390723Answer by e-satis for Hidden Features of PHP?e-satis2008-10-06T11:11:23Z2008-10-06T11:11:23Z<h2>Then "and print" trick</h2>
<pre><code><?php $flag and print "Blah" ?>
</code></pre>
<p>Will echo Blah if $flat is true. DOES NOT WORK WITH ECHO.</p>
<p>This is very handy in template and replace the ? : that are not really easy to read.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/255623#25562339Answer by Dean for Hidden Features of PHP?Dean2008-11-01T07:42:37Z2009-07-09T15:17:45Z<p>The <b>standard class</b> is a neat container. I only learned about it recently.</p>
<p>Instead of using an array to hold serveral attributes</p>
<pre><code>$person = array();
$person['name'] = 'bob';
$person['age'] = 5;
</code></pre>
<p>You can use a standard class</p>
<pre><code>$person = new stdClass();
$person->name = 'bob';
$person->age = 5;
</code></pre>
<p>This is particularly helpful when accessing these variables in a string</p>
<pre><code>$string = $person['name'] . ' is ' . $person['age'] . ' years old.';
// vs
$string = "$person->name is $person->age years old.";
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/432502#43250214Answer by Lucacri for Hidden Features of PHP?Lucacri2009-01-11T07:25:39Z2009-01-11T07:25:39Z<p>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!</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/526917#52691730Answer by Pies for Hidden Features of PHP?Pies2009-02-09T01:51:15Z2009-03-12T14:14:26Z<p>You can take advantage of the fact that the <code>or</code> operator has lower precedence than <code>=</code> to do this:</p>
<pre><code>$page = (int) @$_GET['page']
or $page = 1;
</code></pre>
<p>If the value of the first assignment evaluates to <code>true</code>, the second assignment is ignored. Another example:</p>
<pre><code>$record = get_record($id)
or throw new Exception("...");
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/551988#5519884Answer by NebyGemini for Hidden Features of PHP?NebyGemini2009-02-16T01:19:55Z2009-02-16T01:19:55Z<p><strong>Quick and dirty</strong> is the default.<br />
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.</p>
<p>But I love PHP because it lets me expres what i want without typing an essay.</p>
<p>PHP:</p>
<pre><code>if (preg("cat","one cat")) {
// do something
}
</code></pre>
<p>JAVA:</p>
<pre><code>import java.util.regex.*;
Pattern p = Pattern.compile("cat");
Matcher m = p.matcher("one cat")
if (m.find()) {
// do something
}
</code></pre>
<p>And yes, that includes not typing <strong>Int</strong>.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/665524#66552418Answer by thomasrutter for Hidden Features of PHP?thomasrutter2009-03-20T09:51:16Z2009-03-20T10:06:41Z<p><a href="http://au2.php.net/strtr" rel="nofollow">strtr()</a></p>
<p>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.</p>
<p>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().</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/665540#66554010Answer by christian studer for Hidden Features of PHP?christian studer2009-03-20T09:56:37Z2009-03-20T09:56:37Z<p>Date functions. I have to handle a lot of time information and date strings all day long, so functions like <a href="http://www.php.net/strftime" rel="nofollow">strftime()</a> and <a href="http://www.php.net/strtotime" rel="nofollow">strtotime()</a> are just awesome.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/665660#6656608Answer by presario for Hidden Features of PHP?presario2009-03-20T10:50:23Z2009-03-20T10:50:23Z<p>Probably not many know that it is possible to specify constant "variables" as default values for function parameters:</p>
<pre><code>function myFunc($param1, $param2 = MY_CONST)
{
//code...
}
</code></pre>
<p>Strings can be used as if they were arrays:</p>
<pre><code>$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"
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/666947#6669471Answer by DaNieL for Hidden Features of PHP?DaNieL2009-03-20T16:36:54Z2009-03-20T16:36:54Z<p>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.</p>
<p>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?)</p>
<p>Arrays, in phph are pretty simple and powerfull.</p>
<p>Databases: mysql, postrgee, sql; you can use almost every kind of databases.. easly.</p>
<p>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)</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/794461#7944613Answer by Luc M for Hidden Features of PHP?Luc M2009-04-27T17:24:03Z2009-04-27T17:24:03Z<p>You can easily add an element to an array.</p>
<pre><code>$my_array = array();
$my_array[] = 'first element';
$my_array[] = 'second element';
</code></pre>
<p>Element may be anything: object, array, scalar...</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/810635#81063510Answer by monk-e-boy for Hidden Features of PHP?monk-e-boy2009-05-01T08:20:02Z2009-05-01T08:20:02Z<p>You can use minus character in variable names like this:</p>
<pre><code>class style
{
....
function set_bg_colour($c)
{
$this->{'background-color'} = $c;
}
}
</code></pre>
<p>Why use it? No idea: maybe for a CSS model? Or some weird JSON you need to output. It's an odd feature :)</p>
<p>monk.e.boy</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/844512#8445122Answer by Jason for Hidden Features of PHP?Jason2009-05-10T01:44:51Z2009-05-10T01:44:51Z<p>I'm partial to the other PHP users out there. It's easy to get answers and direction when necessary.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/886384#88638420Answer by zombat for Hidden Features of PHP?zombat2009-05-20T06:07:15Z2009-05-20T06:07:15Z<p>I love <a href="http://www.php.net/manual/en/features.remote-files.php" rel="nofollow">remote files</a>. For web development, this kind of feature is exceptionally useful.</p>
<p>Need to work with the contents of a web page? A simple </p>
<pre><code>$fp = fopen('http://example.com');
</code></pre>
<p>and you've got a file handle ready to go, just like any other normal file.</p>
<p>Or how about reading a remote file or web page directly in to a string? </p>
<pre><code>$str = file_get_contents('http://example.com/file');
</code></pre>
<p>The usefulness of this particular method is hard to overstate.</p>
<p>Want to analyze a remote image? How about doing it via FTP?</p>
<pre><code>$imageInfo = getimagesize('ftp://user:password@ftp.example.com/image/name.jpg');
</code></pre>
<p>Almost any PHP function that works with files can work with a remote file. You can even <code>include()</code> or <code>require()</code> code files remotely this way.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1023029#10230298Answer by Sam152 for Hidden Features of PHP?Sam1522009-06-21T02:24:00Z2009-06-21T02:24:00Z<p>This isn't really a feature but its handy. Lazy block comments:</p>
<pre><code>//*
die(); //This isn't commented.
//*/
/*
die(); //This is commented.
//*/
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1024737#10247370Answer by redwall_hp for Hidden Features of PHP?redwall_hp2009-06-21T20:57:56Z2009-06-21T20:57:56Z<p>Let's see...</p>
<ol>
<li><p>Ternary operators. They work wonders for processing checkboxes in form results.</p>
<p>$var = ($_POST['my_checkbox']=='checked') ? TRUE : FALSE;</p></li>
<li><p>All of the wonderful string and array processing functions are worth trawling through. strtotime(), strlen(), and strpos() are a few of my favorites.</p></li>
<li><p>The SimpleXML class and json_decode() function. Call a REST API or RSS feed with file_get_contents(), parse it effortlessly with one of those tools, and you're done.</p></li>
</ol>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1024858#10248588Answer by Justin Johnson for Hidden Features of PHP?Justin Johnson2009-06-21T22:12:05Z2009-06-21T22:12:05Z<p>Error suppression via the <a href="http://www.php.net/manual/en/language.operators.errorcontrol.php" rel="nofollow">error control operator, @</a>, 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).</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1024875#10248752Answer by Peter Goodman for Hidden Features of PHP?Peter Goodman2009-06-21T22:20:56Z2009-06-21T22:20:56Z<p>preg_split(), array_intersect(), and array_intersect_key().</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1024891#10248918Answer by dcousineau for Hidden Features of PHP?dcousineau2009-06-21T22:29:09Z2009-08-25T13:53:36Z<p>The <code>static</code> keyword is useful outside of a OOP standpoint. You can quickly and easily implement 'memoization' or function caching with something as simple as:</p>
<pre><code><?php
function foo($arg1)
{
static $cache;
if( !isset($cache[md5($arg1)]) )
{
// Do the work here
$cache[md5($arg1)] = $results;
}
return $cache[md5($arg1)];
}
?>
</code></pre>
<p>The <code>static</code> 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 <code>get_all_books_by_id(...)</code> or <code>get_all_categories(...)</code> that you would call more than once during a page load.</p>
<p><em>Caveat:</em> Make sure you find out the best way to make a key for your hash, in just about every circumstance the <code>md5(...)</code> above is NOT a good decision (speed and output length issues), I used it for illustrative purposes. <code>sprintf('%u', crc32(...))</code> or <code>spl_object_hash(...)</code> may be much better depending on the context.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1024914#10249145Answer by MSpreij for Hidden Features of PHP?MSpreij2009-06-21T22:43:32Z2009-06-21T23:14:52Z<p>My list.. most of them fall more under the "hidden features" than the "favorite features" (I hope!), and not all are useful, but .. yeah. </p>
<pre><code>// swap values. any number of vars works, obviously
list($a, $b) = array($b, $a);
// nested list() calls "fill" variables from multidim arrays:
$arr = array(
array('aaaa', 'bbb'),
array('cc', 'd')
);
list(list($a, $b), list($c, $d)) = $arr;
echo "$a $b $c $d"; // -> aaaa bbb cc d
// list() values to arrays
while (list($arr1[], $arr2[], $arr3[]) = mysql_fetch_row($res)) { .. }
// or get columns from a matrix
foreach($data as $row) list($col_1[], $col_2[], $col_3[]) = $row;
// abusing the ternary operator to set other variables as a side effect:
$foo = $condition ? 'Yes' . (($bar = 'right') && false) : 'No' . (($bar = 'left') && false);
// boolean False cast to string for concatenation becomes an empty string ''.
// you can also use list() but that's so boring ;-)
list($foo, $bar) = $condition ? array('Yes', 'right') : array('No', 'left');
</code></pre>
<p>You can nest ternary operators too, comes in handy sometimes.</p>
<pre><code>// the strings' "Complex syntax" allows for *weird* stuff.
// given $i = 3, if $custom is true, set $foo to $P['size3'], else to $C['size3']:
$foo = ${$custom?'P':'C'}['size'.$i];
$foo = $custom?$P['size'.$i]:$C['size'.$i]; // does the same, but it's too long ;-)
// similarly, splitting an array $all_rows into two arrays $data0 and $data1 based
// on some field 'active' in the sub-arrays:
foreach ($all_rows as $row) ${'data'.($row['active']?1:0)}[] = $row;
// slight adaption from another answer here, I had to try out what else you could
// abuse as variable names.. turns out, way too much...
$string = 'f.> <!-? o+';
${$string} = 'asdfasf';
echo ${$string}; // -> 'asdfasf'
echo $GLOBALS['f.> <!-? o+']; // -> 'asdfasf'
// (don't do this. srsly.)
${''} = 456;
echo ${''}; // -> 456
echo $GLOBALS['']; // -> 456
// I have no idea.
</code></pre>
<p>Right, I'll stop for now :-)</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1025061#102506111Answer by artlung for Hidden Features of PHP?artlung2009-06-21T23:55:02Z2009-06-22T01:48:28Z<p>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:</p>
<blockquote>
<p><a href="http://php.net/function" rel="nofollow">http://php.net/function</a></p>
</blockquote>
<p>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:</p>
<blockquote>
<p><a href="http://php.net/range" rel="nofollow">http://php.net/range</a></p>
</blockquote>
<p>That url is an alias for <a href="http://us2.php.net/manual/en/function.range.php" rel="nofollow">http://us2.php.net/manual/en/function.range.php</a>. That simple idea, of mapping functions and keywords to urls, is awesome.</p>
<p>I wish other languages, frameworks, databases, operating systems has as simple a mechanism for looking up documentation.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1025143#10251437Answer by staticsan for Hidden Features of PHP?staticsan2009-06-22T00:39:06Z2009-06-22T00:39:06Z<p>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 <code>array_merge()</code> 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.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1025183#10251832Answer by Franco for Hidden Features of PHP?Franco2009-06-22T01:07:27Z2009-06-22T01:07:27Z<p>This is great:</p>
<pre><code>//file page_specific_funcs.inc
function doOtherThing(){
}
class MyClass{
}
//end file
//file.php
function doSomething(){
include("page_specific_funcs.inc");
$var = new MyClass();
}
//end of file.php
</code></pre>
<blockquote>
<p>"page_specific_funcs.inc" file <strong>is
only included</strong> if doSomething gets
called. The declaration of classes,
funcs, etc., inside methods works
perfectly.</p>
</blockquote>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1025634#10256340Answer by Mark for Hidden Features of PHP?Mark2009-06-22T05:51:07Z2009-10-01T21:06:23Z<p>Boolean casting, which is particularly helpful for redwall_hp's first example, above.</p>
<p>Instead of:</p>
<pre><code>$var = ($_POST['my_checkbox']=='checked') ? TRUE : FALSE;
</code></pre>
<p>You can type:</p>
<pre><code>$var = !!($_POST['my_checkbox']=='checked');
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1026758#10267585Answer by Darren Newton for Hidden Features of PHP?Darren Newton2009-06-22T11:52:18Z2009-06-22T14:59:01Z<p><strong><a href="http://us.php.net/manual/en/function.range.php" rel="nofollow">Range()</a></strong><br />
<a href="http://us.php.net/manual/en/function.range.php" rel="nofollow">http://us.php.net/manual/en/function.range.php</a><br /><br />
This isn't hidden per se, but I still see a lot of people iterating with:</p>
<pre><code>for ($i=0; $i < $x; $i++) {
# code...
}
</code></pre>
<p>when they could be using:</p>
<pre><code>foreach (range(0, 12) as $number) {
echo $number;
}
</code></pre>
<p>And you can do simple things like</p>
<pre><code>foreach (range(date("Y"), date("Y")+20) as $i)
{
print "\t<option value=\"{$i}\">{$i}</option>\n";
}
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1027553#10275530Answer by aviv for Hidden Features of PHP?aviv2009-06-22T14:34:54Z2009-06-22T14:34:54Z<p>As far as i know, you can Implicit parameter type in function call:</p>
<pre><code>function getInt(int $v)
{
echo $v;
}
getInt(5); // will work
getInt('hello'); // will fail
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1027577#10275771Answer by Israel Viana for Hidden Features of PHP?Israel Viana2009-06-22T14:39:59Z2009-06-22T14:39:59Z<p>Definitely the magic and overloading methods. Allain cited __get(), __set(), __call() and __toString(), but I also love __wakeup() and __sleep().</p>
<p>This magic methods are called when the object is serialized (sleep) and deserialized (wakeup). This feature ables making things like serializable Database-wrappers, which i am using in an application:</p>
<pre><code>Class Connection {
private $dsn;
private $connection;
...
public __wakeup() {
$this->connection = ADONewConnection();
}
}
</code></pre>
<p>In this way i can "save" connections in $_SESSION, etc.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1027667#10276670Answer by David for Hidden Features of PHP?David2009-06-22T14:54:24Z2009-06-22T14:54:24Z<p>The json_encode/decode functions in php are pretty useful, though not very hidden.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1027828#10278284Answer by Eric Muyser for Hidden Features of PHP?Eric Muyser2009-06-22T15:26:41Z2009-06-22T19:55:32Z<p>Besides instance access to start coding away at anything you need for a website?</p>
<p>Besides magic methods and reflections, some interesting functions are:</p>
<ol>
<li><a href="http://ca.php.net/serialize" rel="nofollow"><code>serialize</code></a> / <a href="http://ca.php.net/unserialize" rel="nofollow"><code>unserialize</code></a> - state saving goodness via sql, cookies, processes, flatfile. good stuff.</li>
<li><a href="http://ca.php.net/json%5Fencode" rel="nofollow"><code>json_encode</code></a> / <a href="http://ca.php.net/json%5Fdecode" rel="nofollow"><code>json_decode</code></a> - instant AJAX fun</li>
<li><a href="http://ca.php.net/get%5Fclass" rel="nofollow"><code>get_class</code></a> - helpful for those weary loose-typing moments </li>
<li><a href="http://ca.php.net/call%5Fuser%5Ffunc%5Farray" rel="nofollow"><code>call_user_func_array</code></a> - powerful when you can work with your code as strings (think dynamic)</li>
<li><a href="http://ca.php.net/method%5Fexists" rel="nofollow"><code>method_exists</code></a> - reflection</li>
<li><a href="http://ca.php.net/func%5Fnum%5Fargs" rel="nofollow"><code>func_num_arg</code>s</a> / <a href="http://ca.php.net/func%5Fget%5Fargs" rel="nofollow"><code>func_get_arg</code></a> - unknown arguments ftw</li>
<li><a href="http://ca.php.net/set%5Ferror%5Fhandler" rel="nofollow"><code>set_error_handler</code></a> / <a href="http://ca.php.net/set%5Fexception%5Fhandler" rel="nofollow"><code>set_exception_handler</code></a> - very good debugging capabilities for a scripting language</li>
</ol>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1029100#10291008Answer by Pablo Livardo for Hidden Features of PHP?Pablo Livardo2009-06-22T19:52:46Z2009-06-22T19:52:46Z<p>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.</p>
<pre><code>echo <<<EOM
<div id="someblock">
<img src="{$file}" />
</div>
EOM;
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1029114#10291141Answer by Pablo Livardo for Hidden Features of PHP?Pablo Livardo2009-06-22T19:57:21Z2009-06-22T19:57:21Z<p>I also like the difference between ' and ".</p>
<pre><code>$foo = 'Bob';
echo 'My name is {$foo}'; // Doesn't swap the variable
echo "My name is {$foo}"; // Swaps the variable
</code></pre>
<p>Therefore, if your string doesn't need variable swapping, don't use a ", it's a waste of time. I see lots of people declaring strings with " all the time.</p>
<p>Note: I use { } as it makes my variables stand out more.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1029599#10295990Answer by Ross for Hidden Features of PHP?Ross2009-06-22T21:53:45Z2009-06-22T21:53:45Z<p>There's lots of gems hidden in the Standard PHP Library. Array access allows you to build an object that works to an array interface but add your own functionality on top.</p>
<p>Also when you create an ArrayAccess object by setting a flag in the constructor you can read and write an object as either an array or an object. Here's an example:</p>
<pre><code>$obj = new ArrayObject(array("name"=>"bob", "email"=>"bob@example.com"),2);
$obj->fullname = "Bob Example";
echo $obj["fullname"];
$obj["fullname"]="Bobby Example";
echo $obj->fullname;
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1029673#10296730Answer by perfectDay for Hidden Features of PHP?perfectDay2009-06-22T22:14:41Z2009-06-22T22:14:41Z<p>I like the possibility of returning an array.</p>
<pre><code>class House{
function house(){
....
return $house=array('wall'=>'brick','door'=>'maple');
}
function built(){
...
$wall = $this->house['wall'];
}
}
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1031528#10315280Answer by Mickael for Hidden Features of PHP?Mickael2009-06-23T09:29:28Z2009-06-23T09:29:28Z<p>Don't really understand "perfectDay" answer....</p>
<pre><code><?PHP
class House{
function house(){
return $house=array('wall'=>'brick','door'=>'maple');
}
function built(){
$wall = $this->house['wall'];
print_r( $wall );
}
}
$h = new House();
$h->built();
</code></pre>
<p>and then it gives me :</p>
<pre><code>php test.php
PHP Notice: Undefined property: House::$house in /tmp/test.php on line 8
</code></pre>
<p>...?</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1053080#10530800Answer by nightingale2k1 for Hidden Features of PHP?nightingale2k12009-06-27T15:55:38Z2009-06-27T15:55:38Z<p>the hidden features that I love from php:
1. easy to learn (also easy to missused it .. ie: bad programming habits. like you can type $something = "1" ; and then you did $something += 3 ; and suddenly $something becomes an integer .. without error message/freaking exceptions, like those in java)</p>
<ol>
<li>lots of library. go to phpclasses.org and I almost got everything from there.</li>
<li>lots of web using it. Love it or hate it .. that's the fact ! :)</li>
<li>simple, small and easy to maintenance. you just install xampplite + vim (my favourite) on your portable devices. </li>
<li>cheap !!! as cheap as a beer ... for example: hosting. compared to java or .net host, php host really cheap and you can get free one from some websites (although they will put some banners / hidden thing inside your website)</li>
<li>the documentation for php was very good !! that's the main reason i am stick to php for about 6 years (although I did some projects using Groovy/Grails)</li>
</ol>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1061640#10616403Answer by Encoderer for Hidden Features of PHP?Encoderer2009-06-30T03:51:39Z2009-06-30T03:51:39Z<p>Output buffering via ob_start() is far more useful than most realize. The first hidden feature here is that ob_start accepts a callback: </p>
<pre><code>function twiterize($text) {
// Replace @somename with the full twitter handle
return preg_replace("(\s+)@(\w)+(\s+)", "http://www.twitter.com/${2}", $text);
}
ob_start(twiterize);
</code></pre>
<p>Secondly, you can nest output buffers... Using the previous example: </p>
<pre><code>ob_start(parseTemplate);
// ...
ob_start(twiterize);
// ...
ob_end_flush();
// ...
ob_end_flush();
</code></pre>
<p>Help contents, text ads, dictionary/index functionality, linkify, link-redirection for tracking purposes, templating engine, all these things are very easy by using different combinations of these 2 things</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1066936#10669363Answer by djn for Hidden Features of PHP?djn2009-07-01T01:43:24Z2009-07-01T01:43:24Z<p>Well, I've recently delivered my first GUI application to a paying customer - written in PHP! It gathers data from a barcode reader or from GUI pushbuttons, checkboxes, radio buttons or text fields, stores to SQLite or remote MySQL, launches other Windows apps, sends zipped XML reports as email attachments, encrypts and decrypts stored data and even plays a sound when done.</p>
<p>Did it with <a href="http://www.exvision.net/miniphp.php" rel="nofollow">miniPHP</a> and <a href="http://winbinder.org/" rel="nofollow">Winbinder</a>. Is that hidden enough? I guess not many PHP developers have really tried this out.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1092743#10927432Answer by Daan for Hidden Features of PHP?Daan2009-07-07T14:41:18Z2009-07-07T14:41:18Z<h3><a href="http://www.php.net/manual/en/control-structures.alternative-syntax.php" rel="nofollow">The alternative syntax for control structures</a></h3>
<p>There are a lot of people who don't know this syntax. When I use pure PHP for templating, this syntax offers a nice and clean way to mix simple control structures such as <code>if</code> or <code>foreach</code> with your HTML template code, usually combined with the <code><?= $myVar ?></code> short style of printing a variable.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1103508#110350810Answer by TheBrain for Hidden Features of PHP?TheBrain2009-07-09T12:24:41Z2009-07-09T15:18:11Z<p>you can use a function with a undefined number of arguments using the func_ get_args()</p>
<pre><code><?php
function test() {
$args = func_get_args();
echo $args[2]; // will print 'd'
echo $args[1]; // will print 3
}
test(1,3,'d',4);
?>
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1141481#11414812Answer by RaYell for Hidden Features of PHP?RaYell2009-07-17T05:08:03Z2009-07-17T05:08:03Z<p>Using array elements or object properties inside strings.</p>
<p>Instead of writing</p>
<pre><code>$newVar = $ar['foo']['bar'];
echo "Array value is $newVar";
$newVar = $obj->foo->bar;
echo "Object value is $newVar";
</code></pre>
<p>You can write:</p>
<pre><code>echo "Array value is {$ar['foo']['bar']}";
echo "Object value is {$obj->foo->bar}";
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1144880#11448802Answer by Alex L for Hidden Features of PHP?Alex L2009-07-17T18:16:06Z2009-07-17T18:16:06Z<p><strong><a href="http://us3.php.net/manual/en/ref.ctype.php" rel="nofollow">Ctype functions</a> are faster than preg_match() for basic character validation.</strong></p>
<blockquote>
<blockquote>
<p>ctype_alnum() — Check for alphanumeric character(s)<br />
ctype_alpha() — Check for alphabetic character(s)<br />
ctype_cntrl() — Check for control character(s)<br />
ctype_digit() — Check for numeric character(s)<br />
...etc...</p>
</blockquote>
</blockquote>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1173586#11735861Answer by dburke for Hidden Features of PHP?dburke2009-07-23T18:21:11Z2009-07-23T18:21:11Z<p>I have started to switch over to python, and one thing I loved in python is the live interpreter. It wasn't until working on a php project later that I realized php does have this option, it's just not widely known. In a command prompt, type <code>php -a</code> and paste in any php code you want to test, but just remember to start it with <code><?php</code></p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1183306#11833061Answer by Elzo Valugi for Hidden Features of PHP?Elzo Valugi2009-07-25T23:06:09Z2009-07-25T23:06:09Z<p><a href="http://es.php.net/manual/en/function.filter-var.php" rel="nofollow">filter_var</a> function. Not a hidden pearl, but pretty new.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1241052#12410523Answer by Philippe Gerber for Hidden Features of PHP?Philippe Gerber2009-08-06T19:59:58Z2009-08-06T19:59:58Z<p>Include files can have a return value you can assign to a variable.</p>
<pre><code>// config.php
return array(
'db' => array(
'host' => 'example.org',
'user' => 'usr',
// ...
),
// ...
);
// index.php
$config = include 'config.php';
echo $config['db']['host']; // example.org
</code></pre>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1295364#12953642Answer by Saem for Hidden Features of PHP?Saem2009-08-18T17:29:51Z2009-08-18T17:29:51Z<p>I suggest using PHPUnit for unit testing, if you want to have annotations for marking your tests, and data providers, and data driven tests, and so on. Not to mention, it seems to get all the integration love when it comes to things like continuous integration (cruise control, bamboo, hudson, etc...).</p>
<p>PHP 5.3, it's a big jump, and it's throughly worth it in terms of language features. It maybe rough around the edges, but this is a startup and they'll be fixed up releases by the time you launch.</p>
<p>As far as magic methods go __invoke() alone is a big deal, but it doesn't have the reciprocal method for it, even then, paired with array_map, array_reduce, and array_filter, and some wrappers you can do some amazing functional programming.</p>
<p>__get, __set, and __call are really handy as well, I used these and some interface/class naming convention trickery to implement traits prior to 5.3, but now you have traits, as well.</p>
<p>Also have a look at the addendum library, written by derik rethans of ezComponents, and XDebug fame, it allows you to do annotations for php 5+. It's not bad, and performance is a non-issue with caching.</p>
<p>For profiling, you can use xdebug + webcachegrind.</p>
<p>The best IDE is probably the free eclipse PDT, if you use type hinting on parameters, and phpdoc comments for parameters and returns it can figure things out from those and provide you code completion. That should give you decent intellisense.</p>
<p>BTW, it's tempting to do all sorts of crazy string concats, or variable variables, or variable method calls, or variable class creation, do this in more than one place, that's not well documented and easy to search via regex, and you're SCREWED. Forget hard to debug, but refactoring is a major pain. This is something people rarely consider php has NO automated refactoring tools, and refactoring large code bases is VERY hard to do in php.</p>
<p>A few things to caution you, even if you smell the slightest bit of possibility that you might have to deal with multi-byte chars, or 'exotic' character encodings, I strongly urge you to wrap up string handling. In fact, introducing a thin layer of indirection which allows you to shim between or act as seams for testing/injectability between your code and built-ins will make your life easier. Not strictly necessary, but unless you have the benefit of foresight, it's hard to tackle internationalization or such large cross-cutting projects.</p>
<p>autoload, learn it and love it. Run away from hard coded require/includes, or worse, their *_once variants, they tie your hands in terms of injection, instead use an autoloader, simplest thing is to jam all your includes in a array, keyed on the class name, and the value is the file path from some root, it's fast. The wicked thing about this is that it makes testing really easy, as you've implemented a class loader, and so you can do some really neat stuff with it.</p>
<p>PHP 5.3 has name spaces now, jump for joy and use them like a mad man. This alone provides an opportunity to create seams (rare) for testing/injections.</p>
<p>Opcode caches, file accesses are slow, to avoid them, use an opcode cache, it's not just the file access, it's all the parsing, really. If you don't have to parse PER request, it makes a BIG difference. Even doing this for a front controller/interceptor will give you a lot of benefits.</p>
<p>Think different, one of the most troubling things for PHP programmers if they come from Java/.Net is that your application server is spread across PHP/Apache, or whatever web server you're using.</p>
<p>Phing/Ant/PHPMaven early on it seems easy just to jam everything in, but build scripts are still useful in php and they have some great support.</p>
<p>I had trouble with method overloading, and still contend with it. I came up with a pattern to alleviate a certain aspect of it. I often had many things that could fulfill a certain parameter, so when you document it @param mixed(int|array|fooObject) if those were the possibilities, I created a static method called Caster::CastTo($param, $toTypeAsString) that would just run through a case matching the type and trying to convert it to a known type. The rest of the method could then assume that one type, or a failure to convert, and work with that. And since I jammed ALL conversions in one class, it stopped mapping of types from being a cross cutting concern, and since these functions can be individually tested, I could test them once, and rely on them everywhere else.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1349122#13491220Answer by RedAssBaboon for Hidden Features of PHP?RedAssBaboon2009-08-28T20:17:25Z2009-08-28T20:17:25Z<p>In PHP5.3 you can place PHAR archives inside PHAR archives!
Like WAR/EJB in the java world.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1416447#14164470Answer by Tchalvak for Hidden Features of PHP?Tchalvak2009-09-12T23:32:42Z2009-09-12T23:32:42Z<p>My revelations over the years have been more conceptual than language based.</p>
<p>1: Rendering instead of echoing.</p>
<pre><code>function render_title($title){
return "<title>$title</title";
}
</code></pre>
<p>so much easier to use the parts repeatably and pass them to templates when you are rendering your output instead of using echos (in which case you'd have to rely on output buffering).</p>
<p>2: functional programming, or at least as close as I can move towards it, functions without side-effects. Rendering, not using globals, keeping your functions to having a local scope, things like that. I thought that object oriented programming was the way to go with php for a while there, but the reduction in overhead and syntax complexity that I experienced from dropping down from object oriented methods to functional programming methods in php makes functional programing the clear choice for me.</p>
<p>3: Templating systems (e.g. smarty). It's taken me a long time to realize that you -need- a templating system inside what is already a template scripting language, but the seperation of logic from display that it gives you is so, so necessary.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1548737#15487370Answer by Alex L for Hidden Features of PHP?Alex L2009-10-10T18:44:28Z2009-10-10T18:44:28Z<p>The <a href="http://us.php.net/manual/en/class.reflectionclass.php" rel="nofollow">ReflectionClass</a> class provides information about a given class.</p>
<pre><code>$classInfo = new ReflectionClass ('MyClass');
if ($classInfo->hasMethod($methodName))
{
$cm = $classInfo->getMethod($name);
$methodResult = $cm->invoke(null);
}
</code></pre>
<p>Among other things, useful to check if a method exists and call it.</p>
http://stackoverflow.com/questions/61401/hidden-features-of-php/1697712#16977120Answer by Frank for Hidden Features of PHP?Frank2009-11-08T19:56:35Z2009-11-08T19:56:35Z<p>As others have mentioned, the ability to run PHP at the command line level is fantastic. I set PHP scripts as cron jobs for data cleanup and backup purposes all the time. Just start the file with these lines:</p>
<pre><code>#!/usr/bin/php5
<?php
// start coding here
</code></pre>
<p>Note that the first line may be different depending on where PHP is installed on your system.</p>
<p>From here, it's easy to implement PHP for more complex system-level processes, <a href="http://www.phpclasses.org/browse/file/8958.html" rel="nofollow">like daemons</a>.</p>