1
vote
3answers
74 views
How to combine the keys and values of an array in PHP
Say I have an array of key/value pairs in PHP:
array( 'foo' => 'bar', 'baz' => 'qux' );
What's the simplest way to transform this to an array that looks like …
0
votes
2answers
234 views
How to pass variable number of arguments to a PHP function
I have a PHP function that takes a variable number of arguments (using func_num_args() and func_get_args()), but the number of arguments I want to pass the function depend …
0
votes
4answers
102 views
Escaping a literal <?php and <? in a PHP script
I am templatizing my php.ini using PHP. I have a script to set up a development environment by generating httpd.conf, apachectl, and php.ini from templates using a CLI PHP script. Unfortunately the …
5
votes
How does MediaWiki compose the image paths?
The accepted answer is incorrect:
The MD5 sum of a string is 32 hex characters (128 bits), not 16
The file path is calculated from the MD5 sum of the filename, not the conten …
