11
votes
What is the canonical way to determine commandline vs. http execution of a PHP script?
use php_sapi_name(). It returns a string, and everything other than "cli" should mean your …
3
votes
php output showing little black diamonds with a question mark
If you see that character (� U+FFFD "REPLACEMENT CHARACTER") it usually means that the text itself is encoded in some form of single byte encoding but interpreted in one of the unicode encodings (U …
1
vote
Putting a value on the load of a windows system
Don't use load...
The system load is not a good indicator in this case. On Unix it essentially tells you, how many processes are ready and waiting to be executed at the moment. But since …
2
votes
A respectable PHP Datetime parser.
If you know in what format the time is represented in the string, you can use strptime() together with the appropriate format string to parse it. It will at least report an error when …
3
votes
0
votes
Installing PHP extensions on shared hosting
dl() will not help you either, since it only loads libraries from certain paths, and those paths are usually only writable by the system administrators for security reasons.
I …
2
votes
how could I combine these regex rules?
Since the ^ does not have to stand at the beginning of the RE, you can use grouping and | to combine those REs.
If you don't want re-insert the whitespace you capt …
