mac下安装yaf
安装过程有点曲折,具体辛酸就不说了。。 反正折腾两三个小时,尝试了各种方式,结果也无法正确的整理出那个步骤就好,所以贴一些片段,希望对有需要的朋友有帮助。 1 Mac下快速安装PHP框架Yaf 引用 Yaf是国内PHP大神Laruence基于PHP扩展开发的框架。主要特
安装过程有点曲折,具体辛酸就不说了。。
反正折腾两三个小时,尝试了各种方式,结果也无法正确的整理出那个步骤就好,所以贴一些片段,希望对有需要的朋友有帮助。
1 Mac下快速安装PHP框架Yaf
引用
Yaf是国内PHP大神Laruence基于PHP扩展开发的框架。主要特点就是速度快,效率高,比使用PHP代码开发的框架性能都要高很多。据大神说已经用上了新浪Weibo上,TPS提升了76个百分点。具体可以参考Yaf的主页。 在Mac下安装开源软件和服务器软件当然没有Ubuntu的apt-get顺手,但也有MacPorts和HomeBrew等优秀的包管理器,我目前使用的是后者,因为它用起来更简单,可以让你去专注做需要专注的事情。 最近几个项目准备用Yaf开发,所以提交了Yaf的Brew脚本上去,如果大家有兴趣也可以贡献一些好用的PHP Brew,让大家用起来都方便。具体可以参考homebrew-php项目 关于Brew的安装,基本上一个命令就搞定了,具体可以参考HomeBrew安装
ruby
接下来需要将PHP的Brew库tap到本地(homebrew-php项目可以安装大部分常用的php扩展)
brew tap josegonzalez/homebrew-php
如果你tap过,只需要执行
brew update
然后安装只需要执行
brew install php53-yaf // 如果是5.4,则用php54-yaf
搞定(注意:需要自己修改php.ini添加扩展路径)
我按上面的操作了,结果加载不上,无奈,但这个应该算说明的比较好了
具体链接就不做了,点击看原文吧
2 MacOS Yaf(PHP)扩展编译 (Mac make)
引用
在Mac下安装Yaf(PHP)扩展,是一个纠结的过程,困扰了我好几天,系统默认是不支持 make 的,没有 yum/apt-get (注:MacPort,试验证明它不好用,差太多),经过这几天总算把 Yaf编译进了Mac PHP,下面就把这个过程分享给大家。
如果你通过这篇教程仍然无法完成 MacOS Yaf 编译,可以进入 Yaf QQ群获取帮助,群号是:5134185,以及Yaf论坛寻求帮助:yafphp.com
操作系统:Mac OS X Lion 10.7.4
开发环境:XAMPP(集成开发环境)
第一步,先下载集成开发环境 XAMPP
(当然你也可以编译源码或Mac 自带的,在:系统偏好 > Web共享,因为不是本文重点,就不做介绍了)
XAMPP下载地址:www.apachefriends.org/zh_cn/xampp-macosx.html
安装方法就不写了,网站上灰常详细,
提醒你一下,记得下载:Developer package (编译PHP扩展要用到)
环境安装好了,我遇到了第一个困扰,Mac OS 没有 yum/apt-get,不能 ./configure,不能 make
解决这个问题的办法:
1、安装 Xcode,在 App Store 中可以免费获取
2、打开 Xcode,菜单依次是:Xcode > Preferences > Downloads > Components
3、点击 Command Line Tools 右边的 Install 按钮
安装 Xcode 与 Command Line Tools 的过程都非常长,耐心等待,安装后你就拥有了 Mac make && make install 功能了。
第二步,一些常用的包,有些是 Yaf 依赖的,都安装了吧,安装步骤如下:
# 先把需要的源码都下载好
curl -O ftp://ftp.gnu.org/gnu/m4/m4-1.4.16.tar.bz2
curl -O ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.bz2
curl -O ftp://ftp.gnu.org/gnu/automake/automake-1.11.1.tar.bz2
curl -O ftp://ftp.gnu.org/gnu/libtool/libtool-2.4.tar.gz
curl -O ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.30.tar.gz
curl -O http://pecl.php.net/get/yaf-2.1.16.tgz
# m4
tar xjf m4-1.4.16.tar.bz2
cd m4-1.4.16
./configure --prefix=/usr/local
make clean && make -j4 && make install-strip
cd ..
rm -rf m4-1.4.16
# autoconf
tar xjf autoconf-2.68.tar.bz2
cd cd autoconf-2.68
./configure --prefix=/usr/local
make clean && make -j4 && make install-strip
cd ..
rm -rf autoconf-2.68
# automake
tar xjf automake-1.11.1.tar.bz2
cd automake-1.11.1
./configure --prefix=/usr/local
make clean && make -j4 && make install-strip
cd ..
rm -rf automake-1.11.1
# libtool
tar xjf libtool-2.4.tar.gz
cd libtool-2.4
./configure --prefix=/usr/local
make clean && make -j4 && make install-strip
cd ..
rm -rf libtool-2.4
# PCRE
tar xzf pcre-8.30.tar.gz
cd pcre-8.30
./configure --prefix=/usr/local --enable-utf8
make clean && make && make install
cd ..
rm -rf pcre-8.30
第三步,安装 Yaf 到 MacOS
下载YAF,地址是:pecl.php.net/package/yaf,然后执行命令:
tar -xzf yaf-2.1.16.tgz
cd yaf-2.1.16
/Applications/XAMPP/xamppfiles/bin/phpize
./configure --with-php-config=/Applications/XAMPP/xamppfiles/bin/php-config
make && make install
重新启动 XAMPP,打开 phpinfo() 看下是不是有 Yaf了?
如果有Yaf的话,恭喜你,安装结束了。
我在完成以上步骤时,仍然不显示Yaf,于是又困扰了一天(有时一个问题纠结太久,只差最后那么一下就能捅破)。
问题的原因是我的MacOS,64位,而PHP扩展需要是32位,尝试在 ./configure 加了个参数,问题就搞定了。
/Applications/XAMPP/xamppfiles/bin/phpize
./configure CFLAGS="-arch i386" --with-php-config=/Applications/XAMPP/xamppfiles/bin/php-config
make && make install
再说两句,按照我的方法,也有可能你仍然无法解决问题,因为系统环境这个东西,真是多种多样,通过结果,我总结解决问题的办法,是在 ./configure 上找方法突破,你可以根据自己的问题谷歌下(百度在资料少的时候,显得有些不足)。
最后,感谢鸟哥、子痕、Demon、mini等热心的好基友们.. ^_^
这个参考的也不行,但安装相应的内容还是很合适做参考的,也许只是我哪个步骤不行
3 另外可以尝试的是编译安装了
查看官网http://yaf.laruence.com/ma...
phpinfo可以看到yaf就对了
原文地址:mac下安装yaf, 感谢原作者分享。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Solution to the problem that Win11 system cannot install Chinese language pack With the launch of Windows 11 system, many users began to upgrade their operating system to experience new functions and interfaces. However, some users found that they were unable to install the Chinese language pack after upgrading, which troubled their experience. In this article, we will discuss the reasons why Win11 system cannot install the Chinese language pack and provide some solutions to help users solve this problem. Cause Analysis First, let us analyze the inability of Win11 system to

You may not be able to install guest additions to a virtual machine in OracleVirtualBox. When we click on Devices>InstallGuestAdditionsCDImage, it just throws an error as shown below: VirtualBox - Error: Unable to insert virtual disc C: Programming FilesOracleVirtualBoxVBoxGuestAdditions.iso into ubuntu machine In this post we will understand what happens when you What to do when you can't install guest additions in VirtualBox. Unable to install guest additions in VirtualBox If you can't install it in Virtua

Many Mac users tend to keep the default name of their device and may never consider changing it. Many people choose to stick with the name from the initial setup, such as "Johnny's MacBook Air" or simply "iMac." Learning how to change the name of your Mac is a very useful skill, especially when you have multiple devices, as it can help you quickly distinguish and manage them. Next, we will teach you step by step how to change the computer name, host name and Bonjour name (local host name) in macOS system. Why should you change your Mac name? Changing the name of your Mac can not only show your personality, but also help improve the user experience: Personalize your Mac: The default name may not be to your taste, change it to a name you like.

If you have successfully downloaded the installation file of Baidu Netdisk, but cannot install it normally, it may be that there is an error in the integrity of the software file or there is a problem with the residual files and registry entries. Let this site take care of it for users. Let’s introduce the analysis of the problem that Baidu Netdisk is successfully downloaded but cannot be installed. Analysis of the problem that Baidu Netdisk downloaded successfully but could not be installed 1. Check the integrity of the installation file: Make sure that the downloaded installation file is complete and not damaged. You can download it again, or try to download the installation file from another trusted source. 2. Turn off anti-virus software and firewall: Some anti-virus software or firewall programs may prevent the installation program from running properly. Try disabling or exiting the anti-virus software and firewall, then re-run the installation

Installing Android applications on Linux has always been a concern for many users. Especially for Linux users who like to use Android applications, it is very important to master how to install Android applications on Linux systems. Although running Android applications directly on Linux is not as simple as on the Android platform, by using emulators or third-party tools, we can still happily enjoy Android applications on Linux. The following will introduce how to install Android applications on Linux systems.

Recently, some friends have consulted the editor about how to set up WeChat Mac to automatically convert voice messages into text. The following is a method for setting up WeChat Mac to automatically convert voice messages into text. Friends in need can come and learn more. Step 1: First, open the Mac version of WeChat. As shown in the picture: Step 2: Next, click "Settings". As shown in the picture: Step 3: Then, click "General". As shown in the picture: Step 4: Then check the option "Automatically convert voice messages in chat to text". As shown in the picture: Step 5: Finally, close the window. As shown in the picture:

If you have used Docker, you must understand daemons, containers, and their functions. A daemon is a service that runs in the background when a container is already in use in any system. Podman is a free management tool for managing and creating containers without relying on any daemon such as Docker. Therefore, it has advantages in managing containers without the need for long-term backend services. Additionally, Podman does not require root-level permissions to be used. This guide discusses in detail how to install Podman on Ubuntu24. To update the system, we first need to update the system and open the Terminal shell of Ubuntu24. During both installation and upgrade processes, we need to use the command line. a simple

By default, iPhone takes photos from the camera in HEIC format. HEIC stands for High Efficiency Image Container and can hold more pixel data than PNG or JPG files, taking up significantly less space on iPhone storage compared to other formats. These files work best on iPhones but are not widely accepted on the internet because they often result in blurry/grainy pictures when you share them with non-Apple devices. To ensure that HEIC images are compatible on other devices, you may need to convert them to JPG format. This article will introduce how to convert HEIC images to JPG on Mac. How to Convert HEIC Photos to JPG on Mac [3 Methods] Method
