|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2009-05-14 09:04 UTC] zyss at mail dot zp dot ua
Description: ------------ $ character is one of the most widely used in PHP code, in most cases its use is unreasonable. I understand its historical roots, it came from Unix shell scripts (such as bash) where it was required to make interpreter?s "life" easier. But today's most powerful languages do not require use of variable prefix to distinguish between variable and other identifiers. There are some cases where use of $ if reasonable, for example inside strings and when calling function by name stored in a variable. In all other cases programmers are dazzled by it. I do not propose to remove $ prefix, it would be a major improvement to make it OPTIONAL (this change will not break any existing code but many people will breathe a sigh of relief). P.S. If you will continue to prefer PHP-interpreter developers' convenience over PHP-code developers' we will start our own fork of PHP to be able to add required functionality to it. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 19:00:02 2025 UTC |
It is a matter of programmer's personal attentiveness. In your example there is a mix of using $ and not using it. Most developers will not do it. Besides in other languages this theoretical problem is even not discussed. For example, as you know in C/C++ there is a de facto standard of using CAPITAL LETTERS for constants which is enough to distinguish them from variables. Many PHP developers follow this concept. From the other side if one wanted to calculate how many key strokes will it save to allow not to use $ prefix in a PHP project with 100000 lines of code - this number would be huge. No one will argue that PHP is derived from C. It is evident that C language itself was created to minimize typing (as one of its primary goals, comparing to academic Pascal is enough to see this). So why not to follow the original path - to avoid unneeded typing while leaving a possibility to use $ for compatibility and in some special cases? The same arguments can be applied to { } arrays and "in" operator.It is just one of arguments, another one is that it will improve code readability. While it is not so evident in simple examples: who cares what to write $foo = $bar or foo = bar and all of these seems to be clear and readable. But consider more complicated code: while (TRUE) { $k = strpos( $sql, $quoteChar, $j ); $escaped = false; if ($k === false) { break; } $l = $k - 1; while ($l >= 0 && $sql{$l} == '\\') { $l--; $escaped = !$escaped; } if ($escaped) { $j = $k + 1; continue; } break; } Isn't it more readable without $: while (TRUE) { k = strpos( sql, quoteChar, j ); escaped = false; if (k === false) { break; } l = k - 1; while (l >= 0 && sql{l} == '\\') { l--; escaped = !escaped; } if (escaped) { j = k + 1; continue; } break; } ?