Flyenv的php集成开发环境安装yar扩展

1. 先安装 curl 依赖(必须)

bash

运行

复制代码
brew install curl

2. 复制这一整段直接运行(自动找你的 PHP、自动编译)

bash

运行

复制代码
cd /tmp
rm -rf yar
git clone https://github.com/laruence/yar.git
cd yar
$(which phpize)
./configure --with-php-config=$(which php-config) \
--with-curl=/opt/homebrew/opt/curl \
CFLAGS="-I/opt/homebrew/opt/c/include" \
LDFLAGS="-L/opt/homebrew/opt/curl/lib"
make && make install

3. 启用扩展 + 验证

bash

运行

复制代码
echo "extension=yar.so" >> $(php --ini | grep "Loaded Configuration File" | awk '{print $4}')
php -m | grep yar

只要出现 yar 就成功了 ✅

相关推荐
两个人的幸福13 天前
Windows 桌面应用自研 PHP 队列(下):完整代码与六大工程化优化
php
BingoGo15 天前
PHP 泛型之殇 泛型 RFC 提案被拒绝
后端·php
JaguarJack15 天前
PHP 泛型之殇 泛型 RFC 提案被拒绝
后端·php
用户30745969820716 天前
PHP 扩展——从入门到理解
php
鹏仔先生16 天前
拷贝漫画APP下载页PHP程序,后台带免费AI写作
php
云水一下17 天前
从零开始学 PHP 系列(一):PHP 的前世今生与开发环境搭建
开发语言·php
xingpanvip17 天前
星盘接口开发文档:本命盘接口指南
android·开发语言·css·php·lua
酉鬼女又兒17 天前
零基础入门计算机网络运输层:端到端通信核心作用、端口号分类规则、复用分用工作机制及UDP与TCP协议全方位对比详解
网络·网络协议·tcp/ip·计算机网络·考研·udp·php
dog25017 天前
不要再继续优化 TCP
网络协议·tcp/ip·php
Channing Lewis17 天前
PHP 解析 Excel 的那些坑:一次“行号错位”引发的数据丢失
开发语言·php·excel