Ciaran McNulty

1,031
reputation
193 views

Registered User

name Ciaran McNulty
member for 1 year
seen 23 hours ago
website
location London
age
Nov
18
revised Serve a large file via Zend Framework
added 175 characters in body
Nov
18
comment Serve a large file via Zend Framework
Thanks, was that specifically in a Zend Framework environment?
Nov
18
asked Serve a large file via Zend Framework
Nov
17
answered Why bother using mysql_real_escape_string() since $_POST addes slashes before a quote automatically?
Nov
15
answered When can there be data in both $_GET and $_POST
Nov
6
answered problem applying a WHERE condition on an aliased response
Nov
5
awarded  Yearling
Nov
4
asked Passing additional parameters to the Zend partialLoop View Helper
Nov
2
comment Detecting file modification on a remote SMB share using PHP
@Goran - That's pretty much the strategy that occurred to me, but I'm really worried it wouldn't scale at all well.
Nov
2
asked Detecting file modification on a remote SMB share using PHP
Oct
30
accepted PHP Mail Piping
Oct
26
answered PHP Mail Piping
Sep
22
accepted Getting SVN revision number into a program automatically
Sep
22
comment Getting SVN revision number into a program automatically
@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.
Sep
21
comment Getting SVN revision number into a program automatically
Drew - I think if enable-auto-props=true is set, then the default keywords are all set?
Sep
21
answered Getting SVN revision number into a program automatically
Sep
21
answered REST user authentication
Sep
19
answered PHP - url-address for send-script
Sep
15
comment Removing a dependency in a constructor using PHPunit
I'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).
Sep
15
comment Removing a dependency in a constructor using PHPunit
But the constructor does 'stuff', should that be split out into a separate method?
Sep
15
asked Removing a dependency in a constructor using PHPunit
Sep
9
answered Stream FTP download to output
Sep
9
accepted Download then upload a file in PHP
Sep
8
answered Download then upload a file in PHP
Sep
7
answered PHP - Loading CSS using cookie, but cookie isn’t being read?
Sep
3
answered Save remote img-file to server, with php
Jul
21
awarded  Nice Answer
Jul
17
comment What enterprise-class open source CMS has the steepest (easiest) learning curve for a programmers team?
Yeh what Draemon said - you deliberately want to make things difficult? Hard!=Good.
Jul
4
answered Amazon S3 interface with PHP?
Jun
28
accepted Copy Image from Remote Server Over HTTP
Jun
19
comment Coalesce function for PHP?
@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.
Jun
14
comment What is stdClass in PHP?
It's not quite a base class in the way Java's Object is, see my answer below.
Jun
14
answered What is stdClass in PHP?
Jun
13
comment consecutive <li> classes
A simpler version of your first code example is <?php echo "img", $i++ ?>. You don't need to make the increment separate.
Jun
13
comment Zend url view helper - keeping existing params in a reversed route
Thanks Jason, that's exactly what was happening.