User Ciaran McNulty - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T04:44:33Zhttp://stackoverflow.com/feeds/user/34024http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1686603/problem-applying-a-where-condition-on-an-aliased-response/1688280#16882800Answer by Ciaran McNulty for problem applying a WHERE condition on an aliased responseCiaran McNulty2009-11-06T15:21:46Z2009-11-06T15:21:46Z<p>Use HAVING instead of WHERE</p>
<pre><code>SELECT if (pc.iColourPrice != 0, pc.iColourPrice, p.pPrice) as pPrice
FROM pc [+ JOINS]
WHERE [ + conditions]
HAVING pPrice BETWEEN 50 AND 70
</code></pre>
<p>Having happens in a sense after the select, and after any GROUP BY clauses, so can use the aliases.</p>
http://stackoverflow.com/questions/1672976/passing-additional-parameters-to-the-zend-partialloop-view-helper0Passing additional parameters to the Zend partialLoop View HelperCiaran McNulty2009-11-04T10:38:09Z2009-11-04T11:48:10Z
<p>In a Zend view I can apply a partial template to an iterable element as follows:</p>
<pre><code>$this->partialLoop('template.phtml', $iterable);
</code></pre>
<p>However inside the template, only the elements of the $iterable are available, is there another way of passing extra data to the partial?</p>
http://stackoverflow.com/questions/1660542/detecting-file-modification-on-a-remote-smb-share-using-php1Detecting file modification on a remote SMB share using PHPCiaran McNulty2009-11-02T10:46:37Z2009-11-02T10:57:47Z
<p>I'm writing a PHP process that will run on a Unix machine that will need to monitor a remote SMB server and detect new files that are being uploaded to that box via FTP. It's unlikely I'll be able to </p>
<p>It will need to detect:</p>
<ol>
<li>New files being created</li>
<li>File upload completing</li>
<li>Files being deleted</li>
</ol>
<p>If it was an NFS share, I'd try using FAM to detect the events, but I can't see a way of doing anything equivalent?</p>
http://stackoverflow.com/questions/1624121/php-mail-piping/1624299#16242990Answer by Ciaran McNulty for PHP Mail PipingCiaran McNulty2009-10-26T11:29:30Z2009-10-26T11:29:30Z<p>You'll probably need do the following:</p>
<ol>
<li><p>Write a PHP script that's executable at the CLI (by adding a #! declaration at the top of the script that points to the PHP binary, then settings its executable permissions).</p></li>
<li><p>Get that script to read the raw email from php://stdin (file_get_contents is easiest)</p></li>
<li><p>Get that script to decode the mail in to parts, using something like PEAR::Mail::Mime::Decode or I think there's a handy Zend Framework component).</p></li>
<li><p>Read the attachment and subject from the decoded message, and store as normal</p></li>
<li><p>exit(0) at the end to tell the CLI that it was a clean exit - any other exit() status could cause a bounced email.</p></li>
</ol>
http://stackoverflow.com/questions/320716/how-much-should-a-contractor-charge-as-a-day-rate7How much should a contractor charge as a day rate?Ciaran McNulty2008-11-26T13:38:25Z2009-10-08T11:29:02Z
<p>I've spent my career in full-time employment in the UK, on an annual salary.</p>
<p>I'm interested to know how contracting rates compare to salaries, specificially how to compare the two.</p>
<p>Basically if someone would make a certain salary, what would they equivalently charge as a day rate?</p>
<p>day rate * X = annual salary</p>
<p>What is the X factor?</p>
<p><strong>Edit:</strong> Some people have suggested that the X is 365, or something like (365*5/7 - holiday), but that doesn't seem to tally with the rates charged 'in the wild'.</p>
http://stackoverflow.com/questions/1427738/removing-a-dependency-in-a-constructor-using-phpunit0Removing a dependency in a constructor using PHPunitCiaran McNulty2009-09-15T15:02:29Z2009-09-25T09:07:56Z
<p>While trying to get a legacy codebase under test, I've come across an object that does the following:</p>
<pre><code>class Foo
{
public function __construct($someargs)
{
$this->bar = new Bar();
// [lots more code]
}
}
</code></pre>
<p>Bar in this instance has a constructor that does some Bad Things e.g. connecting to a database. I'm trying to concentrate on getting this Foo class under test so changed it to something like this:</p>
<pre><code>class Foo
{
public function __construct($someargs)
{
$this->bar = $this->getBarInstance();
// [lots more code]
}
protected function getBarInstance()
{
return new Bar();
}
}
</code></pre>
<p>And have attempted to test it via the following PHPUnit test:</p>
<pre><code>class FooTest extends PHPUnit_Framework_TestCase
{
public function testInstance()
{
$bar = $this->getMock('Bar');
$foo = $this->getMock('Foo', array('getBarInstance'));
$foo->expects($this->any())
->method('getBarInstance')
->will($this->returnValue($bar));
}
}
</code></pre>
<p>However this doesn't work - the constructor of Foo() is called before my ->expects() is added, so the mocked getBarInstance() method returns a null.</p>
<p>Is there any way of unlinking this dependency without having to refactor the way the class uses constructors?</p>
http://stackoverflow.com/questions/1449935/getting-svn-revision-number-into-a-program-automatically/1454120#14541204Answer by Ciaran McNulty for Getting SVN revision number into a program automaticallyCiaran McNulty2009-09-21T11:43:56Z2009-09-21T11:43:56Z<p>I'm not sure about the Python specifics, but if put the string $Revision$ into your file somewhere and you have enable-auto-props=true in your SVN config, it'll get rewritten to something like $Revision: 144$. You could then parse this in your script.</p>
<p>There are <a href="http://svnbook.red-bean.com/en/1.1/ch07s02.html#svn-ch-7-sect-2.3.4" rel="nofollow">a number of property keywords you can use in this way</a>.</p>
<p>This won't have any overhead, e.g. querying the SVN repo, because the string is hard-coded into your file on commit or update.</p>
<p>I'm not sure how you'd parse this in Python but in PHP I'd do:</p>
<pre><code>$revString = '$Revision: 144$';
if(preg_match('/: ([0-9]+)\$/', $revString, $matches) {
echo 'Revision is ' . $matches[1];
}
</code></pre>
http://stackoverflow.com/questions/1453551/rest-user-authentication/1453677#14536770Answer by Ciaran McNulty for REST user authenticationCiaran McNulty2009-09-21T09:47:20Z2009-09-21T09:47:20Z<p>You should probably use HTTP authentication for the user auth, and so not need to do any sort of session management.</p>
http://stackoverflow.com/questions/1448251/php-url-address-for-send-script/1448323#14483231Answer by Ciaran McNulty for PHP - url-address for send-scriptCiaran McNulty2009-09-19T10:55:36Z2009-09-19T10:55:36Z<p>The simplest is to do the following:</p>
<pre><code>$params = $_GET; // make a copy of the querystring params
$params['page'] = 1; // will replace any existing 'page' parameter
echo '<a href="?'.http_build_query($params)'">Page 1</a>';
</code></pre>
http://stackoverflow.com/questions/1397182/stream-ftp-download-to-output/1398245#13982451Answer by Ciaran McNulty for Stream FTP download to outputCiaran McNulty2009-09-09T08:14:51Z2009-09-09T08:14:51Z<p>Try:</p>
<pre><code>@readfile('ftp://username:password@host/path/file'));
</code></pre>
<p>I find with a lot of file operations it's worthwhile letting the underlying OS functionality take care of it for you.</p>
http://stackoverflow.com/questions/1392154/download-then-upload-a-file-in-php/1392707#13927073Answer by Ciaran McNulty for Download then upload a file in PHPCiaran McNulty2009-09-08T08:28:00Z2009-09-08T08:28:00Z<p>Using echo(file_get_contents()) will load the file into memory first, then echo will output it to the user - there is therefore a delay before file delivery to the user starts, and you risk hitting PHP's memory limit. </p>
<p>In contrast <a href="http://php.net/readfile" rel="nofollow">readfile()</a> will serve chunks to the user as soon as they're downloaded from the remote source, then throw them away when they've been received. It will use far less memory and the download will start quicker.</p>
<pre><code>header('Content-Type: application/zip');
readfile('http://test.com/test.zip');
</code></pre>
http://stackoverflow.com/questions/1387986/php-loading-css-using-cookie-but-cookie-isnt-being-read/1388142#13881420Answer by Ciaran McNulty for PHP - Loading CSS using cookie, but cookie isn't being read?Ciaran McNulty2009-09-07T08:10:26Z2009-09-07T08:10:26Z<p>You'll need to make sure you've already called <a href="http://php.net/session%5Fstart" rel="nofollow">session_start()</a> right at the start of your script.</p>
http://stackoverflow.com/questions/1371966/save-remote-img-file-to-server-with-php/1372144#13721442Answer by Ciaran McNulty for Save remote img-file to server, with phpCiaran McNulty2009-09-03T08:32:25Z2009-09-03T08:32:25Z<p>If the URL stream wrappers are allowed, you can do it in 1 line rather than having to load it into a var:</p>
<pre><code>copy('http://img.youtube.com/vi/Rz8KW4Tveps/1.jpg', 'imgfolder/imgID.jpg');
</code></pre>
<p>This is much less likely to cause a problem with PHP running out of memory.</p>
http://stackoverflow.com/questions/419844/best-to-use-private-methods-or-protected-methods4Best to use Private methods or Protected methods?Ciaran McNulty2009-01-07T10:35:13Z2009-07-26T12:22:19Z
<p>In a lot of my PHP projects, I end up with classes that have non-public functions that I don't intend to extend.</p>
<p>Is it best to declare these as protected, or private?</p>
<p>I can see arguments both ways - making them private is a far more conservative approach, but it can be argued that they could be made protected later if I want the method to be extended and it makes it clear which methods are extended by base classes.</p>
<p>On the other hand, is using private somehow antisocial, in that it impedes a theoretical future developer from extending my code without modification?</p>
http://stackoverflow.com/questions/295515/a-php-hash-function-with-a-long-output-length1A PHP hash function with a long output length?Ciaran McNulty2008-11-17T12:56:01Z2009-07-24T23:01:09Z
<p>Inside my code I'm generating hashes of URLs, (which are practically of unbounded length). I'm currently using sha1(), which I know has a tiny chance of a collision, but I have up to 255 bytes to store the hash in so feel that I might as well use that available space to lower the chance of collision even further.</p>
<p>Is there either:</p>
<ol>
<li>Another PHP hash function with a longer or customisable hash length?</li>
<li>A way of using a fixed-length hash function like sha1 with a variable length input to generate a longer hash?</li>
</ol>
<p>Or, is sha1's 20-byte hash good enough for anything and I should stop worrying about it?</p>
http://stackoverflow.com/questions/1082776/amazon-s3-interface-with-php/1082875#10828752Answer by Ciaran McNulty for Amazon S3 interface with PHP?Ciaran McNulty2009-07-04T19:55:43Z2009-07-04T19:55:43Z<p>Have a look at the Zend Framework's Amazon components - don't worry they can be used ouside of any other Zend bits and pieces.</p>
<p><a href="http://framework.zend.com/manual/en/zend.service.amazon.s3.html" rel="nofollow">http://framework.zend.com/manual/en/zend.service.amazon.s3.html</a></p>
http://stackoverflow.com/questions/931407/what-is-stdclass-in-php/992654#99265413Answer by Ciaran McNulty for What is stdClass in PHP?Ciaran McNulty2009-06-14T11:13:47Z2009-06-14T11:13:47Z<p>Despite what the other two answers say, stdClass is <strong>not</strong> the base class for objects in PHP. This can be demonstrated fairly easily:</p>
<pre><code>class Foo{}
$foo = new Foo();
echo ($foo instanceof stdClass)?'Y':'N';
// outputs 'N'
</code></pre>
<p>stdClass is instead just a generic 'empty' class that's used when casting other types to objects. I don't believe there's a concept of a base object in PHP</p>
http://stackoverflow.com/questions/987859/zend-url-view-helper-keeping-existing-params-in-a-reversed-route0Zend url view helper - keeping existing params in a reversed routeCiaran McNulty2009-06-12T17:11:33Z2009-06-13T00:50:54Z
<p>At the moment in my ZF project have a URL structure like this:</p>
<pre><code>/news/index/news_page/1/blog_page/2
</code></pre>
<p>When I generate my pagination I use the URL helper as follows:</p>
<pre><code><?php echo $this->url(array('blog_page'=>3)); ?>
</code></pre>
<p>Which generates a URL like this:</p>
<pre><code>/news/index/news_page/1/blog_page/3
</code></pre>
<p>What I'd like to do is use a custom route to have nicer URLs, something like this:</p>
<pre><code>new Zend_Controller_Router_Route(
'news/:news_page/:blog_page',
array('controller' => 'news', 'action' => 'index')
);
</code></pre>
<p>However, when I try an use this route in the view helper:</p>
<pre><code><?php echo $this->url(array('blog_page'=>3), 'newsIndex'); ?>
</code></pre>
<p>It throws an error because I've not specified news_page in the params.</p>
<p>How can I get around this, and tell the url helper to use the 'current' values for these params?</p>
http://stackoverflow.com/questions/909374/copy-image-from-remote-server-over-http/909686#9096865Answer by Ciaran McNulty for Copy Image from Remote Server Over HTTPCiaran McNulty2009-05-26T08:57:36Z2009-05-26T08:57:36Z<p>If you have PHP5 and the HTTP stream wrapper enabled on your server, it's incredibly simple to copy it to a local file:</p>
<pre><code>copy('http://somedomain.com/file.jpeg', '/tmp/file.jpeg');
</code></pre>
<p>This will take care of any pipelining etc. that's needed. If you need to provide some HTTP parameters there is a third 'stream context' parameter you can provide.</p>
http://stackoverflow.com/questions/299255/unit-testing-doctrine-objects-with-phpunit1Unit testing Doctrine objects with PHPUnitCiaran McNulty2008-11-18T16:24:39Z2009-05-12T13:32:10Z
<p>I'm starting to try and test my Doctrine objects with PHPUnit, and would like to reload the DB from my model objects afresh each time.</p>
<p>My first attempt looks something like this:</p>
<pre><code>class Tests_User extends PHPUnit_Framework_TestCase
{
public function setUp()
{
Doctrine_Manager::connection('mysql://user:pass@localhost/testdb');
Doctrine::createDatabases();
Doctrine::createTablesFromModels('../../application/models');
}
public function testSavingWorks()
{
$user = new User();
$user->save();
}
public function testSavingWorksAgain()
{
$user = new User();
$user->save();
}
public function tearDown()
{
Doctrine::dropDatabases();
}
}
</code></pre>
<p>The problem is that when setUp() is called again for the second test, createTablesFromModels() fails, so I get an error because none of the tables are present.</p>
<p>I'd really appreciate an example of how someone else has reinitialised a Doctrine connection for PHPUnit or other unit testing purposes.</p>
http://stackoverflow.com/questions/844831/long-time-cron-job-via-wget-curl/845010#8450100Answer by Ciaran McNulty for long time cron job via wget/curl ?Ciaran McNulty2009-05-10T09:35:56Z2009-05-10T09:35:56Z<p>You can use the following at the start of your script to tell PHP to effectively never time out:</p>
<pre><code>set_time_limit(0);
</code></pre>
<p>What may be wiser is, if crontab is going to run the script every 24 hours, set the timeout to 24 hours so that you don't get two copies running at the same time.</p>
<pre><code>set_time_limit(24*60*60);
</code></pre>
<p>Crontab only allows minute-level execution because, that's the most often you should really be launching a script - there are startup/shutdown costs that make more rapid scheduling inefficient. </p>
<p>If your application requires a queue to be checked every 10 seconds a better strategy might be to have a single long-running script that does that checking and uses sleep() occasionally to stop itself from hogging system resources.</p>
<p>On a UNIX system such a script should really run as a daemon - have a look at the PEAR <a href="http://pear.php.net/package/System%5FDaemon" rel="nofollow">System_Daemon</a> package to see how that can be accomplished simply. </p>
http://stackoverflow.com/questions/810214/coding-styles/810456#8104562Answer by Ciaran McNulty for coding stylesCiaran McNulty2009-05-01T06:59:53Z2009-05-01T06:59:53Z<p>It's very tempting to nicely align stuff, I used to align my accessors in PHP as so</p>
<pre><code>function getName() { return $this->name; }
function getAge() { return $this->age; }
function getHeight(){ return $this->height; }
</code></pre>
<p>The problem comes when you add in a longer line:</p>
<pre><code>function getName() { return $this->name; }
function getAge() { return $this->age; }
function getNiNumber(){ return $this->ni_number; }
function getHeight(){ return $this->height; }
</code></pre>
<p>If I edit the three other lines, then when I commit my change it makes it harder to see who wrote a particular line, and in which revision they did it.</p>
http://stackoverflow.com/questions/708915/detecting-the-character-encoding-of-an-http-post-request0Detecting the character encoding of an HTTP POST requestCiaran McNulty2009-04-02T09:08:22Z2009-05-01T04:25:24Z
<p>I'm building a web service and have a node that accepts a POST to create a new resource. The resource expects one of two content-types - an XML format I'll be defining, or form-encoded variables.</p>
<p>The idea is that consuming applications can POST XML directly and benefit from better validation etc., but there's also an HTML interface that will POST the form-encoded stuff. Obviously the XML format has a charset declaration, but I can't see how I detect the form's charset just from looking at the POST.</p>
<p>A typical post to the form from Firefox looks like this:</p>
<pre><code>POST /path HTTP/1.1
Host: www.myhostname.com
User-Agent: Mozilla/5.0 [...etc...]
Accept: text/html,application/xhtml+xml, [...etc...]
Accept-Language: en-gb,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Content-Type: application/x-www-form-urlencoded
Content-Length: 41
field1=value1&field2=value2&field3=value3
</code></pre>
<p>Which doesn't seem to contain any useful indication of the character set.</p>
<p>From what I can see, the application/x-www-form-urlencoded type is entirely defined in HTML, which just lays out the %-encoding rules, but doesn't say anything about what charset the data should be in.</p>
<p>Basically, is there any way of telling the character set if I don't know the character set the HTML originally presented was? Otherwise I'll have to try and guess the character set based on what chars are present, and that's always a bit iffy from what I can tell.</p>
http://stackoverflow.com/questions/789842/php-how-do-i-retain-all-get-vars-in-links/791525#7915250Answer by Ciaran McNulty for PHP How do I retain all GET vars in links?Ciaran McNulty2009-04-26T20:16:13Z2009-04-26T20:16:13Z<p>I do this as follows:</p>
<pre><code><?php echo http_build_query(array_merge($_GET, array('foo'=>'bar', 'foo2'=>'bar2')); ?>
</code></pre>
<p>Note that any existing 'foo' or 'foo2' keys would be replaced.</p>
http://stackoverflow.com/questions/767161/use-current-autoincrement-value-as-basis-for-another-field-in-the-same-insert-qu/767610#7676100Answer by Ciaran McNulty for Use current auto_increment value as basis for another field in the same INSERT query - is this possible in MySQL?Ciaran McNulty2009-04-20T09:48:32Z2009-04-20T09:48:32Z<p>You could do this using a trigger, something like:</p>
<pre><code>CREATE TRIGGER `calc_id_hash` AFTER INSERT ON `urls`
FOR EACH ROW SET new.`hash`= BASE36(new.`id`);
</code></pre>
http://stackoverflow.com/questions/759634/problem-with-htmltopdf-class-php/759937#7599370Answer by Ciaran McNulty for Problem with HTML_ToPDF class (PHP)Ciaran McNulty2009-04-17T10:39:46Z2009-04-17T10:39:46Z<p>To be honest I've found <a href="http://code.google.com/p/wkhtmltopdf/" rel="nofollow">wkhtmltopdf</a> to be far better than html2ps, even though it's at a fairly early stage of development.</p>
<p>I wrote <a href="http://ciaranmcnulty.com/blog/2009/04/converting-html-to-pdf-using-wkhtmltopdf" rel="nofollow">a blog about it</a>, but if you don't want to read that basically it uses KHTML/Webkit's rendering engine to render the page which is a bit more sensible than the usual approach of writing a complete HTML renderer.</p>
<p>The distributed binary worked just fine on my Debian server, and frankly the results are excellent.</p>
http://stackoverflow.com/questions/723188/replacing-tags-with-includes-in-php-with-regexps/723640#7236400Answer by Ciaran McNulty for Replacing Tags with Includes in PHP with RegExpsCiaran McNulty2009-04-06T23:33:34Z2009-04-06T23:33:34Z<p>Orion above has a right solution, but it's not really necessary to use a callback function in your simple case.</p>
<p>Assuming that the filenames are A-Z + hyphens you can do it in 1 line using PHP's /e flag in the regex:</p>
<pre><code>$str = preg_replace('/{([-A-Z]+)}/e', 'file_get_contents(\'$1.html\')', $str);
</code></pre>
<p>This'll replace any instance of {VAR} with the contents of VAR.html. You could prefix a path into the second term if you need to specify a particular directory.</p>
<p>There are the same vague security worries as outlined above, but I can't think of anything specific.</p>
http://stackoverflow.com/questions/716468/memcache-gzipped-content-with-php-obgzhandler/716933#7169331Answer by Ciaran McNulty for memcache gzipped content with php ob_gzhandlerCiaran McNulty2009-04-04T11:33:23Z2009-04-04T11:33:23Z<p>ob_gzhandler() will return either a string or false, depending on whether the client browzer supports gzip, deflate or no encoding. You're probably using this function via ob_start() or similar.</p>
<p>Because the result is different per-client, it's not a great idea to try and cache the result (i.e. in some cases it'll be FALSE, in some cases it'll be a 'deflate'-encoded response and in others it'll be a 'gzip'-encoded response).</p>
<p>It would seem to make more sense to cache the content that's being gzipped, and take the 'hit' of it being re-compressed each requests - in practice this shouldn't be a huge overhead.</p>
http://stackoverflow.com/questions/708882/trimming-a-block-of-text-to-the-nearest-word-when-a-certain-character-limit-is-re/709194#7091940Answer by Ciaran McNulty for Trimming a block of text to the nearest word when a certain character limit is reached?Ciaran McNulty2009-04-02T10:34:24Z2009-04-02T10:34:24Z<p>You can use a little-known modifier to str_word_count to help do this. If you pass the parameter '2', it returns an array of where the word position are. </p>
<p>The following is a simple way of using this, but it might be possible to do it more efficiently:</p>
<pre><code>$str = 'This is a string with a few words in';
$limit = 20;
$ending = $limit;
$words = str_word_count($str, 2);
foreach($words as $pos=>$word) {
if($pos+strlen($word)<$limit) {
$ending=$pos+strlen($word);
}
else{
break;
}
}
echo substr($str, 0, $ending);
// outputs 'this is a string'
</code></pre>
http://stackoverflow.com/questions/628986/how-do-you-install-phpunit-without-using-pear-on-mac-os-x-10-5/629358#6293582Answer by Ciaran McNulty for How do you install PHPUnit without using PEAR on Mac OS X 10.5?Ciaran McNulty2009-03-10T08:55:58Z2009-03-10T08:55:58Z<p>From the <a href="http://www.phpunit.de/manual/current/en/installation.html" rel="nofollow">PHPUnit installation guide</a>:</p>
<blockquote>
<p>Although using the PEAR Installer is the only supported way to install PHPUnit, you can install PHPUnit manually. For manual installation, do the following:</p>
</blockquote>
<ol>
<li>Download a release archive from <a href="http://pear.phpunit.de/get/" rel="nofollow">http://pear.phpunit.de/get/</a> and extract it to a directory that is listed in the include_path of your php.ini configuration file.</li>
<li>Prepare the phpunit script:
<ol>
<li>Rename the phpunit.php script to phpunit.</li>
<li>Replace the @php_bin@ string in it with the path to your PHP command-line interpreter (usually /usr/bin/php).</li>
<li>Copy it to a directory that is in your path and make it executable (chmod +x phpunit). </li>
</ol></li>
<li>Prepare the PHPUnit/Util/Fileloader.php script:
<ol>
<li>Replace the @php_bin@ string in it with the path to your PHP command-line interpreter (usually /usr/bin/php). </li>
</ol></li>
</ol>
http://stackoverflow.com/questions/1660542/detecting-file-modification-on-a-remote-smb-share-using-php/1660592#1660592Comment by Ciaran McNulty on Detecting file modification on a remote SMB share using PHPCiaran McNulty2009-11-02T14:19:21Z2009-11-02T14:19:21Z@Goran - That's pretty much the strategy that occurred to me, but I'm really worried it wouldn't scale at all well.http://stackoverflow.com/questions/1449935/getting-svn-revision-number-into-a-program-automatically/1454120#1454120Comment by Ciaran McNulty on Getting SVN revision number into a program automaticallyCiaran McNulty2009-09-22T08:22:43Z2009-09-22T08:22:43Z@Smashery I'm afraid you'd have to write your own commit hook to do that I suspect - you could use the svn:keywords property though by setting your own keyword and letting SVN do the substitution for you.http://stackoverflow.com/questions/1449935/getting-svn-revision-number-into-a-program-automatically/1454120#1454120Comment by Ciaran McNulty on Getting SVN revision number into a program automaticallyCiaran McNulty2009-09-21T16:12:10Z2009-09-21T16:12:10ZDrew - I think if enable-auto-props=true is set, then the default keywords are all set?http://stackoverflow.com/questions/1427738/removing-a-dependency-in-a-constructor-using-phpunit/1427761#1427761Comment by Ciaran McNulty on Removing a dependency in a constructor using PHPunitCiaran McNulty2009-09-15T15:17:50Z2009-09-15T15:17:50ZI'm doing a partial mock of Foo and only overriding the method that contains the dependency, as I've not got a better way of injecting in the Bar yet (hopefully once this is under test I can refactor it a bit).http://stackoverflow.com/questions/1427738/removing-a-dependency-in-a-constructor-using-phpunit/1427761#1427761Comment by Ciaran McNulty on Removing a dependency in a constructor using PHPunitCiaran McNulty2009-09-15T15:10:46Z2009-09-15T15:10:46ZBut the constructor does 'stuff', should that be split out into a separate method?http://stackoverflow.com/questions/1142390/what-enterprise-class-open-source-cms-has-the-steepest-easiest-learning-curve-fComment by Ciaran McNulty on What enterprise-class open source CMS has the steepest (easiest) learning curve for a programmers team?Ciaran McNulty2009-07-17T10:12:56Z2009-07-17T10:12:56ZYeh what Draemon said - you deliberately want to make things difficult? Hard!=Good.http://stackoverflow.com/questions/1013493/coalesce-function-for-php/1013502#1013502Comment by Ciaran McNulty on Coalesce function for PHP?Ciaran McNulty2009-06-19T08:11:46Z2009-06-19T08:11:46Z@TravisO yeah like Alfred said, if you bring the call to func_get_args() into the loop condition it'll get called each time - PHP can't tell that the function result won't change each time.
http://stackoverflow.com/questions/931407/what-is-stdclass-in-php/931419#931419Comment by Ciaran McNulty on What is stdClass in PHP?Ciaran McNulty2009-06-14T11:14:41Z2009-06-14T11:14:41ZIt's not quite a base class in the way Java's Object is, see my answer below.http://stackoverflow.com/questions/986410/consecutive-li-classes/990609#990609Comment by Ciaran McNulty on consecutive <li> classesCiaran McNulty2009-06-13T18:17:38Z2009-06-13T18:17:38ZA simpler version of your first code example is <?php echo "img", $i++ ?>. You don't need to make the increment separate.http://stackoverflow.com/questions/987859/zend-url-view-helper-keeping-existing-params-in-a-reversed-route/989650#989650Comment by Ciaran McNulty on Zend url view helper - keeping existing params in a reversed routeCiaran McNulty2009-06-13T09:07:52Z2009-06-13T09:07:52ZThanks Jason, that's exactly what was happening.http://stackoverflow.com/questions/886668/window-onload-is-not-firing-with-ie-8-in-first-shotComment by Ciaran McNulty on window.onload() is not firing with IE 8 in first shotCiaran McNulty2009-05-20T09:08:09Z2009-05-20T09:08:09ZIf you're opening the file locally, as in from the filesystem, IE might be trying to protect you from security issues?http://stackoverflow.com/questions/853649/create-very-simple-named-route-in-zend-framework-using-its-mvc/854444#854444Comment by Ciaran McNulty on Create very simple Named Route in Zend Framework, using its MVCCiaran McNulty2009-05-12T21:59:18Z2009-05-12T21:59:18ZThere's no reason you can't setthe action in the View, which makes the syntax a little nicer. http://stackoverflow.com/questions/832329/xslt-character-encoding-problem/832379#832379Comment by Ciaran McNulty on XSLT character encoding problemCiaran McNulty2009-05-07T07:28:57Z2009-05-07T07:28:57ZJames you need the DOCTYPE on the XML file with the entities in.http://stackoverflow.com/questions/800215/php-soapclient-times-out/800954#800954Comment by Ciaran McNulty on PHP SoapClient times outCiaran McNulty2009-04-29T06:35:14Z2009-04-29T06:35:14ZSOAP runs over HTTP normally, so that shouldn't be the problem.http://stackoverflow.com/questions/759634/problem-with-htmltopdf-class-php/759937#759937Comment by Ciaran McNulty on Problem with HTML_ToPDF class (PHP)Ciaran McNulty2009-04-17T11:17:40Z2009-04-17T11:17:40ZIt is a worry, but it's only a 'temporary' X-server and isn't using a huge framebuffer - I'd have to do some profiling vs. html2ps before I assumed it was more impact. Thanks for the click though!