0
votes
How do you handle templates for MVC websites? [PHP]
Here's a simplified version of how I do templates with my current project, if it's any use:
class Template {
var $pagename = 'index';
function __construct() {
$this …
1
vote
Best way to suppress php errors on production servers
The best way? Fix the errors!
If you need a quick temporary solution then it's OK to turn display_errors off, but make sure you're logging them somewhere, because that setting will make ser …
0
votes
What is the best way to insert HTML via PHP ?
Something I wish I'd known when I first started doing PHP: Keep your heavy-lifting program code as far away from your HTML output as possible. That way they both stay in large, fairly contiguous, r …
0
votes
What’s quicker, an array lookup (including array build) or an IF stack?
If you've got thousands of entries, an array lookup will win hands down. The associative array might be a bit slow, but finding an array key is much faster than doing thousands of if() …
0
votes
How do I format a PHP include() absolute (rather than relative) path?
The tilde is interpreted as a special character by the shell, so using it inside PHP code won't work regardless of OS.
If you're trying to access something relative to a user home directory …
3
votes
How can I have over loaded constructor in Php5?
If you have a good reason to want to keep the function arguments in that order, do something like this:
function __construct()
{
switch ( func_num_args() ) {
case 1:
…
1
vote
Dealing with timezones in PHP
You could try forcing MySQL to use UTC everywhere using SET time_zone.
Unfortunately …
0
votes
Is $_SERVER[REQUEST_METHOD] manipulable?
REQUEST_METHOD isn't limited to POST and GET though - you also need to handle HEAD (IIRC PHP will terminate the script at the first sign of output when it sees that header) and (on unlikely setups) …
2
votes
Should I use PHP or Perl for massaging my data and storing/retrieving it with MySQL?
Perl's DBI is very similar to PHP's PDO or object-oriented mysqli, but if you've never used either now might be a good time to learn one...
…
0
votes
Default Number of Decimal Places to Output in PHP
Just to rule out other possible causes: Where are the numbers coming from? Does it do this with literal values?
It doesn't seem likely that the precision setting alone could cause this. Che …
1
vote
mm/dd/yyyy format to epoch with PHP
if ( ! preg_match('#\d{2}/\d{2}/\d{4}#', $_POST['date']) ) {
// complain about invalid input
}
list($m, $d, $y) = explode('/', $_POST['date']);
$timestamp = mktime(0, 0, 0, $m, $d, $y) …
0
votes
Better support for CURL with PHP and Linux
If you don't mind going into really low level stuff, you could send pipelined raw HTTP 1.1 requests using the socket functions.
It'd help to know where the bottleneck is in what you're curr …
1
vote
Smarty benchmark, anyone?
Smarty generates PHP code for all its template files when they're first used, provided you have it set up correctly, and uses them when possible instead of parsing the templates again.
I us …
1
vote
Named parameters, caching and PDO
If you're using PDO_MySQL, it rewrites prepared statements into raw SQL on its own before the server even sees them, unless you set PDO::ATTR_EMULATE_PREPARES to false.
…
0
votes
Do you prefer functioning or including within one php file?
The thing I'm working on has one included file at the top of every page that contains all the global functions and database setup stuff. It works as-is but I'm now moving the functions into separat …
