The fifth version of the PHP: Hypertext Preprocessor (PHP) scripting language. It features the Zend Engine 2, better object model support, and many other improvements over PHP 4.

learn more… | top users | synonyms

182
votes
9answers
108k views

PHP: self vs. $this

In PHP5, what is the difference between using self and $this? When is each appropriate?
109
votes
8answers
5k views

In a PHP project, what patterns exist to store, access and organize helper objects? [closed]

How do you organize and manage your helper objects like the database engine, user notification, error handling and so on in a PHP based, object oriented project? Say I have a large PHP CMS. The CMS ...
81
votes
5answers
64k views

What is stdClass in PHP?

I have search in Google but couldn't find an answer. Please define what is stdClass.
78
votes
6answers
5k views

Setting up a deployment / build / CI cycle for PHP projects

I am a lone developer most of my time, working on a number of big, mainly PHP-based projects. I want to professionalize and automate how changes to the code base are handled, and create a Continuous ...
39
votes
11answers
1k views

What should every web developer know about encryption?

I've just landed a PHP5 gig. I won't be handling the parts of the application that involve super sensitive data, but I still know embarrassingly little about security and encryption methods. I only ...
38
votes
2answers
4k views

NoSQL best practices

What are the best practices for NoSQL Databases, OODBs or whatever other acronyms may exist for them? For example, I've often seen a field "type" being used for deciding how the DB document (in ...
37
votes
15answers
11k views

SIMPLE PHP MVC Framework!

I need a simple and basic MVC example to get me started. I dont want to use any of the available packaged frameworks. I am in need of a simple example of a simple PHP MVC framework that would allow, ...
37
votes
15answers
5k views

Zend PHP5 Certification, does it matter? [closed]

The Zend PHP5-certification, is it really worth it? In the end for me it boils down to: Will it get me a job I wouldn't without it?
33
votes
8answers
147k views

Converting an integer to a string in PHP

Is there a way to convert an integer to a string in PHP?
33
votes
12answers
8k views

What PHP-specific questions would you ask in a job interview? [closed]

We're having a PHP freelancer come by next week, and are assuming he knows his way around PHP. But of course, we would like to make sure. What questions would you ask a candidate in a PHP job ...
27
votes
3answers
5k views

In Php 5.3.0 what is the Function “Use” Identifier ? Should a sane programmer use it?

I'm checking out some php 5.3.0 features and ran across some code on the site that looks quite funny: public function getTotal($tax) { $total = 0.00; $callback = /* This line here: ...
26
votes
13answers
48k views

Create a CSV File for a user in PHP

I have data in a MySQL database. I am sending the user a URL to get their data out as a CSV file. I have the e-mailing of the link, MySQL query, etc. covered. How can I, when they click the link, ...
25
votes
12answers
797 views

How can I “think” in OOP?

I am learning php5 and have covered all the basics concepts. Now to do the actual work. I realize the biggest challenge for me is dividing and organizing which classes should do what; I am stuck. ...
25
votes
8answers
10k views

Prevent Users from submitting form by hitting enter

I have a survey on a website, and there seems to be some issues with the users hitting enter (I don't know why) and accidentally submitting the survey (form) without clicking the submit button. Is ...
23
votes
2answers
516 views

Why date() works twice as fast if we set time zone from code?

Have you noticed that date() function works 2x faster than usual if you set actual timezone inside your script before any date() call? I'm very curious about this. Look at this simple piece of code: ...
22
votes
4answers
17k views

Caller function in PHP 5?

Is there a PHP function to find out the name of the caller function in a given function?
20
votes
10answers
2k views

Best way to access global objects (like Database or Log) from classes and scripts? [closed]

I've read some related questions (1, 2), but none seemed fully adequate. What's the best way to access globally important objects in each class or .php script? A few examples: DB (database) Cache ...
20
votes
15answers
5k views

Any PHP MVC framework planning to use 5.3 features?

I would like to get started with PHP, and 5.3 release seems to bring many nice features (namespaces, lambda functions, and many others). I have found some MVC frameworks, and some of them support ...
20
votes
6answers
5k views

Coalesce function for PHP?

Many programming languages has a coalesce function (example). PHP, sadly, does not. What would be the most efficient way to implement one in PHP?
19
votes
4answers
718 views

PHP 5.1 Online Codepad

I'm looking for a PHP codepad like codepad.org or ideone.com with support for PHP 5.1. From some question/answer here on SO some month ago I remember such a thing exists (existed?) but I was not able ...
19
votes
6answers
2k views

PHP: Is there any particular difference between intval and (int)?

Is there any particular difference between intval and (int)? Example: $product_id = intval($_GET['pid']); $product_id = (int) $_GET['pid']; Is there any particular difference between above two ...
19
votes
19answers
2k views

Is SQL injection a risk today?

I've been reading about SQL injection attacks and how to avoid them, although I can never seem to make the "awful" examples given work, e.g. this post ...
17
votes
2answers
370 views

Why can't I declare a function name “_”?

Code: function _() { echo 'hello word'; } Output: Fatal error: Cannot redeclare _() I haven't defined this function _ before, then why I am getting this error?
17
votes
6answers
903 views

Why do some scripts omit the closing php tag '?>'?

In some scripts I see that they omit writing a closing tag ?> for the script. I don't know why. Can someone tell me why and if I should do this as well? (I'm sure they have not forgotten it.) ...
17
votes
18answers
35k views

Find the last element of an array while using a foreach loop in PHP

I am writing a SQL query creator using some parameters. In Java, it's very easy to detect the last element of an array from inside the for loop by just checking the current array position with the ...
16
votes
2answers
2k views

PHP 5.4 - 'closure $this support'

I see that the new planned features for PHP 5.4 are: traits, array dereferencing, a JsonSerializable interface and something referred to as 'closure $this support' ...
16
votes
1answer
462 views

Zend_Gdata and OAuth

I successfully retrieved token key / secret after applying Google Hybrid Protocol (OpenID + OAuth). Then I'm looking into Zend documentation here: http://framework.zend.com/manual/en/zend.gdata.html ...
16
votes
8answers
3k views

Why Use PHP OOP over Basic Functions and When?

There are some posts about this matter, but I didn't clearly get when to use Object Oriented coding and when to use programmatic functions in an include. Somebody also mentioned to me that OOP is very ...
15
votes
2answers
231 views

What is exactly happening when instantiating with 'new'?

Let's consider the following code: class a { public $var1; function disp(){ echo $this->var1; } } $obj1 = new a; echo '<br/>After instantiation into ...
15
votes
2answers
226 views

Array to Object and Object to Array in PHP - interesting behaviour

Can you explain the next interesting behaviour? class test { //Class *test* has two properties, public and private. public $xpublic = 'x1'; private $xprivate = 'x2'; } $testObj = new test(); ...
15
votes
7answers
51k views

Assigning the return value of new by reference is deprecated

I've just got an error. When I try to assign an object like this: $obj_md = new MDB2(); The error I get is "Assigning the return value of new by reference is deprecated". Actually I've been ...
15
votes
5answers
8k views

Why does PHP 5.2+ disallow abstract static class methods?

After enabling strict warnings in PHP 5.2, I saw a load of strict standards warnings from a project that was originally written without strict warnings: Strict Standards: Static function ...
14
votes
4answers
1k views

Scaling a chat app - short polling vs. long polling (AJAX, PHP)

I run a website where users can chat with each other through the browser (think Facebook chat). What is the best way to handle the live interaction? (Right now I have a poll going every 30 seconds to ...
14
votes
1answer
3k views

New self vs. new static

I am trying to convert a PHP 5.3 library to work on PHP 5.2. The main thing standing in my way is the use of late static binding like return new static($options); , if I convert this to return new ...
14
votes
6answers
319 views

Your experience Moving PHP 4 to PHP 5

We have to move around 50+ Applications (small / large) to PHP 5.3 (from PHP 4.1). Does some has any experience with such an task? Time needed Tools Best setup for environment (Servers/Test?) Does ...
14
votes
8answers
2k views

How to handle user input of invalid UTF-8 characters?

I'm looking for general a strategy/advice on how to handle invalid UTF-8 input from users. Even though my webapp uses UTF-8, somehow some users enter invalid characters. This causes errors in PHP's ...
14
votes
5answers
2k views

Is there any replacement for PHPDocumentor that supports PHP 5.3?

Some of the new PHP 5.3 features, including namespaces and anonymous functions, are not compatible with PHPDocumentor, even with the latest release. For example, it just raises an error when it ...
14
votes
3answers
6k views

PHP Object ID

I'm using PHP 5.2. I'd like to find a way to output a unique id for every object, so it's easy when looking over logs to see which objects are the same. In Ruby, I'd just say object.object_id to get ...
13
votes
4answers
1k views

PHP global in functions

I ask myself on the utility of the global keyword: Are there any reasons to prefer one method to another? Security? Performance? Anything else? Method 1: function exempleConcat($str1, $str2) { ...
13
votes
3answers
396 views

Caching strategy, when does caching become pointless?

I'm pretty new to caching strategies and implementations. I'm working on a project that will be database intensive, but also have information being updated and changed very regularly. I've found ...
13
votes
6answers
15k views

PHP Frameworks: Codeigniter vs. Yii vs. Custom?

I have used codeigniter for a some years now. Why I chosed to work with codeigniter back then? Pretty much for the extensive documentation that were available and the big user community. It made me as ...
13
votes
5answers
7k views

How to avoid call-time pass-by-reference deprecated error in PHP?

I'm trying to reduce the warnings that are sent to my apache server log. One warning is: Call-time pass-by-reference has been deprecated. It is hard for me to imagine why this was deprecated ...
13
votes
7answers
3k views

What factors make PHP Unicode-incompatible?

I am able use UTF-8 characters just fine in my scripts. As a matter of fact it is possible to have names of variables and functions contain Unicode characters. There is also the mb_string extension, ...
13
votes
7answers
3k views

__construct() vs SameAsClassName() for constructor in PHP

Is there any advantage to using __construct() instead of the class's name for a constructor in PHP? example: class Foo { function __construct(){ //do stuff } } OR class Foo { ...
13
votes
7answers
4k views

In PHP5, should I use Exceptions or trigger_error/set_error_handler?

What are the pros/cons of doing either way. Is there One Right Way(tm) ?
12
votes
3answers
653 views

Dependency-injection in real life

I am building a really minimal MVC framework to increase my PHP knowledge and challenge myself. I've come to the point where Classes begin to be dependent on each other to work. Dependency injection ...
12
votes
3answers
1k views

Increasing nesting functions calls limit

There is one very bad limit in PHP: if you call some function a1() that calls a2(), that calls a3... so when a99() will call a100() you will see Fatal error: Maximum function nesting level of '100' ...
12
votes
3answers
145 views

Which function should i use for testin if a var isset or not?

I'm sometimes confused to using which one of them, say i have a function called getmember($id) function getmember($id) { // now this is the confusing part // how do i test if a $id was set or not ...
12
votes
8answers
23k views

What causes an HTTP 405 “invalid method (HTTP verb)” error when POSTing a form to PHP on IIS?

I have one form in a PHP (5.2.9-1) application that causes IIS (Microsoft-IIS/6.0) to throw the following error when POSTed: The page you are looking for cannot be displayed because an invalid ...
12
votes
2answers
1k views

Does PHP have an equivalent to Python's list comprehension syntax?

Python has syntactically sweet list comprehensions: S = [x**2 for x in range(10)] print S; [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] In PHP I would need to do some looping: $output = array(); $Nums = ...

1 2 3 4 5 191