Skip to content

Instantly share code, notes, and snippets.

@qutek
Last active November 7, 2023 12:45
Show Gist options
  • Save qutek/42889d82a4cbebf0e801943a9addbbab to your computer and use it in GitHub Desktop.
Save qutek/42889d82a4cbebf0e801943a9addbbab to your computer and use it in GitHub Desktop.
[Install ZeroMQ MAC] Install PHP ZeroMQ MAC #mac #php

Install with brew

  • brew install zmq

Make php-zmq

  • git clone git://github.com/mkoppanen/php-zmq.git
  • cd php-zmq
  • phpize && ./configure
  • make && make install

Add extension to php.ini:

  • Find php ini file php --ini
  • add extension=zmq.so

Ubuntu

  • sudo apt-get install php-zmq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment