2
votes
PHP Session Security
The main problem with PHP sessions and security (besides session hijacking) comes with what environment you are in. By default PHP stores the session data in a file in the OS's temp directory. With …
3
votes
Connect PHP to an AS/400
Have you looked at connecting to the server using unixODBC? If I remember correctly it has support for IBM DB2 and compiles on OpenBSD. Check o …
15
votes
Best way to implement unit testing in PHP
There is a PHPUnit testing framework that is developed in native PHP and used by projects such as the …
18
votes
How do you debug PHP scripts?
I follow the article at http://dev.piwik.org/trac/wiki/HowToSetupDevelopmentEnvironmentWindows to …
5
votes
PHP + MYSQLI: Variable parameter/result binding with prepared statements.
In PHP you can pass a variable number of arguments to a function or method by using call_user_func_array. An exampl …
1
vote
Is there and Easy way to convert C# classes to PHP
It is entirely possible to write a PHP application almost entirely in an object-oriented methodology. You will have to write some procedural code to create and launch your first object but beyond t …
2
votes
What is the point of interfaces in PHP?
The concept is useful all around in object oriented programming. To me I think of an interface as a contract. So long my class and your class agree on this method signature contract we can "interfa …
8
votes
php md5 algorithm that gives same result as c#
The issue is PHP's md5() function by default returns the hex variation of the hash where C# is returning the raw byte output that must then be made text safe with base64 encoding. If y …
1
vote
PHP Class Name Conflict
Namespaces for PHP will be introduced in PHP 5.3. Currently your best bet is to manually prefix the class names for each framework.
…
1
vote
How to do long time batch processes in PHP ?
The PEAR has a package called Benchmark has a Benchmark_Profiler class that can h …
3
votes
PostgreSQL: best way to create new/duplicate existing tables every year
PostgreSQL has a feature that lets you create a table that inherits fields from another table. The documentation can be found in …
0
votes
[MySQL] Adjusting for timezones and DST
MySQL stores its native date/time types as UTC on the server and converts them to other timezones on a per-connection basis. If a connection does not specify a timezone it tries to use the servers …
