惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Full Disclosure
Recorded Future
Recorded Future
T
Tenable Blog
S
Securelist
C
CERT Recently Published Vulnerability Notes
T
Threatpost
S
Schneier on Security
A
Arctic Wolf
The Hacker News
The Hacker News
C
CXSECURITY Database RSS Feed - CXSecurity.com
Know Your Adversary
Know Your Adversary
P
Privacy International News Feed
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
The Register - Security
The Register - Security
Cisco Talos Blog
Cisco Talos Blog
AWS News Blog
AWS News Blog
K
Kaspersky official blog
T
True Tiger Recordings
T
Threat Research - Cisco Blogs
V
Vulnerabilities – Threatpost
P
Palo Alto Networks Blog
T
The Exploit Database - CXSecurity.com
小众软件
小众软件
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
Cyberwarzone
Cyberwarzone
C
Cybersecurity and Infrastructure Security Agency CISA
T
Tor Project blog
Spread Privacy
Spread Privacy
Malwarebytes
Malwarebytes
P
Proofpoint News Feed
F
Fox-IT International blog
F
Fortinet All Blogs
P
Privacy & Cybersecurity Law Blog
G
GRAHAM CLULEY
量子位
Latest news
Latest news
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 叶小钗
Project Zero
Project Zero
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
Martin Fowler
Martin Fowler
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
IntelliJ IDEA : IntelliJ IDEA – the Leading IDE for Professional Development in Java and Kotlin | The JetBrains Blog
I
Intezer
博客园_首页
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
Darknet – Hacking Tools, Hacker News & Cyber Security

PHP

有没有什么好用的免费开源 CRM 系统 2026 年 PHP 路在何方 2026 年,学 laravel 有没有前途: 有没有这样的 PHP 框架 PHP 是不是快死了 php74-fpm 加 nginx, PHP 文件只要不是 root /var/www/html 就提示 No input file specified.求大佬看看 PHP framewok 框架推荐 基于 yii2 框架开发的后台管理软件,免费 「一键部署你的专属服务器」——WNMP 一键包,让 Web 环境搭建回归简单 完蛋了,为什么我感觉 PHP 的语法这么优雅呢 未来属于 PHP 记一次微信 access_token invalid credential, access_token is invalid or not latest 求助: PHP 错误,请高手帮我改写下面的 PHP 代码 为什么现在 WEB3、区块链、钱包之类开始用 PHP 了 PHP 8.5 加入了 pipe 语法 推荐一个优雅的 PHP http 请求工具,仿照了 py 的 requests 大家好,我又來了,新作品 https://www.freetalkhub.com, PHP 开发 laravel 和 thinkphp 选择哪个? 202505 最新调研: PHP Opcode 加密混淆哪家强? 有做过基于 webrtc 技术的多人视频会议系统的吗 2025 年 PHP 路在何方 求助 CodeIgniter 输出的 html 格式很乱,缩进乱七八糟的。。。 有个关于 PHP 的小疑惑 workman 与阿里云实时语音通信的问题。 目前 PHP 中比较好用的工作流引擎有哪些? 有老哥熟悉 OpenCart 的吗? 开源 PHP Composer 私有 package 管理平台 推荐个好用的集成环境 phpinfo(); logo 变成了绿色的大象 PHP 项目有类似前端 monorepo 的概念吗? 想用 PHP 做微服务开发,有偿求指导 PHP 语言已经过气了吗 国内 PHP 卷王是鸟哥 mysql update 更新失败的原因。 PHP 程序员是往运维还是前端发展作为拓展呢 求大佬解决一下一个问题 [2024-11-21] PHP 8.4 Released! 如何获得抖音视频播放量?各位大牛支支招~ 如何优雅地切换 composer 镜像 与银行对接 sm4 国密算法 Laravel 二手项目,语言切换问题,求解 两道 PHP 题目,都是求 flag 值 帮忙推荐一个开源论坛源码? Laravel 完成了 A 轮融资🎉 PHP 虽然没落了,但是 PHP 的东西是真的好用 世界上最好的 serverless 平台! imgur 是怎么做到一个链接新窗口打开 302,但是还能作为图片显示的? PHP 编译器 BPC 编译 ThinkPHP8 + PHPUnit 测试 的视频来了
重造 PHP -HTTP 性能检测,新增 List<int>、HashMap<K, V>
2024 · 2025-10-24 · via PHP

https://github.com/php-any/origami

在访问 hello work 场景下,和 go http 标准库接近,2 万左右 qps 。 text

同时新增了更加便捷的查询


$db = open("mysql", "root:root@/temp");

$db->ping();

Database\registerDefaultConnection($db);

@Table("users")
class User {
    public int $id;
    
    @Column("name")
    public string $userName;
    
    public int $age;
    
    public float $coin;
    
    @Column("create_at")
    public string $createAt;
}

$data = DB<User>();

echo "=== 基础查询 ===\n";
$user = $data->where("id = ?", 100)->first();
dump($user);

除了 array 数组外,还有增强数组

$list = new List<int>();
$list->add(1);
$list->add(2);
$list->add(3);

// 手动迭代
$list->rewind();
while ($list->valid()) {
    echo "索引: " . $list->key() . ", 值: " . $list->current() . "\n";
    $list->next();
}

KV 方式的泛型类

$map = new HashMap<string, int>();
$map->put("apple", 10);
$map->put("banana", 20);
$map->put("orange", 30);