溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

yar框架怎么在php中使用

發(fā)布時(shí)間:2020-12-28 13:58:05 來(lái)源:億速云 閱讀:197 作者:Leah 欄目:開發(fā)技術(shù)

今天就跟大家聊聊有關(guān)yar框架怎么在php中使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

RPC是在TCP協(xié)議上面的網(wǎng)絡(luò)傳輸和遠(yuǎn)程服務(wù)調(diào)用,通過(guò)TCP來(lái)進(jìn)行數(shù)據(jù)傳輸。底層都是tcp,更高層的封裝。因此這就是應(yīng)用間通信間不直接用TCP,而是選用RPC框架的原因,本章教學(xué)內(nèi)容就是給大家?guī)?lái)rpc中yar框架的使用,內(nèi)容簡(jiǎn)單明了,希望對(duì)每一位在學(xué)習(xí)php道路上的小伙伴都能得到掌握了解。

編譯:

/usr/local/php/bin/phpize

配置:

extension = /usr/local/php/lib/php/extensions/no-debug-non-zts-20170718/yar.so

使用方法:

Yar_Server {
 protected $_executor ;
 final public __construct ( Object $obj )
 public handle ( void ) : boolean
 }

PHP 安裝yar的知識(shí)點(diǎn):

yar全部可用版本見:https://pecl.php.net/package/yar,根據(jù)自己的需要下載編譯安裝即可。

注:yar和PHP版本不一致會(huì)導(dǎo)致編譯失敗,如果出現(xiàn)編譯失敗請(qǐng)下載其他版本的yar重新編譯

# wget https://pecl.php.net/get/yar-1.2.3.tgz
# tar -xf yar-1.2.3.tgz 
# cd yar-1.2.3
# ls
config.m4  LICENSE  tests    yar.c     yar_exception.c yar_packager.h yar_request.c  yar_response.h yar_transport.c
config.w32 packagers tools    yar_client.c yar_exception.h yar_protocol.c yar_request.h  yar_server.c  yar_transport.h
CREDITS   php_yar.h transports yar_client.h yar_packager.c  yar_protocol.h yar_response.c yar_server.h
# ls /usr/local/php/php7/bin/
pear peardev pecl phar phar.phar php php-cgi php-config phpdbg phpize
# /usr/local/php/php7/bin/phpize
Configuring for:
PHP Api Version:     20170718
Zend Module Api No:   20170718
Zend Extension Api No:  320170718
# ./configure --with-php-config=/usr/local/php/php7/bin/php-config
# make && make install
................
............
Installing shared extensions:   /usr/local/php/php7/lib/php/extensions/no-debug-non-zts-20170718/

# ls /usr/local/php/php7/lib/php/extensions/no-debug-non-zts-20170718/
mongodb.so opcache.a opcache.so openssl.so pcntl.so phalcon.so redis.so swoole.so xhprof.so yaf.so yar.so zlib.so

看完上述內(nèi)容,你們對(duì)yar框架怎么在php中使用有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI