User Ant P - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T08:27:32Zhttp://stackoverflow.com/feeds/user/42092http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1534127/pluralize-in-php/1534187#15341874Answer by Ant P for pluralize in PHPAnt P2009-10-07T21:06:03Z2009-10-07T21:06:03Z<p>You might want to look at the <a href="http://php.net/gettext" rel="nofollow">gettext extension</a>. More specifically, it sounds like <code>ngettext()</code> will do what you want: it pluralises words correctly as long as you have a number to count from.</p>
<pre><code>print ngettext('odor', 'odors', 1); // prints "odor"
print ngettext('odor', 'odors', 4); // prints "odors"
print ngettext('%d cat', '%d cats', 4); // prints "4 cats"
</code></pre>
<p>You can also make it handle translated plural forms correctly, which is its main purpose, though it's quite a lot of extra work to do.</p>
http://stackoverflow.com/questions/1351428/is-it-legal-to-branch-an-open-source-project-that-has-gone-commercial/1351434#13514341Answer by Ant P for Is it legal to branch an open-source project that has gone commercial?Ant P2009-08-29T13:24:10Z2009-08-29T13:24:10Z<p>It depends on the license, but GPL2 is fair game - the Linux kernel did it with OSS3 for example.</p>
http://stackoverflow.com/questions/1333434/how-to-call-a-function-in-php-after-10-seconds-of-the-page-load-not-using-html/1334079#13340791Answer by Ant P for how to call a function in PHP after 10 seconds of the page load (Not using HTML)Ant P2009-08-26T11:32:33Z2009-08-26T11:32:33Z<p>If you really must do it within the same PHP script, the cleanest way would be a <a href="http://php.net/pcntl%5Ffork" rel="nofollow">fork</a>.</p>
<p>Or if that's not possible, here's a really bad hackish way of doing it:</p>
<pre><code><?php
ignore_user_abort(1);
page_output_stuff();
// ...
flush();
sleep(10);
do_something_after_script();
?>
</code></pre>
<p>If you're doing this to output stuff to the user after a delay, the above <em>can</em> be made to work but it's a really ugly way of doing it. Just use AJAX instead.</p>
http://stackoverflow.com/questions/1333962/browse-bazaar-or-cvs-svn-git-repository-with-gui/1334039#13340390Answer by Ant P for Browse bazaar (or CVS/SVN/Git) repository with GUI?Ant P2009-08-26T11:24:05Z2009-08-26T11:24:05Z<p>I'm using <a href="http://sourceforge.net/projects/qgit/" rel="nofollow">QGit</a>, which is a bit fiddly but gets the job done. I think I've seen ports of it to other VCS around too.</p>
http://stackoverflow.com/questions/1171749/what-does-a-transaction-around-a-single-statement-do/1171979#11719791Answer by Ant P for What does a transaction around a single statement do?Ant P2009-07-23T14:02:13Z2009-07-23T14:02:13Z<p>One possible excuse is that that single statement could cause a bunch of other SQL to run via triggers, and that they're protecting against something going bad in there, although I'd expect any DBMS to have the common sense to use implicit transactions in the same way already.</p>
<p>The other thing I can think of is that some APIs allow you to disable autocommit, and the code's written just in case someone does that.</p>
http://stackoverflow.com/questions/1162665/php-class-call-external-class/1162678#11626783Answer by Ant P for php class call external classAnt P2009-07-22T01:56:26Z2009-07-22T01:56:26Z<p>You could call <a href="http://uk2.php.net/set%5Ferror%5Fhandler" rel="nofollow"><code>set_error_handler</code></a> at the start of that function and <code>restore_error_handler</code> at the end of it.</p>
http://stackoverflow.com/questions/1156054/whats-the-best-way-to-send-javascript-array-to-php-script-using-get/1156319#11563191Answer by Ant P for What's the best way to send JavaScript array to PHP script using GET?Ant P2009-07-20T22:27:41Z2009-07-20T22:27:41Z<p>If it's just a simple flat array you don't need to do anything fancy, as PHP has a built in feature to <a href="http://uk2.php.net/manual/en/faq.html.php#faq.html.arrays" rel="nofollow">parse array syntax</a> from GET/POST variable names. Rough example below.</p>
<p>Javascript side:</p>
<pre><code>// Do the parameter-building however you want, I picked the short/messy way
var arrayvalues = [1, 2, 'a'];
var querystring = "var[]=" + arrayvalues.join("&var[]=");
querystring += "&var[something]=abcdef";
// querystring is now "var[]=1&var[]=2&var[]=a&var[something]=abcdef"
</code></pre>
<p>PHP side:</p>
<pre><code>var_dump($_POST);
// Remember to validate the data properly!
if ( is_array($_POST['var']) ) {
count($_POST['var']);
echo $_POST['var']['something'];
array_map('do_something_interesting', $_POST['var']);
}
</code></pre>
http://stackoverflow.com/questions/1149460/does-php-have-an-equivalent-to-the-operator/1150061#11500611Answer by Ant P for Does PHP have an equivalent to the ||= operator?Ant P2009-07-19T14:49:52Z2009-07-19T14:49:52Z<p>I came up with this function which has a side benefit of shutting up useless undefined variable notices. It's close enough to Javascript's behaviour for me:</p>
<pre><code>function default_value(&$var, $default) {
return isset($var) ? $var : $default;
}
$want_something = default_value($_POST['mightbeunset'], false);
</code></pre>
http://stackoverflow.com/questions/718851/what-are-peoples-thoughts-about-relcanonical-is-anyone-using-it/719000#7190001Answer by Ant P for What are people's thoughts about rel="canonical"? Is anyone using it?Ant P2009-04-05T14:28:10Z2009-04-05T14:28:10Z<p>I'm already using the Content-Location header correctly. I won't be in any hurry to implement Google's new "standard".</p>
http://stackoverflow.com/questions/631671/is-there-a-way-to-try-and-load-a-file-in-html-javascript-and-have-a-fallback-if-i/631749#6317490Answer by Ant P for Is there a way to try and load a file in HTML/JavaScript and have a fallback if it doesn't load?Ant P2009-03-10T18:51:47Z2009-03-11T18:38:31Z<p>(<strong>Edited: First attempt was wrong</strong>)</p>
<pre><code><script src="some/remote/script.js">
// Set a flag in the above script
</script>
<script>
if ( ! flag ) {
// This code runs if script.js fails to load for some reason
}
</script>
<object data="http://cdn/file.png" type="image/png">
<!-- You can nest objects in here too -->
<img src="http://local/file.png" alt="Fallback Image"/>
</object>
</code></pre>
<p>So I suppose you could use the script method for everything; in the event the remote files fail to load, use the fallback code to change all paths to point to your backup server.</p>
http://stackoverflow.com/questions/630612/php-invalid-character-breaks-html/630632#6306322Answer by Ant P for PHP: Invalid character breaks htmlAnt P2009-03-10T14:56:46Z2009-03-10T18:33:41Z<p>Try <code>filter_var($string, FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_LOW)</code>.</p>
<p><strong>Edit:</strong> Since 5.1.2 doesn't have filter_var, you could try this (which is almost the same thing):</p>
<pre><code>preg_replace('/\p{Cc}/u', '', $string);
</code></pre>
http://stackoverflow.com/questions/628229/what-is-considered-average-request-processing-time/628247#6282471Answer by Ant P for what is considered average request processing time?Ant P2009-03-09T22:16:37Z2009-03-09T22:16:37Z<p>Anything slower than <a href="http://en.wikipedia.org/wiki/Network%5Fperformance" rel="nofollow">8 seconds</a> is generally considered too long. 1-2 seconds is average for most heavy websites.</p>
http://stackoverflow.com/questions/627661/how-can-i-output-utf-8-from-perl/627678#6276780Answer by Ant P for How can I output UTF-8 from Perl?Ant P2009-03-09T19:36:04Z2009-03-09T19:36:04Z<p>Redirect the output to a text file and try that in an editor. If it displays fine there then your terminal's at fault.</p>
http://stackoverflow.com/questions/627351/implementing-autosave-w-o-disruption/627559#6275590Answer by Ant P for Implementing autosave w/o disruptionAnt P2009-03-09T18:54:26Z2009-03-09T18:54:26Z<p>How about this?</p>
<p>Use the callback idea but have it run every 10 inputs in addition to every 60 seconds. With a time-based autosave, there's a problem that the amount of stuff that gets lost is proportional to how fast the user can work.</p>
<p>If you want to go a step further, have it save a partial undo log to disk after every change in addition to the full save. That way, the worst thing that can happen from a crash is losing the last input stroke.</p>
http://stackoverflow.com/questions/617646/is-this-wrapper-for-pdo-good-code-are-there-any-potential-problems/624913#6249131Answer by Ant P for Is this wrapper for PDO 'good code' ? Are there any potential problems?Ant P2009-03-09T03:21:17Z2009-03-09T03:21:17Z<p>I went the other way and made a class that extends PDO with a bunch of wrapper functions around <code>prepare()</code>/<code>execute()</code>, and it's much nicer than the built in functions (though that's a bit subjective...). </p>
<p>One other thing: you should set <code>PDO::ATTR_EMULATE_PREPARES</code> to <code>false</code> unless you're using a really old version of mysql (<=4.0). It defaults to <code>true</code>, which is a huge headache and causes things to break in obscure ways... which I'm guessing is the reason you've got a huge wrapper around <code>bindParam()</code> in the first place.</p>
http://stackoverflow.com/questions/624580/why-arent-checkboxes-radiobuttons-and-options-resetable-if-they-were-set-by-php/624602#6246022Answer by Ant P for Why aren't checkboxes/radiobuttons and options resetable if they were set by PHP?Ant P2009-03-09T00:09:34Z2009-03-09T00:09:34Z<p>If you're using "View Source" and the script is setting aggressive <code>no-cache</code> headers, it's possible that you're not seeing the source code of what's being displayed. Try it in something that shows the live DOM, like Firebug or the DOM Inspector.</p>
http://stackoverflow.com/questions/624120/is-it-possible-to-speed-up-a-recursive-file-scan-in-php/624156#6241563Answer by Ant P for Is it possible to speed up a recursive file scan in PHP?Ant P2009-03-08T19:40:29Z2009-03-08T19:40:29Z<p>Before you start changing anything, <strong>profile your code</strong>.</p>
<p>Use something like <a href="http://www.xdebug.org/" rel="nofollow">Xdebug</a> (plus kcachegrind for a pretty graph) to find out where the slow parts are. If you start changing things blindly, you won't get anywhere.</p>
<p>My only other advice is to use the SPL directory iterators as posted already. Letting the internal C code do the work is almost always faster.</p>
http://stackoverflow.com/questions/620602/php-memory-limit/622770#6227701Answer by Ant P for PHP memory limitAnt P2009-03-07T23:58:01Z2009-03-07T23:58:01Z<p>The memory limiter in PHP is optional; if you disable it at compile time there's no limit at all.</p>
<p>In 5.0.4 it's disabled unless you explicitly asked for it at compile time, the reason being that the memory limiter was <a href="http://php.net/manual/en/migration52.other.php" rel="nofollow">useless until 5.2</a> and didn't count a lot of things it should have done, including things like the mysql functions. It's turned <em>on</em> from 5.2.1 now that they learned to count.</p>
<p>If in doubt, disable it or make sure you update the config file to use the new default. Leaving it at 8MB and upgrading to 5.2.8 will almost definitely cause problems.</p>
http://stackoverflow.com/questions/621140/for-a-large-project-what-planning-should-be-done-before-coding-and-how-should-it/621162#6211620Answer by Ant P for For a large project, what planning should be done before coding and how should it be approached?Ant P2009-03-07T02:11:51Z2009-03-07T02:11:51Z<p>If you work for the same company as this person, start by getting everything in writing so you aren't the one to take the fall when the inevitable happens...</p>
http://stackoverflow.com/questions/614671/commands-out-of-sync-you-cant-run-this-command-now1/614741#6147414Answer by Ant P for Commands out of sync; you can't run this command now1Ant P2009-03-05T13:24:45Z2009-03-05T13:24:45Z<p>You can't have two simultaneous queries because mysqli uses unbuffered queries by default (for prepared statements; it's the opposite for vanilla <code>mysql_query</code>). You can either fetch the first one into an array and loop through that, or tell mysqli to buffer the queries (using <a href="http://uk2.php.net/manual/en/mysqli-stmt.store-result.php" rel="nofollow"><code>$stmt->store_result()</code></a>).</p>
<p>See <a href="http://php.net/mysqli%5Fquery" rel="nofollow">here</a> for details.</p>
http://stackoverflow.com/questions/499803/catch-blank-including-all-whitespace-form-submissions/499806#4998069Answer by Ant P for Catch blank (including all-whitespace) form submissionsAnt P2009-01-31T23:41:53Z2009-03-05T12:23:14Z<p><code>trim()</code> the text inputs. You can do that easily like this:</p>
<pre><code>// get input vars and trim space
$callback = array('filter' => FILTER_CALLBACK, 'options' => 'trim');
$fields = filter_input_array(INPUT_POST, array(
'headline' => $callback,
'text' => $callback,
'forum_id' => $callback,
));
// check for empty fields by counting how many are set
if ( count($fields) != count(array_filter($fields)) ) {
// something was unset
}
</code></pre>
http://stackoverflow.com/questions/613173/image-alt-attribute-best-practices/613192#6131927Answer by Ant P for Image alt attribute best practicesAnt P2009-03-05T00:51:18Z2009-03-05T00:51:18Z<p>The HTML 5 spec has a <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/embedded-content-0.html#the-img-element" rel="nofollow">huge section</a> on this.</p>
<p>Basically, the <code>alt</code> attribute should be what would be there as text if you hadn't used an image at all. If your image is purely decorative, you can use <code>alt=""</code>. A description goes in the <code>title</code> attribute.</p>
http://stackoverflow.com/questions/612115/how-do-i-run-a-php-script-through-ssh/612214#6122140Answer by Ant P for How do I run a php script through SSH?Ant P2009-03-04T20:09:19Z2009-03-04T20:09:19Z<p>In addition to what everyone else said, you'll probably want to use <code>nohup</code> as well.</p>
<pre><code>ssh user@host "nohup php script.php"
</code></pre>
<p>That way it'll keep running even if your <em>ssh</em> connection drops. You could also use <code>screen</code> in place of <code>nohup</code> if you want.</p>
http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/611595#6115958Answer by Ant P for How can I impress people with Perl's capabilities?Ant P2009-03-04T17:20:54Z2009-03-04T17:20:54Z<p>Show them <a href="http://www.frozen-bubble.org/" rel="nofollow">Frozen Bubble</a>.</p>
http://stackoverflow.com/questions/611364/what-does-this-line-of-javascript-do/611398#6113982Answer by Ant P for What does this line of javascript do?Ant P2009-03-04T16:37:25Z2009-03-04T16:37:25Z<p>The + is to typecast it to a number as others have said. It's needed there because form inputs are always string values, and adding a string to another variable concatenates them together into a new string, even if the string looks like a number.</p>
http://stackoverflow.com/questions/609118/what-is-the-best-open-source-application-written-in-php-to-reference-for-good-co/609124#6091244Answer by Ant P for What is the best open source application written in PHP to reference for 'good code'?Ant P2009-03-04T03:33:15Z2009-03-04T03:33:15Z<p>Take a look at the <a href="http://framework.zend.com/" rel="nofollow">Zend Framework</a>; it's huge, but I've picked up some useful tips just from reading their coding style guide and their reasoning behind it.</p>
http://stackoverflow.com/questions/608940/building-a-large-form-need-advice/609066#6090660Answer by Ant P for Building a large form, need adviceAnt P2009-03-04T02:40:39Z2009-03-04T02:40:39Z<p>You can add Javascript form validation to make it more user-friendly, but one thing you should never skimp on is the server-side validation... which has historically been awful in PHP.</p>
<p>One thing that'll make your life a million times easier here is the <a href="http://php.net/filter" rel="nofollow">filter library</a>, especially <code>filter_input_array()</code> since you can build the input validation programmatically instead of having to copy and paste a lot of checks. It takes some getting used to, but it's much, much better than the old way of doing things.</p>
http://stackoverflow.com/questions/608445/issues-with-http-compression/608990#6089901Answer by Ant P for Issues with HTTP Compression?Ant P2009-03-04T01:57:20Z2009-03-04T01:57:20Z<p>As long as you respect the client's <code>Accept-Encoding</code> header properly (i.e. don't serve compressed files to clients that can't decompress them), you shouldn't have a problem.</p>
<p>Oh, and remember that <a href="http://www.codinghorror.com/blog/archives/001178.html" rel="nofollow">deflate is faster than gzip</a>.</p>
http://stackoverflow.com/questions/608925/is-using-namespaces-to-partition-a-project-bad-practice/608975#6089752Answer by Ant P for Is using namespaces to partition a project bad practice?Ant P2009-03-04T01:50:44Z2009-03-04T01:50:44Z<p>If they're all string-related functions, there's nothing wrong with making them static methods.</p>
<p>A namespace would be the better choice if you've got a bunch of global functions and/or variables which you don't want cluttering up global scope, but which wouldn't make sense in a class. (I've got a class in my own code which would be a lot better suited to a namespace).</p>
<p>It's good practice to stick everything in some sort of container if there's any chance your code will get reused elsewhere, so you don't scribble on other people's global vars...</p>
<p>As for your edit there:</p>
<ul>
<li>Namespaces are tied to the file they're defined in, IIRC. Not sure how this affects included files from there but I'd guess they aren't inherited.</li>
<li>You can call the global scope by saying <code>::trim()</code>.</li>
</ul>
http://stackoverflow.com/questions/608856/magic-numbers-vs-named-constants/608907#6089071Answer by Ant P for Magic numbers vs named constantsAnt P2009-03-04T01:18:04Z2009-03-04T01:18:04Z<blockquote>
<pre><code>$x = time() + HOUR;
$y = time() + DAY;
$z = time() + WEEK;
</code></pre>
</blockquote>
<p>How about magic strings? I tend to do things like this:</p>
<pre><code> $x = strtotime('now + 1 hour');
$y = strtotime('now + 1 day');
$z = strtotime('now + 1 week');
</code></pre>
<p>Yes, it probably runs fractionally slower. But in the greater scheme of things, <em>does it really matter?</em></p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/1067935#1067935Comment by Ant P on What was your first home computer?Ant P2009-10-09T23:34:07Z2009-10-09T23:34:07ZWow, I think I had that! It lasted about a week or two before I accidentally stood on it one day and broke the screen. :(http://stackoverflow.com/questions/1439696/pdo-acts-different-on-two-very-similar-queriesComment by Ant P on PDO acts different on two -very- similar queriesAnt P2009-09-17T18:45:03Z2009-09-17T18:45:03ZHave you tried checking <code>$sql->errorInfo()</code> after the query fails? A lot of the time it'll point straight to the problem.http://stackoverflow.com/questions/1409735/our-subversion-server-has-a-new-ip-address-now-what/1409741#1409741Comment by Ant P on Our subversion server has a new IP address - now what?Ant P2009-09-11T08:53:52Z2009-09-11T08:53:52ZI'd suggest you also give the server a name in /etc/hosts and use that instead - at least if the IP changes again you won't have to reconfigure everything.http://stackoverflow.com/questions/249984/php-framework-decision-analysis-paralysisComment by Ant P on PHP Framework Decision - Analysis paralysis!Ant P2009-03-11T20:00:10Z2009-03-11T20:00:10ZNo, he just likes bullying new users.http://stackoverflow.com/questions/631671/is-there-a-way-to-try-and-load-a-file-in-html-javascript-and-have-a-fallback-if-i/631749#631749Comment by Ant P on Is there a way to try and load a file in HTML/JavaScript and have a fallback if it doesn't load?Ant P2009-03-11T18:34:28Z2009-03-11T18:34:28ZGuess I remembered wrong then.http://stackoverflow.com/questions/629340/why-is-there-a-double-standard-regarding-non-programming-related-questions-at-so/631647#631647Comment by Ant P on Why is there a double standard regarding non-programming related questions at SO?Ant P2009-03-10T22:21:43Z2009-03-10T22:21:43ZYes: Stalking a user and editing every single post of theirs with worthless two-character edits, pushing every legitimate question off the front page. It's an insult to the people who actually provide the value in this site - the ones that answer the questions. Nobody needs a dick waving a rulebook.http://stackoverflow.com/questions/630612/php-invalid-character-breaks-html/630632#630632Comment by Ant P on PHP: Invalid character breaks htmlAnt P2009-03-10T18:36:05Z2009-03-10T18:36:05ZI think they have a PECL version of the filter extension for 5.1, but I've added another answer to the post anyway...http://stackoverflow.com/questions/624580/why-arent-checkboxes-radiobuttons-and-options-resetable-if-they-were-set-by-php/624602#624602Comment by Ant P on Why aren't checkboxes/radiobuttons and options resetable if they were set by PHP?Ant P2009-03-09T00:24:15Z2009-03-09T00:24:15ZIt sounds like you're misunderstanding what the reset button is for. All it does is put form fields back to their state when the page loaded, it won't clear them all. If you want that you'll need javascript.http://stackoverflow.com/questions/621140/for-a-large-project-what-planning-should-be-done-before-coding-and-how-should-it/621162#621162Comment by Ant P on For a large project, what planning should be done before coding and how should it be approached?Ant P2009-03-07T17:35:43Z2009-03-07T17:35:43ZMy post makes more sense when read as a response to the question originally asked.http://stackoverflow.com/questions/262271/where-did-foo-and-bar-come-fromComment by Ant P on Where did "Foo" and "Bar" come from?Ant P2009-03-07T01:50:11Z2009-03-07T01:50:11ZLooks like none of fmsf's posts are safe from RichB's bullying.http://stackoverflow.com/questions/618323/table-layout-equivalent-using-divs/619223#619223Comment by Ant P on Table layout equivalent using DIVsAnt P2009-03-06T19:07:29Z2009-03-06T19:07:29ZI'm not sure this is possible, at least not without Javascript or proprietary CSS...http://stackoverflow.com/questions/599745/most-daunting-error-message/599902#599902Comment by Ant P on Most daunting error message?Ant P2009-03-06T09:52:48Z2009-03-06T09:52:48ZI can get PHP to segfault more often than I'd like...http://stackoverflow.com/questions/614671/commands-out-of-sync-you-cant-run-this-command-now1/614741#614741Comment by Ant P on Commands out of sync; you can't run this command now1Ant P2009-03-05T13:59:15Z2009-03-05T13:59:15ZI agree, mysqli is a bit brain-damaged. It <i>does</i> do the right thing with the PDO mysql driver though.http://stackoverflow.com/questions/476831/what-cant-be-done-in-css-yet/479411#479411Comment by Ant P on What can't be done in CSS yet?Ant P2009-03-05T13:16:29Z2009-03-05T13:16:29ZThose are some great points. I know most of them are possible in CSS3 but still, this is exactly the sort of thing I was looking for.http://stackoverflow.com/questions/369758/how-to-trim-whitespace-from-bash-variable/369795#369795Comment by Ant P on How to trim whitespace from bash variable?Ant P2009-03-05T12:36:09Z2009-03-05T12:36:09ZThey're regex, just a strange dialect.