Tagged Questions
PHP is an open-source server-side scripting language widely used in web development. Use this tag for questions about PHP classes, methods, functions, syntax and use.
1455
votes
24answers
199k views
How to prevent SQL injection in PHP?
If user input is inserted into an SQL query directly, the application becomes vulnerable to SQL injection, like in the following example:
$unsafe_variable = $_POST['user_input'];
mysql_query("INSERT ...
700
votes
5answers
54k views
Reference - What does this symbol mean in PHP?
What is this?
This is a collection of questions that come up every now and then about syntax in PHP. This is also a Community Wiki, so everyone is invited to participate in maintaining this list.
...
571
votes
27answers
78k views
How to parse and process HTML/XML?
How can one parse HTML/XML and extract information from it?
What libraries exist for that purpose? What are their strengths and drawbacks?
This is a General Reference question for the php tag
515
votes
13answers
220k views
When to use self vs $this?
In PHP 5, what is the difference between using self and $this?
When is each appropriate?
486
votes
22answers
17k views
How should I ethically approach user password storage for later plaintext retrieval?
As I continue to build more and more websites and web applications I am often asked to store user's passwords in a way that they can be retrieved if/when the user has an issue (either to email a ...
382
votes
6answers
81k views
How do you use bcrypt for hashing passwords in PHP?
Every now and then I hear the advice "Use bcrypt for storing passwords in PHP, bcrypt rules".
But what is bcrypt? PHP doesn't offer any such functions, Wikipedia babbles about a file-encryption ...
378
votes
3answers
50k views
How foreach actually works
Let me prefix this by saying that I know what foreach is, does and how to use it. This question concerns how it works under the bonnet, and I don't want any answers along the lines of "this is how you ...
353
votes
15answers
126k views
Simple “Long Polling” example code?
I can find lots of information on how Long Polling works (For example, this, and this), but no simple examples of how to implement this in code.
All I can find is cometd, which relies on the Dojo JS ...
350
votes
12answers
73k views
Secure hash and salt for PHP passwords
It is currently said that MD5 is partially unsafe.
Taking this into consideration, I'd like to know which mechanism to use for password protection.
Is “double hashing” a password less secure than ...
326
votes
20answers
102k views
PHP and Enums
I know that PHP doesn't have native Enumerations. But I have become accustomed to them from the Java world. I would love to use enums as a way to give predefined values which IDEs' auto completion ...
318
votes
4answers
158k views
How to get thumbnail of YouTube video link using YouTube API?
I want to pass a YouTube URL to maybe YouTube's API and get the video thumbnail using PHP & curl? Is that possible?
318
votes
17answers
46k views
mysqli or PDO - what are the pros and cons? [closed]
In our place we're split between using mysqli and PDO for stuff like prepared statements and transaction support. Some projects use one, some the other. There is little realistic likelihood of us ever ...
309
votes
25answers
177k views
Convert HTML + CSS to PDF with PHP?
Ok, I'm now banging my head against a brick wall with this one.
I have an HTML (not XHTML) document that renders fine in Firefox 3 and IE 7. It uses fairly basic CSS to style it and renders fine in ...
286
votes
11answers
17k views
Why doesn't this code simply print letters A to Z?
<?php
for ($i = 'a'; $i <= 'z'; $i++)
echo "$i\n";
This snippet gives the following output (newlines are replaced by spaces):
a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ...
282
votes
7answers
149k views
correct HTTP header for json file
I've searched around and found two different ways to define Content-type for JSON file loaded with php.
header('Content-type: text/json');
header('Content-type: application/json');
which one should ...
279
votes
10answers
98k views
What's the best method for sanitizing user input with PHP?
Is there a catchall function somewhere that works well for sanitizing user input for sql injection and XSS attacks, while still allowing certain types of html tags?
277
votes
8answers
269k views
How to delete an element from an array in php?
Does anyone know an easy way to delete an element from a php array? So that foreach($array) no longer includes that element. I thought that setting it to null would do it, but apparently not.
274
votes
71answers
49k views
Any good PHP IDE, preferably free or cheap? [closed]
Does anyone know of any good IDE (Code completion, Syntax coloring, etc) that will handle php. Looking for anything that might be relatively cheap or free and doesn't run like crap (IE: Eclipse)
270
votes
15answers
155k views
PHP startsWith() and endsWith() functions
I need two functions that would take a string and return if it starts with the specified character/string or ends with it.
For example:
$str='|apples}';
echo startsWith($str,'|'); //Returns true
...
250
votes
16answers
60k views
Deploy a project using Git push
Is it possible to deploy a PHP website using git push? I have a hunch it has something to do with using git hooks to perform a git reset --hard on the server side, but how would I go about ...
249
votes
10answers
9k views
PHP tutorial that is security-, accuracy- and maintainability-conscious? [closed]
Colleagues often ask me: “bobince”, they say*, “I want to learn PHP, but I know you're always ranting on about poor code which is full of errors and security holes. That's why I normally don't like ...
245
votes
6answers
133k views
What is stdClass in PHP?
I searched about stdClass in Google, but couldn't find an answer.
Please define what stdClass is.
244
votes
5answers
193k views
How do I expire a PHP session after 30 minutes?
I need to keep a session alive for 30 minutes and then destroy it.
221
votes
23answers
54k views
Are PHP short tags acceptable to use?
Here's the info according to the official documentation:
There are four different pairs of
opening and closing tags which can be
used in php. Two of those, <?php ?>
and <script ...
212
votes
7answers
10k views
Why shouldn't I use mysql_* functions in PHP?
What are the technical reasons that I shouldn't use mysql_* functions? (like mysql_query(), mysql_connect() or mysql_real_escape_string())?
Why should I move away from them as long as it works on my ...
207
votes
11answers
105k views
How should I choose an authentication library for CodeIgniter?
I see there are a few. Which ones are maintained and easy to use? What are their pros and cons?
204
votes
2answers
67k views
PHP detecting request type (GET, POST, PUT or DELETE)
How can I detect which request type was used(GET, POST, PUT or DELETE) in php?
203
votes
11answers
41k views
Is there a static code analyzer [like Lint] for PHP files?
Is there a static code analyzer for PHP files? The binary itself can check for syntax errors, but I'm looking for something that does more, like unused variable assignments, arrays that are assigned ...
202
votes
9answers
34k views
Headers already sent by PHP
When running my script I get several errors looking like this:
Warning: Cannot modify header information - headers already sent by (output started at /some/file.php:12) in /some/file.php on line ...
187
votes
4answers
89k views
What is thread safe or non thread safe in PHP
I saw different binaries for php, like non thread or thread safe ? What does it mean this ? What is the difference between this packages ?
185
votes
19answers
241k views
How to calculate the difference between two dates using PHP?
I have two dates of the form:
Start Date: 2007-03-24
End Date: 2009-06-26
Now I need to find the difference between these two in the following form:
2 years, 3 months and 2 days
How can I do ...
181
votes
23answers
11k views
Tactics for using PHP in a high-load site
Before you answer this I have never developed anything popular enough to attain high server loads. Treat me as (sigh) an alien that has just landed on the planet, albeit one that knows PHP and a few ...
181
votes
7answers
93k views
What is the best collation to use for MySQL (with PHP)
I'm wondering if there is a "best" choice for collation in MySQL for a general website where you aren't 100% of what will be entered? I understand that all the encodings should be the same, such as ...
168
votes
14answers
45k views
Preferred method to store PHP arrays (json_encode vs serialize)
I need to store a multi-dimensional associative array of data in a flat file for caching purposes. I might occasionally come across the need to convert it to JSON for use in my web app but the vast ...
165
votes
10answers
195k views
PHP - How to check if a string contain specific words
<?php
$a = 'how are you';
if($a contain 'are')
echo 'true';
?>
Suppose I have the code above, how to write the statement "if($a contain 'are')"?
164
votes
5answers
37k views
Can't use method return value in write context
I would think the following piece of code should work, but it doesn't:
if (!empty($r->getError()))
Where getError() is simply
public function getError()
{
return $this->error;
}
Yet I ...
157
votes
9answers
15k views
I never really understood: what is CGI?
CGI is a Comman Gateway Interface. As the name says, it is a "common" gateway interface for everything. It is so trivial and naive from the name. I feel that I understood this and I felt this every ...
156
votes
16answers
93k views
Website screenshots using PHP
Is there any way of taking a screenshot of a website in PHP, then saving it to a file?
155
votes
33answers
39k views
PHP Arrays: A good way to check if an array is associative or numeric?
PHP treats all arrays as associative, so there aren't any built in functions. Can anyone recommend a fairly efficient way to check if an array contains only numeric keys?
Basically, I want to be able ...
153
votes
9answers
94k views
How to extract a file extension in PHP?
This is a question you can read everywhere on the web with various answers :
$ext = end(explode('.', $filename));
$ext = substr(strrchr($filename, '.'), 1);
$ext = substr($filename, ...
152
votes
2answers
6k views
In PHP, why does </script> not show a parse error?
I was running the following PHP code:
<?php
</script>
?>
There were no parse errors and the output was "?>" (example).
In similar cases I do get a parse error:
<?php
...
152
votes
9answers
106k views
How to 'insert if not exists' in MySQL?
I started by googling, and found this article which talks about mutex tables.
I have a table with ~14 million records. If I want to add more data in the same format, is there a way to ensure the ...
150
votes
7answers
46k views
How to create a simple 'Hello World' module in Magento?
How can the following be accomplish in Magento?
Display a "Hello World" message using a controller/view/model approach. So, if I went to http://mysite.com/myController it would show the string ...
145
votes
19answers
4k views
Cached, PHP generated Thumbnails load slow: How to find problem/solution from Waterfall graphs?
Question Part A ▉ (100 bountys, awarded)
Main question was how to make this site, load faster. First we needed to read these waterfalls. Thanks all for your suggestions on the waterfall readout ...
144
votes
13answers
83k views
How do I catch a PHP Fatal Error
I can use set_error_handler() to catch most PHP errors, but it doesn't work for fatal (E_ERROR) errors, such as calling a function that doesn't exist. Is there another way to catch these errors?
I am ...
141
votes
0answers
46k views
Robust and Mature HTML Parser for PHP [duplicate]
Are there any robust and mature HTML parsers available for PHP? A quick skimming of PEAR didn't turn anything up (lots of classes for generating HTML, not so much for consuming), and Google taught me ...
140
votes
5answers
83k views
Sort multidimensional Array by Value (2) [duplicate]
Possible Duplicate:
How do I sort a multidimensional array in php
How can I sort this array by the value of the "order" key? Even though the values are currently sequential, they will not ...
140
votes
10answers
231k views
Send email using GMail SMTP server from PHP page
I am trying to send an email via GMail's SMTP server from a PHP page but I get this error:
authentication failure [SMTP: SMTP server does no support authentication (code: 250, response: ...
137
votes
16answers
19k views
What is the best way to stop people hacking the PHP-based highscore table of a Flash game
I'm talking about an action game with no upper score limit and no way to verify the score on the server by replaying moves etc.
What I really need is the strongest encryption possible in Flash/PHP, ...
137
votes
13answers
86k views
Pass a PHP string to a Javascript variable (and escape newlines)
What is the easiest way to encode a PHP string for output to a Javascript variable?
I have a PHP string which includes quotes and newlines. I need the contents of this string to be put into a ...