TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

PHP 8.4.4 Released

70 点作者 ms78923 个月前

7 条评论

duskwuff3 个月前
Slightly more interesting changelog:<p><a href="https:&#x2F;&#x2F;www.php.net&#x2F;ChangeLog-8.php#8.4.4" rel="nofollow">https:&#x2F;&#x2F;www.php.net&#x2F;ChangeLog-8.php#8.4.4</a><p>That being said, this is a pretty boring release. Save the upvotes for 8.5 when it comes? :)
someothherguyy3 个月前
One wonders, why is a minor release announcement for PHP on the front page?
评论 #43056357 未加载
评论 #43056518 未加载
satvikpendem3 个月前
How is PHP&#x27;s speed these days? I haven&#x27;t been following but I heard that PHP has become much more capable in features and performance since I used it a decade ago.
评论 #43056866 未加载
评论 #43057004 未加载
评论 #43056875 未加载
评论 #43056846 未加载
评论 #43056603 未加载
评论 #43056855 未加载
tored3 个月前
A great bug fix release on a great major release. Thank you to everyone involved to make this possible.
lbj3 个月前
Does anyone know specifically how much of this is no longer true? <a href="https:&#x2F;&#x2F;eev.ee&#x2F;blog&#x2F;2012&#x2F;04&#x2F;09&#x2F;php-a-fractal-of-bad-design&#x2F;" rel="nofollow">https:&#x2F;&#x2F;eev.ee&#x2F;blog&#x2F;2012&#x2F;04&#x2F;09&#x2F;php-a-fractal-of-bad-design&#x2F;</a>
评论 #43056760 未加载
评论 #43056941 未加载
评论 #43056768 未加载
评论 #43056790 未加载
评论 #43057013 未加载
评论 #43056858 未加载
评论 #43056731 未加载
评论 #43056997 未加载
phplovesong3 个月前
Still no builtun unicode. Still no way to do concurrency. Sees like PHP is only getting closer to become a poormans Java.
评论 #43056812 未加载
评论 #43057224 未加载
TekMol3 个月前
PHP needs modules. The way it solves code reuse by tooling that helps making class names longer to avoid collisions is just too cumbersome.<p>Python:<p><pre><code> calc.py ------- def sum(a, b): return a+b hello.py -------- import calc print(calc.sum(1, 2)) </code></pre> PHP:<p><pre><code> LongUniqueStringToHopefullyAvoidCollisions&#x2F;Calc.php --------------------------------------------------- &lt;?php namespace LongUniqueStringToHopefullyAvoidCollisions; class Calc { public static function sum($a, $b) { return $a + $b; } } hello.php --------- &lt;?php require_once &#x27;LongUniqueStringToHopefullyAvoidCollisions&#x2F;Calc.php&#x27;; use LongUniqueStringToHopefullyAvoidCollisions\Calc; echo Calc::sum(1, 2) </code></pre> For people who don&#x27;t know PHP it is probably hard to grasp and hard to believe: To avoid name collisions, you have to wrap your code in classes and then use the &quot;namespace&quot; and &quot;use&quot; keywords which function like prefixing the class names with a given string, so the class names hopefully do not collide with other class names in your codebase.
评论 #43056759 未加载
评论 #43056698 未加载
评论 #43056746 未加载
评论 #43056787 未加载
评论 #43056887 未加载
评论 #43056775 未加载
评论 #43056809 未加载