3
votes
Checking if array is multidimensional or not?
For PHP 4.2.0 or newer:
function is_multi($array) {
return (count($array) != count($array, 1));
}
…
1
vote
PHP DateTime microseconds always returns 0
date_create
time: String in a format accepted by strtotime(), defaults to "now".
…
1
vote
PHP Arrays: A good way to check if an array is associative or sequential?
function is_associative($arr) {
return (array_merge($arr) !== $arr || !is_numeric(implode(array_keys($arr))));
}
…
1
vote
group collaboration open source php app
If you really want something similar to BaseCamp, you should try out ProjectPier.
If you think you'll need more community features t …
4
votes
Where can I find a free, lightweight YUI-like compressor for PHP?
Compressing JavaScript has benefits because the script has to be sent over the Net to the client before it can be interpreted -- the smaller the file size, the faster it reaches the end user. PHP i …
4
votes
datetime vs timestamp?
I always use DATETIME fields for anything other than row metadata (date created or modified).
As mentioned …
3
votes
Why CakePHP doesn’t support a foreign key with multiple columns
Only the CakePHP team would know for sure. One of the team, Nate Abdele, said this about multi-column prim …
1
vote
What’s wrong with my MySQL query?
Add a multi-column index to table4 based on the content_type, value_type and function columns.
Your query isn't selecting all the columns …
2
votes
How would I fix the last day of the month errors that result with this php code?
Use 1 instead of date('d') in your code; however, any time you see duplicated code, where only a number changes, you should be thinking about loops:
<?php
for ($i = 0; $i < 12 …
2
votes
Figure out why this simple comparison is showing not equal in PHP
Try converting and rounding before you compare them:
$storedTotal = round(floatval($storedTotal), 2);
$calculatedTotal = round(floatval($calculatedTotal), 2);
if ($stored …
0
votes
Any way I can share a information within 2 difference domain?
You could either $_POST or $_GET from one domain to the other, or read and write from the filesystem or a shared database.
…
1
vote
PHP preg_replace problem
This should do the job for the anchor tags, at least:
<?php
function prepend_proxy($matches) {
$url = 'http://example.prefix';
$prepend = $matches[2] ? $matches[2] : $ur …
