Lines Matching refs:php
6 tutorials can be seen at [grpc.io](https://grpc.io/docs/quickstart/php.html).
8 [cloud.google.com](https://cloud.google.com/php/grpc).
14 * `php` 5.5 or above, 7.0 or above
24 $ sudo apt-get install php5 php5-dev php-pear phpunit
30 $ sudo apt-get install php7.0 php7.0-dev php-pear phpunit
34 $ sudo apt-get install php php-dev php-pear phpunit
41 $ sudo yum install php56w php56w-devel php-pear phpunit gcc zlib-devel
46 $ brew install homebrew/php/php56-grpc
47 $ curl -O http://pear.php.net/go-pear.phar
48 $ sudo php -d detect_unicode=0 go-pear.phar
53 $ curl -sS https://getcomposer.org/installer | php
88 [website](https://pecl.php.net/package/grpc)
112 $ cd grpc/src/php/ext/grpc
124 ### Update php.ini
127 to your `php.ini` file, (e.g. `/etc/php5/cli/php.ini`,
128 `/etc/php5/apache2/php.ini`, or `/usr/local/etc/php/5.6/php.ini`),
211 Add this to your `php.ini` file:
263 $ cd grpc/src/php
277 $ cd grpc/src/php
287 $ cd grpc/src/php
307 $ cd grpc/src/php
319 Add this line to your `php.ini` file, e.g. `/etc/php5/apache2/php.ini`
320 or `/etc/php/7.0/apache2/php.ini`
340 Make sure you have run `composer install` to generate the `vendor/autoload.php` file
343 $ cd grpc/src/php
353 Copy the `math_client.php` file into your Apache document root, e.g.
356 $ cp tests/generated_code/math_client.php /var/www/html
361 ```php
362 include 'vendor/autoload.php';
365 Connect to `localhost/math_client.php` in your browser, or run this from command line:
368 $ curl localhost/math_client.php
383 Add this line to your `php.ini` file, e.g. `/etc/php5/fpm/php.ini`
392 location ~ \.php$ {
393 include snippets/fastcgi-php.conf;
398 Restart nginx and php-fpm
413 Make sure you have run `composer install` to generate the `vendor/autoload.php` file
416 $ cd grpc/src/php
426 Copy the `math_client.php` file into your Nginx document root, e.g.
429 $ cp tests/generated_code/math_client.php /var/www/html
434 ```php
435 include 'vendor/autoload.php';
438 Connect to `localhost/math_client.php` in your browser, or run this from command line:
441 $ curl localhost/math_client.php