Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Talk:Coding: Difference between revisions

From MoodleDocs
(Replacing page with '~~~~ I rebooted the comments page because the main page has changed so much')
 
(13 intermediate revisions by 6 users not shown)
Line 1: Line 1:
== Single quotes vs. double quotes: no noticable speed differences... ==
[[User:Martin Dougiamas|Martin Dougiamas]] 08:50, 1 May 2009 (UTC) I rebooted the comments page because the main page has changed so much
 
As PHP 4.3.0 is now the minimum version, the speed issue of single quotes vs. double quotes is negligible. See http://phplens.com/lens/php-book/optimizing-debugging-php.php, under "Useless Optimizations". There might be other reasons, however. I like to use "". ' is more convinient if a string has a lot of "s it it, like 'I have no "issues" with the "quotations"'. --[[User:Samuli Karevaara|Samuli Karevaara]] 04:26, 10 October 2006 (CDT)
: I see that Martin changed the rationale, so single quotes should be used with strings that have parsed variables in them. However, Tim changed the example back to use double quotes :-) --[[User:Samuli Karevaara|Samuli Karevaara]] 00:13, 17 March 2008 (CDT)
 
== Using clone() ==
 
Unless I'm mistaken, there are some cases where we should use Moodle's full_clone() method. Maybe someone could clarify this...
 
== Single vs Double quotes ==
 
According to the PHP.net manual page referenced, the memory usage issue for strings is not with single v double quotes, but with parsed variables in strings vs concatenated variables in strings.
 
As a PHP developer, I find it is overall much better to use double quotes for strings if for no other reason than that you can stick newlines (\n) in. Putting newlines in makes HTML debugging MUCH easier.
 
Just my $0.02.
 
Thanks!

Latest revision as of 08:50, 1 May 2009

Martin Dougiamas 08:50, 1 May 2009 (UTC) I rebooted the comments page because the main page has changed so much