Search Results

0
votes

How do you convert 00:00:00 to hours, minutes, seconds in PHP?

Why bother with regex or explodes when php handles time just fine? $sTime = '04:20:00'; $oTime = new DateTime($sTime); $aOutput = array(); if ($oTime->format('G') > 0) { …
4
votes

How to convert multiple <br/> tag to a single <br/> tag in php

Mine is almost exactly the same as levik's (+1), just accounting for some dif …
4
votes

What is the best way to profile PHP code

take a look into xdebug, which allows in-depth profiling. And …
0
votes

How do I find the mime-type of a file with php?

I haven't used it, but there's a PECL extension for getting a file's mimetype. The official documentation for it is in …
1
vote

Format mysql datetime with php

If using php5, you can also try $oDate = new DateTime($row->createdate); $sDate = $oDate->format("m/d/y g:i A"); …
7
votes

Is there a php library for email address validation?

Cal Henderson (of Flickr) wrote an RFC822 compliant email addre …
0
votes

Calling Python in PHP

There's also a PHP extension: Pip - Python in PHP, which I've never tried but had it bookmarked for just such an occasion …
5
votes

What is the simplest way to format a timestamp from sql in php?

I tend to do the date formatting in SQL, like Aron's …
1
vote

Getting the first item out of a For loop

If you're using a plain for loop, I'd recommend just acting on the 1st item and then looping through the rest as tvanfosson …
4
votes

How does PHP do recursive function calls?

I'm not sure I understand the nesting in your example, as the example doesn't demonstrate a purpose behind nesting. Your example input could very easily be 'This is my test {@a} {@ …
5
votes

I Want To Optimally Check Defined Constants in PHP

As long as you don't mind using quotes on your constants, you can do this: function C($constant) { return defined($constant) ? constant($constant) : 'Undefined'; } echo C('MESS …
3
votes

What Code Igniter authentication library is best?

I tried Redux. Wasn't a fan. In the end, I ended up making a CI wrapper for Zend_Auth, which works like a charm. …
2
votes

PHP Arrays - Remove duplicates ( Time complexity )

Gabriel's answer has some …
1
vote

PHP file upload problem

My first thought was filesize issues. In the php.ini, if the post_max_size or upload_max_filesize are too small, you can end up with similar results - where the file just seems to disappear. You …
0
votes

Need help with associative arrays

There's no functional difference between an ajax call and a regular call from a browser. So, to answer... $formData = getFormData(); echo $formData['name']; …