3
votes
4answers
325 views
How evil is $_REQUEST and what are some acceptable Band-Aid countermeasures?
I've come across a couple of popular PHP-related answers recently that suggested using the superglobal $_REQUEST, which I think of as code smell, because it reminds me of registe …
4
votes
PHP frameworks for simplifying CRUD
Of the Rails/Django-style frameworks people are mentioning, Symfony is my favorite. It can use either Doctrine or Propel (which sgherig m …
0
votes
Defining class methods in PHP
No, as everyone has said, it is not strictly possible.
However, you can do something like this to e …
5
votes
What’s the best way to run Wordpress on the same domain as a Rails application?
Actually, since you're using Nginx, you're already in great shape and don't need Apache.
You can run PHP through fastcgi (there are examples of how to do this …
3
votes
Which language is most like PHP?
Well, Perl is the scripting language that's probably the most PHP-like. And there are a good number of Perl jobs out there and interesting projects like Mason and Catalyst.
But out of those …
6
votes
Should I mysql_real_escape_string all the cookies I get from the user to avoid mysql injection in php?
What you really need to do is not send these cookie values that are hackable in the first place. Instead, why not hash the username and password and a (secret) salt and set that as the coo …
1
vote
Multiple Inheritance in PHP
The Symfony framework has a mixin plugin for this, you might want to check it out -- even just for ideas, i …
1
vote
Validate an incoming SOAP request to the WSDL in PHP
Besides the native PHP5 SOAP libs, I can also tell you that neither the PEAR nor Zend SOAP libs will do schema validation of messages at present. (I don't know of any PHP SOAP implementation that d …
5
votes
PHP page caching
I second Ken's rec of PEAR's Cache_Lite library, you can use it to easily cache either parts of pages or entire pages.
If …
5
votes
What do you recommend for setting up a shared server with php
Personally, while Lighttpd is OK, I would go with Nginx + FastCGI if you end up going with a lightweight webserver + FastCGI solution. I've run benchmarks and read all the code, and Nginx is an ord …
4
votes
Is it necessary in any circumstance to modify Wordpress other than writing plugins and themes?
Well, it is a bad idea only in that it means you are now responsible for maintaining an internal defacto fork ... every time WordPress releases an update, you have to do a three-way diff to merge y …
2
votes
How to build large MySQL INSERT query in PHP without wasting memory
You have two issues here:
#1, there are several different ways you can compute the MD5 hash:
Do as you do and load into PHP as a string and use PHP's md5()
…
4
votes
Validating Crontab Entries w/ PHP
Hmmm, interesting problem.
If you're going to really validate it, regex isn't going to be enough, you'll have to actually parse the entry and validate each of the scheduling bits. That's be …
2
votes
How do I stop bots from incrementing my file download counter in PHP?
Godeke is right, robots.txt is the first thing to do to keep the bots from downloading.
Regarding the counting, this is really a web analytics problem. Are you not keeping your www access l …
1
vote
Whats the cleanest way to convert a 5-7 digit number into xxx/xxx/xxx format in php?
OK, people are throwing stuff out, so I will too!
number_format would be great, because it accepts a thousands separator, but it doesn't do padding zeroes like sprintf …
